From 845f983ef0550dc715b502eb488b35cee7f4c8a8 Mon Sep 17 00:00:00 2001
From: gsingh58 <gurmail.singh@wisc.edu>
Date: Mon, 20 Feb 2023 12:00:12 -0500
Subject: [PATCH] Lec12 update

---
 ...Iteration_Practice_lec001-checkpoint.ipynb |  753 -------
 .../.ipynb_checkpoints/project-checkpoint.py  |   67 -
 .../cs220_survey_data.csv                     | 1903 ++++++++---------
 ....ipynb => lec_12_Iteration_Practice.ipynb} |  139 +-
 .../lec_12_Iteration_Practice_lec001.ipynb    |  753 -------
 ...tion_Practice_template_Gurmail_lec1.ipynb} |   60 +-
 ...tion_Practice_template_Gurmail_lec2.ipynb} |  124 +-
 .../12_Iteration_Practice/project.py          |   36 +-
 8 files changed, 1163 insertions(+), 2672 deletions(-)
 delete mode 100644 s23/Gurmail_lecture_notes/12_Iteration_Practice/.ipynb_checkpoints/lec_12_Iteration_Practice_lec001-checkpoint.ipynb
 delete mode 100644 s23/Gurmail_lecture_notes/12_Iteration_Practice/.ipynb_checkpoints/project-checkpoint.py
 rename s23/Gurmail_lecture_notes/12_Iteration_Practice/{lec_12_Iteration_Practice_lec002.ipynb => lec_12_Iteration_Practice.ipynb} (82%)
 delete mode 100644 s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_lec001.ipynb
 rename s23/Gurmail_lecture_notes/12_Iteration_Practice/{lec_12_Iteration_Practice_template.ipynb => lec_12_Iteration_Practice_template_Gurmail_lec1.ipynb} (83%)
 rename s23/Gurmail_lecture_notes/12_Iteration_Practice/{.ipynb_checkpoints/lec_12_Iteration_Practice_template-checkpoint.ipynb => lec_12_Iteration_Practice_template_Gurmail_lec2.ipynb} (68%)

diff --git a/s23/Gurmail_lecture_notes/12_Iteration_Practice/.ipynb_checkpoints/lec_12_Iteration_Practice_lec001-checkpoint.ipynb b/s23/Gurmail_lecture_notes/12_Iteration_Practice/.ipynb_checkpoints/lec_12_Iteration_Practice_lec001-checkpoint.ipynb
deleted file mode 100644
index d4ab29c..0000000
--- a/s23/Gurmail_lecture_notes/12_Iteration_Practice/.ipynb_checkpoints/lec_12_Iteration_Practice_lec001-checkpoint.ipynb
+++ /dev/null
@@ -1,753 +0,0 @@
-{
- "cells": [
-  {
-   "cell_type": "markdown",
-   "id": "6a76ef95",
-   "metadata": {},
-   "source": [
-    "# Iteration Practice"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "103da70b",
-   "metadata": {},
-   "source": [
-    "## Learning Objectives\n",
-    "\n",
-    "- Iterate through a dataset using for idx in range(project.count())\n",
-    "- Compute the frequency of data that meets a certain criteria\n",
-    "- Find the maximum or minimum value of a numeric column in a dataset\n",
-    "    - Handle missing numeric values when computing a maximum / minimum\n",
-    "    - Use the index of a maximum or minimum to access other information about that data item\n",
-    "- Use break and continue in for loops when processing a dataset\n",
-    "- Trace the output of a nested loop algorithm that prints out a game grid"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "id": "28961628",
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "import project"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "id": "c9341253",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "['__builtins__',\n",
-       " '__cached__',\n",
-       " '__doc__',\n",
-       " '__file__',\n",
-       " '__init__',\n",
-       " '__loader__',\n",
-       " '__name__',\n",
-       " '__package__',\n",
-       " '__spec__',\n",
-       " '__student__',\n",
-       " 'count',\n",
-       " 'get_age',\n",
-       " 'get_latitude',\n",
-       " 'get_lecture',\n",
-       " 'get_longitude',\n",
-       " 'get_major',\n",
-       " 'get_pet_owner',\n",
-       " 'get_piazza_topping',\n",
-       " 'get_procrastinator',\n",
-       " 'get_runner',\n",
-       " 'get_sleep_habit',\n",
-       " 'get_zip_code']"
-      ]
-     },
-     "execution_count": 2,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "# TODO: inspect the functions inside project module\n",
-    "dir(project)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 3,
-   "id": "d1dca7ae",
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Help on module project:\n",
-      "\n",
-      "NAME\n",
-      "    project\n",
-      "\n",
-      "FUNCTIONS\n",
-      "    __init__()\n",
-      "    \n",
-      "    count()\n",
-      "        This function will return the number of records in the dataset\n",
-      "    \n",
-      "    get_age(idx)\n",
-      "        get_age(idx) returns the age of the student in row idx\n",
-      "    \n",
-      "    get_latitude(idx)\n",
-      "        get_latitude(idx) returns the latitude of the student's favourite place in row idx\n",
-      "    \n",
-      "    get_lecture(idx)\n",
-      "        get_lecture(idx) returns the lecture of the student in row idx\n",
-      "    \n",
-      "    get_longitude(idx)\n",
-      "        get_longitude(idx) returns the longitude of the student's favourite place in row idx\n",
-      "    \n",
-      "    get_major(idx)\n",
-      "        get_major(idx) returns the major of the student in row idx\n",
-      "    \n",
-      "    get_pet_owner(idx)\n",
-      "        get_pet_owner(idx) returns the pet preference of student in row idx\n",
-      "    \n",
-      "    get_piazza_topping(idx)\n",
-      "        get_piazza_topping(idx) returns the preferred pizza toppings of the student in row idx\n",
-      "    \n",
-      "    get_procrastinator(idx)\n",
-      "        get_procrastinator(idx) returns whether student in row idx is a procrastinator\n",
-      "    \n",
-      "    get_runner(idx)\n",
-      "        get_runner(idx) returns whether student in row idx is a runner\n",
-      "    \n",
-      "    get_sleep_habit(idx)\n",
-      "        get_sleep_habit(idx) returns the sleep habit of the student in row idx\n",
-      "    \n",
-      "    get_zip_code(idx)\n",
-      "        get_zip_code(idx) returns the residential zip code of the student in row idx\n",
-      "\n",
-      "DATA\n",
-      "    __student__ = [{'Age': '22', 'Latitude': '43.073051', 'Lecture': 'LEC0...\n",
-      "\n",
-      "FILE\n",
-      "    /Users/msyamkumar/Desktop/CS220_Fall_2022/cs220-lecture-material/f22/meena_lec_notes/lec-12/project.py\n",
-      "\n",
-      "\n"
-     ]
-    }
-   ],
-   "source": [
-    "# TODO: inspect the project module's documentation\n",
-    "help(project)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "7fb78f6b",
-   "metadata": {},
-   "source": [
-    "### How many students does the dataset have?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 4,
-   "id": "d67a080f",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "992"
-      ]
-     },
-     "execution_count": 4,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "project.count()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "3c97d494",
-   "metadata": {},
-   "source": [
-    "### What is the age of the student at index 10?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 5,
-   "id": "bde8dc35",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "'21'"
-      ]
-     },
-     "execution_count": 5,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "id_10_age = project.get_age(10)\n",
-    "id_10_age"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 6,
-   "id": "b0f87a2c",
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "<class 'str'>\n"
-     ]
-    }
-   ],
-   "source": [
-    "# TODO: inspect return value type of get_age function\n",
-    "print(type(id_10_age))"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "37898141",
-   "metadata": {},
-   "source": [
-    "### What is the lecture number of the student at index 20?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 7,
-   "id": "ba993090",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "'LEC001'"
-      ]
-     },
-     "execution_count": 7,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "project.get_lecture(20)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "60730da8",
-   "metadata": {},
-   "source": [
-    "### What is the sleep habit of the student at the last index?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 8,
-   "id": "1d92e499",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "'night owl'"
-      ]
-     },
-     "execution_count": 8,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "project.get_sleep_habit(-1)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 9,
-   "id": "ef9dc31c",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "'night owl'"
-      ]
-     },
-     "execution_count": 9,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "project.get_sleep_habit(project.count() - 1)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "af3d9d8c",
-   "metadata": {},
-   "source": [
-    "### How many current lecture (example: LEC001) students are in the dataset? \n",
-    "\n",
-    "- use `for` loop to iterate over the dataset:\n",
-    "    - `count` function gives you total number of students\n",
-    "    - use `range` built-in function to generate sequence of integers from `0` to `count - 1`\n",
-    "- use `get_lecture` to retrieve lecture column value\n",
-    "- use `if` condition, to determine whether current student is part of `LEC001`\n",
-    "    - `True` evaluation: increment count\n",
-    "    - `False` evaluation: nothing to do"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 10,
-   "id": "e024c488",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "195"
-      ]
-     },
-     "execution_count": 10,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "count = 0\n",
-    "for idx in range(project.count()):\n",
-    "    lecture = project.get_lecture(idx)\n",
-    "    if lecture == \"LEC001\":\n",
-    "        count += 1\n",
-    "count"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "b9ff6434",
-   "metadata": {},
-   "source": [
-    "### What is the age of the oldest student in current lecture (example: LEC001)?\n",
-    "\n",
-    "- use `for` loop to iterate over the dataset just like last problem\n",
-    "- use `get_age` to retrieve lecture column value\n",
-    "    - if: age is '' (empty), move on to next student using `continue`\n",
-    "    - make sure to typecast return value to an integer\n",
-    "- use `get_lecture` to retrieve lecture column value\n",
-    "- use `if` condition, to determine whether current student is part of `LEC001`\n",
-    "    - use `if` condition to determine whether current student's age is greater than previously known max age\n",
-    "        - `True` evaluation: replace previously known max age with current age\n",
-    "        - `False` evaluation: nothing to do"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 11,
-   "id": "38bd778a",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "37"
-      ]
-     },
-     "execution_count": 11,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "max_age = 0\n",
-    "\n",
-    "for idx in range(project.count()):\n",
-    "    lecture = project.get_lecture(idx)\n",
-    "    age = project.get_age(idx)\n",
-    "    \n",
-    "    if age == '':\n",
-    "        continue\n",
-    "    age = int(age)\n",
-    "    \n",
-    "    if lecture == \"LEC001\":\n",
-    "        if age > max_age:\n",
-    "            max_age = age\n",
-    "max_age"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "b40a32fb",
-   "metadata": {},
-   "source": [
-    "### What is the age of the youngest student in current lecture (example: LEC001)?\n",
-    "- use similar algorithm as above question"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 12,
-   "id": "ea77e0cd",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "17"
-      ]
-     },
-     "execution_count": 12,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "min_age = None\n",
-    "\n",
-    "for idx in range(project.count()):\n",
-    "    lecture = project.get_lecture(idx)\n",
-    "    age = project.get_age(idx)\n",
-    "    \n",
-    "    if age == '':\n",
-    "        continue\n",
-    "    age = int(age)\n",
-    "    \n",
-    "    if lecture == \"LEC001\":\n",
-    "        if min_age == None or age < min_age:\n",
-    "            min_age = age\n",
-    "min_age"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "039ba82a",
-   "metadata": {},
-   "source": [
-    "### What is the average age of students enrolled in CS220 / CS319?\n",
-    "- you will get an interesting answer :)\n",
-    "- how can we ensure that data doesn't skew statistics?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 13,
-   "id": "ebfd7d8e",
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Average student age is: 64.8225806451613\n"
-     ]
-    }
-   ],
-   "source": [
-    "# Incorrect version: skewed statistics\n",
-    "total_age = 0\n",
-    "count = 0\n",
-    "\n",
-    "for idx in range(project.count()):\n",
-    "    age = project.get_age(idx)\n",
-    "    \n",
-    "    if age == '':\n",
-    "        continue\n",
-    "    age = int(age)\n",
-    "    total_age += age\n",
-    "    count += 1 # Be careful here: you cannot use the total count\n",
-    "    # Why? Because some students chose not to mention their age\n",
-    "\n",
-    "print(\"Average student age is:\", total_age / count)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 14,
-   "id": "600c5cf4",
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Age of some student who likes to have fun :) : 42069\n",
-      "Average student age is: 19.608180839612487\n"
-     ]
-    }
-   ],
-   "source": [
-    "# Correct version with bounds check\n",
-    "total_age = 0\n",
-    "count = 0\n",
-    "\n",
-    "for idx in range(project.count()):\n",
-    "    lecture = project.get_lecture(idx)\n",
-    "    age = project.get_age(idx)\n",
-    "    \n",
-    "    if age == '':\n",
-    "        continue\n",
-    "    age = int(age)\n",
-    "\n",
-    "    if age < 0 or age > 118:\n",
-    "        print(\"Age of some student who likes to have fun :) :\", age)\n",
-    "        continue\n",
-    "    total_age += age\n",
-    "    count += 1 # Be careful here: you cannot use the total count\n",
-    "    # Why? Because some students chose not to mention their age\n",
-    "\n",
-    "print(\"Average student age is:\", total_age / count)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "48f1c791",
-   "metadata": {},
-   "source": [
-    "### What major is the youngest student in current lecture (example: LEC001) planning to declare?\n",
-    "- now, we need to find some other detail about the youngest student\n",
-    "- often, you'll have to keep track of ID of the max or min, so that you can retrive other details about that data entry"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 15,
-   "id": "a524873b",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "'Statistics'"
-      ]
-     },
-     "execution_count": 15,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "min_age = None\n",
-    "min_age_idx = None\n",
-    "\n",
-    "for idx in range(project.count()):\n",
-    "    lecture = project.get_lecture(idx)\n",
-    "    age = project.get_age(idx)\n",
-    "    \n",
-    "    if age == '':\n",
-    "        continue\n",
-    "    age = int(age)\n",
-    "    \n",
-    "    if lecture == \"LEC001\":\n",
-    "        if min_age == None or age < min_age:\n",
-    "            min_age = age\n",
-    "            min_age_idx = idx\n",
-    "\n",
-    "project.get_major(min_age_idx)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "5294702a",
-   "metadata": {},
-   "source": [
-    "### Considering current lecture students (example: LEC001), what is the age of the first student residing at zip code 53715?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 16,
-   "id": "fada2a40",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "21"
-      ]
-     },
-     "execution_count": 16,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "search_age = None\n",
-    "\n",
-    "for idx in range(project.count()):\n",
-    "    lecture = project.get_lecture(idx)\n",
-    "    age = project.get_age(idx)\n",
-    "    zipcode = project.get_zip_code(idx)\n",
-    "    \n",
-    "    if age == '' or zipcode == '':\n",
-    "        continue\n",
-    "    age = int(age)\n",
-    "    \n",
-    "    if lecture == \"LEC001\" and zipcode == \"53715\":\n",
-    "        search_age = age\n",
-    "        break # you found the first such student, so you can terminate the loop execution\n",
-    "\n",
-    "search_age"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "68793d99",
-   "metadata": {},
-   "source": [
-    "## Self-practice"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "2eeed867",
-   "metadata": {},
-   "source": [
-    "### How many current lecture (example: LEC001) students are runners? "
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "1ea57e12",
-   "metadata": {},
-   "source": [
-    "### How many current lecture (example: LEC001) students are procrastinators? "
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "cf0ac7c8",
-   "metadata": {},
-   "source": [
-    "### How many current lecture (example: LEC001) students own or have owned a pet?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "9aa8fe7b",
-   "metadata": {},
-   "source": [
-    "### How many current lecture (example: LEC001) students like pineapple on their pizza?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "ffd5e10f",
-   "metadata": {},
-   "source": [
-    "### What sleep habit does the youngest student in current lecture (example: LEC001) have?\n",
-    "- try to solve this from scratch, instead of copy-pasting code to find mimimum age"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "f255b95a",
-   "metadata": {},
-   "source": [
-    "### What sleep habit does the oldest student in current lecture (example: LEC001) have?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "a46d37b8",
-   "metadata": {},
-   "source": [
-    "### What is the age of the youngest student residing in zip code 53706?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "db60812c",
-   "metadata": {},
-   "source": [
-    "### Considering current lecture students (example: LEC001), is the first student with age 18 a runner?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "ab3de0cd",
-   "metadata": {},
-   "source": [
-    "### What is the minimum latitude (& corresponding longitude) of a student's place of interest? \n",
-    "- What place is this -> try to enter the lat, long on Google maps?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "3fecf449",
-   "metadata": {},
-   "source": [
-    "### What is the maximum latitude (& corresponding longitude) of a student's place of interest? \n",
-    "- What place is this -> try to enter the lat, long on Google maps?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "3907fdf4",
-   "metadata": {},
-   "source": [
-    "### What is the minimum longitude (& corresponding latitude) of a student's place of interest? \n",
-    "- What place is this -> try to enter the lat, long on Google maps?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "b08978ef",
-   "metadata": {},
-   "source": [
-    "### What is the maximum longitude (& corresponding latitude) of a student's place of interest?\n",
-    "- What place is this -> try to enter the lat, long on Google maps?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "id": "f2eae0bb",
-   "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.9.13"
-  }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/s23/Gurmail_lecture_notes/12_Iteration_Practice/.ipynb_checkpoints/project-checkpoint.py b/s23/Gurmail_lecture_notes/12_Iteration_Practice/.ipynb_checkpoints/project-checkpoint.py
deleted file mode 100644
index 1689e44..0000000
--- a/s23/Gurmail_lecture_notes/12_Iteration_Practice/.ipynb_checkpoints/project-checkpoint.py
+++ /dev/null
@@ -1,67 +0,0 @@
-__student__ = []
-
-
-def __init__():
-    import csv
-    """This function will read in the csv_file and store it in a list of dictionaries"""
-    __student__.clear()
-    with open('cs220_survey_data.csv', mode='r') as csv_file:
-        csv_reader = csv.DictReader(csv_file)
-        for row in csv_reader:
-            __student__.append(row)
-
-
-def count():
-    """This function will return the number of records in the dataset"""
-    return len(__student__)
-
-
-def get_lecture(idx):
-    """get_lecture(idx) returns the lecture of the student in row idx"""
-    return __student__[int(idx)]['Lecture']
-
-
-def get_age(idx):
-    """get_age(idx) returns the age of the student in row idx"""
-    return __student__[int(idx)]['Age']
-
-
-def get_major(idx):
-    """get_major(idx) returns the major of the student in row idx"""
-    return __student__[int(idx)]['Major']
-
-
-def get_zip_code(idx):
-    """get_zip_code(idx) returns the residential zip code of the student in row idx"""
-    return __student__[int(idx)]['Zip Code']
-
-def get_latitude(idx):
-    """get_latitude(idx) returns the latitude of the student's favourite place in row idx"""
-    return __student__[int(idx)]['Latitude']
-
-def get_longitude(idx):
-    """get_longitude(idx) returns the longitude of the student's favourite place in row idx"""
-    return __student__[int(idx)]['Longitude']
-
-def get_piazza_topping(idx):
-    """get_piazza_topping(idx) returns the preferred pizza toppings of the student in row idx"""
-    return __student__[int(idx)]['Pizza topping']
-
-def get_pet_owner(idx):
-    """get_pet_owner(idx) returns the pet preference of student in row idx"""
-    return __student__[int(idx)]['Pet preference']
-
-def get_runner(idx):
-    """get_runner(idx) returns whether student in row idx is a runner"""
-    return __student__[int(idx)]['Runner']
-
-def get_sleep_habit(idx):
-    """get_sleep_habit(idx) returns the sleep habit of the student in row idx"""
-    return __student__[int(idx)]['Sleep habit']
-
-def get_procrastinator(idx):
-    """get_procrastinator(idx) returns whether student in row idx is a procrastinator"""
-    return __student__[int(idx)]['Procrastinator']
-
-
-__init__()
diff --git a/s23/Gurmail_lecture_notes/12_Iteration_Practice/cs220_survey_data.csv b/s23/Gurmail_lecture_notes/12_Iteration_Practice/cs220_survey_data.csv
index 35d8bfe..7d46191 100644
--- a/s23/Gurmail_lecture_notes/12_Iteration_Practice/cs220_survey_data.csv
+++ b/s23/Gurmail_lecture_notes/12_Iteration_Practice/cs220_survey_data.csv
@@ -1,993 +1,910 @@
-Lecture,Age,Major,Zip Code,Latitude,Longitude,Pizza topping,Pet preference,Runner,Sleep habit,Procrastinator
-LEC001,22,Engineering: Biomedical,53703,43.073051,-89.40123,none (just cheese),neither,No,no preference,Maybe
-LEC006,,Undecided,53706,43.073051,-89.40123,none (just cheese),neither,No,no preference,Maybe
-LEC004,18,Engineering: Industrial,53715,43.073051,-89.40123,none (just cheese),neither,No,no preference,Maybe
-LEC005,,Undecided,53706,43.073051,-89.40123,none (just cheese),neither,No,no preference,Maybe
-LEC002,,Undecided,53706,43.073051,-89.40123,none (just cheese),neither,No,no preference,Maybe
-LEC004,18,Engineering: Other|Engineering: Computer,53706,43.073051,-89.40123,none (just cheese),neither,No,no preference,Maybe
-LEC003,,Undecided,53706,43.073051,-89.40123,none (just cheese),neither,No,no preference,Maybe
-LEC003,18,Data Science,53715,43.073051,-89.40123,pineapple,cat,Yes,no preference,Maybe
-LEC006,18,Data Science,53706,35.4,119.11,none (just cheese),dog,No,night owl,Yes
-LEC006,18,Mathematics/AMEP,53706,44,-93,pepperoni,dog,No,night owl,Yes
-LEC002,21,Engineering: Other,53703,24.713552,46.675297,none (just cheese),cat,Yes,night owl,Maybe
-LEC003,19,Data Science,53705,24.6806,46.57936,pineapple,cat,No,early bird,No
-LEC004,24,Economics,53703,43,-89,pineapple,cat,Yes,early bird,Yes
-LEC003,18,Data Science,53706,36.102371,-115.174553,none (just cheese),dog,No,night owl,Yes
-LEC006,22,Psychology,53703,31.78,119.95,mushroom,cat,No,night owl,Yes
-LEC005,20,Data Science,53705,37.8,112.5,pepperoni,cat,Yes,night owl,Yes
-LEC004,24,Science: Biology/Life,53703,46.872131,-113.994019,pepperoni,dog,Yes,early bird,Yes
-LEC004,17,Engineering: Mechanical,53706,46.6242,8.0414,pineapple,dog,No,night owl,Yes
-LEC004,19,Engineering: Mechanical,53726,43.073051,-89.40123,none (just cheese),dog,Yes,early bird,No
-LEC002,19,Engineering: Mechanical,57303,41.878113,-87.629799,pineapple,dog,No,night owl,Yes
-LEC001,,Mathematics/AMEP,53706,31.230391,121.473701,basil/spinach,dog,No,no preference,Maybe
-LEC002,19,Mathematics/AMEP,53558,40.712776,-74.005974,sausage,dog,Yes,night owl,Yes
-LEC001,20,Economics (Mathematical Emphasis),53703,48.86,2.3522,pepperoni,dog,No,early bird,Yes
-LEC001,19,Engineering: Mechanical,53703,24.7,46.7,mushroom,dog,Yes,early bird,Maybe
-LEC005,18,Computer Science,53703,37.338207,-121.88633,green pepper,dog,Yes,night owl,Yes
-LEC003,19,Engineering: Mechanical,53558,43.073051,-89.40123,pepperoni,dog,No,night owl,Yes
-LEC005,20,Engineering: Mechanical,53715,38.9072,-77.0369,Other,cat,No,night owl,Yes
-LEC003,20,Data Science,53703,43.073051,-89.40123,pepperoni,dog,No,night owl,Yes
-LEC002,21,Science: Other|Political Science,53703,31.768318,35.213711,pepperoni,dog,No,no preference,Maybe
-LEC003,19,Mathematics/AMEP,53715,19.075983,72.877655,basil/spinach,cat,No,night owl,Maybe
-LEC001,23,Computer Science,53711,43.073929,-89.385239,sausage,dog,No,night owl,Yes
-LEC006,21,Business: Other,53715,25.761681,-80.191788,pepperoni,dog,No,night owl,Yes
-LEC003,19,Business: Other|Real Estate,53715,117,33,pepperoni,dog,Yes,night owl,No
-LEC004,19,Computer Science,53726,47.037872,-122.900696,tater tots,dog,No,night owl,Yes
-LEC004,24,Economics,53703,23.12911,113.264381,pepperoni,cat,Yes,early bird,Maybe
-LEC005,19,Data Science,53703,64.49796,165.40998,sausage,dog,No,night owl,Yes
-LEC003,19,Data Science,53705,25,47,mushroom,cat,No,early bird,Maybe
-LEC005,20,Engineering: Other|Engineering Physics: Scientific Computing,53715,43.073051,-89.4,none (just cheese),dog,No,night owl,Yes
-LEC005,20,Computer Science,53703,48.856613,2.352222,pepperoni,dog,No,night owl,Yes
-LEC002,19,Business: Finance,53726,43.04156,87.91006,pepperoni,dog,No,night owl,Yes
-LEC002,21,Data Science,53713,29.868336,121.543991,mushroom,dog,No,night owl,No
-LEC004,19,Computer Science,53715,40.712776,-74.005974,pepperoni,dog,No,night owl,Maybe
-LEC003,18,Computer Science,53706,5.93876,80.48433,Other,dog,No,night owl,Maybe
-LEC005,19,Engineering: Mechanical,53704,38.7,-77,pepperoni,cat,Yes,no preference,No
-LEC004,18,Engineering: Mechanical,53726,41.878113,-87.629799,pepperoni,dog,No,night owl,Maybe
-LEC005,19,Engineering: Other,53703,36.169941,-115.139832,pepperoni,dog,No,night owl,Maybe
-LEC005,19,Engineering: Mechanical,53703,43.078104,-89.431698,pepperoni,dog,Yes,night owl,Yes
-LEC006,18,Engineering: Biomedical,53051,33.6846,117.8265,pepperoni,dog,Yes,night owl,Yes
-LEC001,22,Engineering: Mechanical,53719,43.073051,-89.40123,none (just cheese),cat,Yes,night owl,Yes
-LEC001,18,Computer Science,53706,26.2992,87.2625,mushroom,dog,Yes,night owl,No
-LEC001,24,Business: Information Systems,53703,43.073051,-89.40123,macaroni/pasta,cat,No,night owl,No
-LEC006,19,Engineering: Mechanical,53703,43.04049,-87.91732,Other,dog,No,night owl,Yes
-LEC001,,Computer Science,53715,34.052235,-118.243683,green pepper,dog,No,night owl,Yes
-LEC002,20,Statistics,53703,40.7128,74.006,Other,dog,No,night owl,Maybe
-LEC005,23,Computer Science,53703,37.5,126.97,pepperoni,dog,No,night owl,No
-LEC002,21,Statistics,53703,52.370216,4.895168,pepperoni,dog,Yes,early bird,Maybe
-LEC002,18,Undecided,53706,38.56247,-121.70411,pepperoni,dog,Yes,night owl,Yes
-LEC006,18,Statistics,53706,40.712776,40.712776,pepperoni,dog,No,night owl,Yes
-LEC003,21,Economics,53715,43.073051,-89.40123,none (just cheese),dog,No,night owl,Yes
-LEC003,19,Engineering: Mechanical,53715,45,-93,sausage,dog,No,night owl,No
-LEC005,21,Business: Finance,53717,40.6461,-111.498,sausage,dog,No,night owl,Yes
-LEC001,26,Engineering: Mechanical,53703,41.902782,12.496365,pepperoni,dog,No,night owl,Yes
-LEC001,25,Economics,53703,40.712776,-74.005974,pepperoni,dog,No,night owl,Yes
-LEC003,18,Mathematics/AMEP,53706,31.230391,121.473701,mushroom,dog,Yes,early bird,No
-LEC001,19,Computer Science,53706,48.855709,2.29889,pepperoni,cat,Yes,night owl,Yes
-LEC005,17,Science: Biology/Life,53706,-18.766947,46.869106,basil/spinach,dog,Yes,early bird,Maybe
-LEC003,19,Business: Information Systems,53711,38.893452,-77.014709,pepperoni,dog,No,early bird,Yes
-LEC001,21,Computer Science,53715,16.306652,80.436539,Other,dog,No,night owl,Yes
-LEC006,19,Data Science,53703,35.689487,139.691711,sausage,neither,Yes,no preference,Maybe
-LEC004,18,Engineering: Industrial,53706,17.385044,78.486671,mushroom,dog,No,early bird,Yes
-LEC004,19,Computer Science,53715,37.774929,-122.419418,pepperoni,dog,No,night owl,Maybe
-LEC004,19,Data Science,53703,26.2644,20.3052,pepperoni,dog,No,night owl,Yes
-LEC005,18,Data Science,53706,40.712776,-74.005974,pepperoni,dog,Yes,no preference,Yes
-LEC002,18,Data Science,53706,36,117,Other,dog,No,early bird,Maybe
-LEC005,19,Data Science,50703,42.360081,-71.058884,sausage,cat,No,night owl,No
-LEC006,19,Computer Science,53711,36.569666,112.218744,pineapple,neither,Yes,early bird,Maybe
-LEC005,18,Computer Science,53706,37.54443,-121.95269,pepperoni,dog,No,night owl,Maybe
-LEC003,20,Mathematics/AMEP,53715,32.0853,34.781769,mushroom,dog,No,no preference,Yes
-LEC003,19,Data Science,53715,42.701847,-84.48217,tater tots,dog,No,night owl,Yes
-LEC003,18,Mathematics/AMEP,53706,40.179188,44.499104,Other,dog,Yes,no preference,Yes
-LEC002,,Computer Science,53711,2.81375,101.504272,sausage,dog,Yes,no preference,Maybe
-LEC001,18,Engineering: Industrial,53715,30.733315,76.779419,green pepper,cat,No,no preference,Yes
-LEC003,21,Data Science,53590,7.9519,98.3381,Other,dog,Yes,early bird,Yes
-LEC004,19,Data Science,53715,35.69,139.69,mushroom,dog,No,no preference,Maybe
-LEC002,19,Data Science,53704,26.473308,50.048218,Other,cat,Yes,night owl,Yes
-LEC002,22,Economics,53703,34.052235,-118.243683,pineapple,dog,No,night owl,Yes
-LEC006,18,Data Science,53706,19.075983,72.877655,mushroom,dog,Yes,night owl,Yes
-LEC003,,Business: Actuarial,53705,39.6336,118.16,basil/spinach,dog,Yes,early bird,Yes
-LEC003,18,Data Science,53706,52.370216,4.895168,mushroom,cat,Yes,no preference,No
-LEC003,18,Engineering: Mechanical,53706,52.368944,4.891663,pepperoni,cat,No,night owl,No
-LEC002,18,Science: Physics,53703,32,118,sausage,neither,No,night owl,No
-LEC005,18,Data Science,53706,17.384716,78.409424,mushroom,dog,Yes,night owl,Maybe
-LEC003,19,Data Science,53715,3.1569,101.7123,mushroom,cat,No,early bird,No
-LEC005,18,Computer Science,53706,43.769562,11.255814,Other,neither,No,night owl,Yes
-LEC006,18,Business: Actuarial,53706,48.856613,2.352222,mushroom,cat,No,no preference,Yes
-LEC004,20,Business: Actuarial,53711,40.7128,74.006,pepperoni,dog,Yes,early bird,No
-LEC005,20,Science: Biology/Life,53703,44.67082,-93.24432,mushroom,dog,No,no preference,Maybe
-LEC004,18,Mathematics/AMEP,53706,46.786671,-92.100487,pepperoni,cat,No,early bird,Yes
-LEC005,20,Economics,53703,48.856613,2.352222,pepperoni,neither,No,night owl,Maybe
-LEC006,18,Business: Finance,53706,40.409264,49.867092,Other,neither,No,early bird,No
-LEC004,21,Computer Science,53715,27.993828,120.699364,green pepper,dog,Yes,no preference,No
-LEC002,,Computer Science,53706,43.073051,-89.40123,Other,neither,Yes,no preference,Maybe
-LEC002,20,Engineering: Mechanical,53706,35.6762,139.6503,sausage,cat,Yes,night owl,Yes
-LEC001,20,Economics (Mathematical Emphasis),53703,43.073929,-89.385239,macaroni/pasta,cat,No,night owl,No
-LEC002,21,Business: Information Systems,53713,43.03638,-89.40292,pineapple,neither,Yes,night owl,Yes
-LEC004,18,Data Science,53706,45.31625,-92.59181,pepperoni,dog,No,night owl,Yes
-LEC001,21,Business: Finance,53711,43.073929,-89.385239,pepperoni,dog,No,no preference,Maybe
-LEC005,19,Engineering: Mechanical,53715,35.689487,139.691711,pepperoni,dog,No,night owl,Yes
-LEC003,18,Computer Science,53706,51.500153,-0.1262362,pepperoni,dog,No,night owl,Yes
-LEC002,22,Science: Biology/Life,53711,43.073051,-89.40123,mushroom,cat,No,no preference,No
-LEC004,18,Data Science,53706,42.360081,-71.058884,green pepper,dog,No,night owl,Yes
-LEC005,19,Engineering: Mechanical,53703,32.8328,117.2713,sausage,neither,Yes,night owl,Yes
-LEC003,20,Engineering: Mechanical,53715,44.834,-87.376,none (just cheese),dog,Yes,night owl,No
-LEC006,21,Economics,53703,41.902782,12.496365,none (just cheese),dog,No,no preference,Yes
-LEC003,25,Data Science,53703,34.693737,135.502167,pineapple,dog,No,early bird,Maybe
-LEC003,17,Computer Science,53703,19.075983,72.877655,Other,neither,Yes,no preference,No
-LEC002,19,Psychology,53715,30.5928,114.3052,sausage,cat,No,night owl,Yes
-LEC001,19,Computer Science,53703,51.507351,-0.127758,sausage,cat,Yes,no preference,Yes
-LEC006,17,Engineering: Industrial,53706,55.953251,-3.188267,Other,dog,No,night owl,Yes
-LEC005,,Computer Science,53703,43.073051,-89.40123,pineapple,dog,Yes,night owl,No
-LEC002,21,Engineering: Mechanical,53705,37.566536,126.977966,mushroom,cat,Yes,no preference,Maybe
-LEC002,18,Undecided,53715,48.775845,9.182932,Other,dog,No,night owl,Yes
-LEC004,19,Data Science,53703,43,-89,sausage,cat,No,early bird,Maybe
-LEC001,21,Science: Biology/Life,53703,36,117,macaroni/pasta,dog,No,night owl,Maybe
-LEC002,19,Business: Information Systems,53703,42.360081,-71.058884,pepperoni,dog,No,no preference,Yes
-LEC005,19,Computer Science,53706,-8.340539,115.091949,pineapple,dog,Yes,night owl,Maybe
-LEC003,20,Business: Information Systems,53726,43.073051,-89.40123,sausage,dog,Yes,night owl,No
-LEC003,,Science: Other,53715,39.904202,116.407394,mushroom,cat,No,night owl,Maybe
-LEC004,20,Engineering: Biomedical,53715,43.0707,12.6196,tater tots,dog,No,night owl,Maybe
-LEC004,19,Engineering: Biomedical,53715,41.878113,-87.629799,mushroom,dog,Yes,night owl,Yes
-LEC002,21,Business: Other|Accounting,53703,41.8781,87.6298,pepperoni,cat,No,night owl,No
-LEC002,17,Undecided,53706,33.742185,-84.386124,Other,dog,No,no preference,Yes
-LEC006,18,Data Science,53558,40.73061,-73.935242,pepperoni,dog,Yes,night owl,No
-LEC003,25,Data Science,53705,43.073051,-89.385239,sausage,cat,No,night owl,Maybe
-LEC002,18,Data Science,53706,37.34163,-122.05411,sausage,dog,No,night owl,Yes
-LEC006,18,Science: Biology/Life,53706,19.21833,72.978088,green pepper,neither,No,no preference,Maybe
-LEC002,,Business: Other|business analytics,53703,31.230391,121.473701,none (just cheese),cat,Yes,night owl,Maybe
-LEC003,,Data Science,53706,35.719312,139.784546,none (just cheese),neither,Yes,night owl,Yes
-LEC002,19,Engineering: Mechanical,53726,47.141041,9.52145,mushroom,dog,No,night owl,Yes
-LEC002,,Computer Science,53715,41.8781,87.6298,pepperoni,dog,No,no preference,Maybe
-LEC002,26,Science: Other|animal sciences,53705,25.204849,55.270782,pepperoni,dog,No,no preference,Maybe
-LEC003,21,Mathematics,53704,61.218056,-149.900284,green pepper,cat,Yes,early bird,Maybe
-LEC003,22,Engineering: Other,53703,49.28273,-123.120735,macaroni/pasta,cat,No,early bird,Maybe
-LEC001,18,Engineering: Other,53706,41.902782,12.496365,pepperoni,dog,No,night owl,Yes
-LEC003,20,Engineering: Mechanical,53726,39.81059,-74.71795,basil/spinach,dog,No,early bird,Yes
-LEC003,21,Health Promotion and Health Equity,53711,37.2982,113.0263,pepperoni,dog,No,early bird,No
-LEC003,20,Engineering: Mechanical,53703,38.722252,-9.139337,mushroom,dog,No,night owl,Yes
-LEC003,19,Engineering: Mechanical,53714,43,-89.4,none (just cheese),dog,No,night owl,Yes
-LEC002,19,Engineering: Industrial,53703,41.878,-87.63,pepperoni,dog,Yes,night owl,Yes
-LEC003,18,Computer Science,53706,43.073051,-89.40123,mushroom,neither,No,night owl,Yes
-LEC001,18,Engineering: Industrial,53706,19.655041,-101.169891,pepperoni,dog,Yes,no preference,Maybe
-LEC005,20,Engineering: Mechanical,53703,26.147,-81.795,pepperoni,dog,Yes,early bird,Yes
-LEC006,18,Business: Other,53706,51.507,-0.128,sausage,dog,No,no preference,No
-LEC005,19,Business: Other,53706,43,-89,pepperoni,dog,Yes,no preference,Yes
-LEC004,19,Engineering: Mechanical,53705,34.869709,-111.760902,pepperoni,cat,No,no preference,Maybe
-LEC005,21,Business: Finance,53703,3.15443,101.715103,pepperoni,cat,No,night owl,Yes
-LEC005,18,Engineering: Mechanical,53706,44.655991,-93.242752,none (just cheese),dog,Yes,night owl,Yes
-LEC003,18,Art,53706,36.25,138.25,macaroni/pasta,dog,No,night owl,Yes
-LEC005,19,Data Science,53715,41.94288,-87.68667,pepperoni,dog,Yes,night owl,Yes
-LEC005,18,Data Science,53703,44.2795,73.9799,pepperoni,dog,Yes,night owl,No
-LEC002,19,Mathematics/AMEP,53715,37.80718,23.734864,pineapple,cat,No,night owl,Yes
-LEC004,18,Computer Science,53706,35.689487,139.691711,pepperoni,cat,No,night owl,Yes
-LEC006,18,Engineering: Mechanical,53706,43.0826,-97.16051,pepperoni,dog,No,no preference,Yes
-LEC006,18,Engineering: Other,53715,37.441883,-122.143021,mushroom,dog,Yes,night owl,Maybe
-LEC006,18,Engineering: Mechanical,53706,44.883,-87.86291,pepperoni,dog,No,early bird,Yes
-LEC004,19,Engineering: Mechanical,53706,40.73598,-74.37531,none (just cheese),dog,Yes,early bird,No
-LEC001,20,Business: Actuarial,53703,42.28,-83.74,mushroom,dog,No,night owl,Yes
-LEC003,17,Engineering: Mechanical,53706,37.98381,23.727539,pineapple,dog,Yes,night owl,No
-LEC004,18,Computer Science,53706,40.27385,-74.75972,sausage,dog,Yes,night owl,Yes
-LEC002,19,Economics,53703,90.1994,38.627,none (just cheese),dog,No,early bird,Yes
-LEC002,21,"Mathematics, Data Science",53703,30.572815,104.066803,sausage,dog,No,night owl,Maybe
-LEC002,,Computer Science,53717,36,139,mushroom,dog,Yes,early bird,Yes
-LEC006,19,Science: Biology/Life,53715,45.289143,-87.021847,none (just cheese),cat,No,night owl,Maybe
-LEC002,21,Mathematics/AMEP,53703,20.878332,-156.682495,pepperoni,cat,No,night owl,Yes
-LEC003,22,Mathematics/AMEP,53715,44.481586,-88.005981,pepperoni,neither,No,night owl,Yes
-LEC006,18,Data Science,53706,43.073051,-89.40123,pepperoni,dog,No,night owl,Yes
-LEC005,18,Computer Science,53706,30.733315,76.779419,none (just cheese),dog,No,night owl,Yes
-LEC005,20,Mathematics/AMEP,53703,38.837702,-238.449497,pepperoni,dog,No,night owl,Yes
-LEC005,,Computer Science,53593,50.116322,-122.957359,sausage,dog,No,night owl,Yes
-LEC005,18,Computer Science,53715,43.059023,-89.296875,pepperoni,cat,No,night owl,Maybe
-LEC005,19,Engineering: Industrial,53703,22.2255,-159.4835,pepperoni,cat,Yes,night owl,Yes
-LEC005,18,Engineering: Biomedical,53593,43.073051,-89.40123,green pepper,cat,No,night owl,Maybe
-LEC005,20,Engineering: Mechanical,53715,41.283211,-70.099228,sausage,dog,No,no preference,Maybe
-LEC005,18,Data Science,53715,25.26741,55.292679,basil/spinach,cat,Yes,early bird,Yes
-LEC005,19,Business: Other,53726,43.038902,-87.906471,pepperoni,dog,No,night owl,Yes
-LEC002,,Undecided,53703,30.5723,104.0665,sausage,dog,No,night owl,Yes
-LEC006,18,Engineering: Mechanical,53706,30.2672,97.7431,pepperoni,dog,No,night owl,No
-LEC006,20,Data Science,53703,36.731651,-119.785858,Other,dog,Yes,night owl,Yes
-LEC005,18,Computer Science,53706,43.038902,-87.906471,pepperoni,dog,No,night owl,Yes
-LEC004,,Business: Finance,53703,33.8688,151.2093,green pepper,dog,Yes,night owl,Yes
-LEC005,18,Science: Other|Science: Genetics and Genomics,53715,43.073051,-89.40123,mushroom,dog,No,no preference,Yes
-LEC003,19,Engineering: Mechanical,53715,44.90767,-93.183594,basil/spinach,dog,No,night owl,Maybe
-LEC006,18,Business: Finance,53706,-33.448891,-70.669266,macaroni/pasta,dog,No,night owl,Yes
-LEC006,17,Business: Finance,53706,43.296482,5.36978,pineapple,dog,No,night owl,Yes
-LEC006,21,Mathematics/AMEP,53703,30.572815,104.066803,green pepper,dog,No,no preference,Maybe
-LEC005,20,Engineering: Mechanical,53703,41.99884,-87.68828,Other,dog,No,no preference,No
-LEC001,19,Business: Information Systems,53703,39.481655,-106.038353,macaroni/pasta,dog,Yes,night owl,Yes
-LEC004,19,Engineering: Mechanical,53703,41.883228,-87.632401,pepperoni,dog,No,no preference,Maybe
-LEC004,18,Engineering: Industrial,53706,41.878113,41.878113,pepperoni,dog,No,night owl,No
-LEC004,19,Engineering: Mechanical,53703,28.228209,112.938812,none (just cheese),neither,Yes,early bird,Yes
-LEC003,18,Data Science,89451,34.42083,-119.698189,green pepper,dog,No,early bird,No
-LEC003,19,Computer Science,53703,41.3874,2.1686,pepperoni,cat,No,early bird,No
-LEC005,20,Science: Biology/Life,53703,32.05196,118.77803,sausage,neither,No,night owl,Yes
-LEC004,19,Engineering: Mechanical,53706,50.075539,14.4378,none (just cheese),neither,No,night owl,Yes
-LEC003,20,Statistics (actuarial route),53715,43.134315,-88.220062,sausage,dog,No,early bird,No
-LEC004,19,Computer Science,53706,17.385044,78.486671,pepperoni,neither,Yes,night owl,Yes
-LEC002,18,Engineering: Mechanical,53706,53707,-88.415382,Other,dog,No,night owl,Yes
-LEC004,19,Computer Science,53706,45.440845,12.315515,sausage,dog,No,night owl,Yes
-LEC004,18,Computer Science,53706,55.953251,-3.188267,Other,dog,No,night owl,Maybe
-LEC004,18,Engineering: Mechanical,53706,33.8902,-118.39848,sausage,dog,Yes,night owl,Yes
-LEC001,20,Business: Other|Business: Accounting,53703,31.230391,121.473701,pepperoni,cat,Yes,no preference,No
-LEC004,18,Data Science,53706,39.512611,116.677063,pepperoni,dog,No,night owl,Maybe
-LEC003,18,Undecided,53706,41.256538,95.934502,Other,dog,No,no preference,Yes
-LEC003,18,Data Science,53706,19.075983,72.877655,pepperoni,dog,No,night owl,No
-LEC003,22,Economics,53703,40.753685,-73.999161,green pepper,dog,No,night owl,Maybe
-LEC003,18,Data Science,53706,51.507351,-0.127758,pepperoni,cat,No,night owl,Yes
-LEC003,,Engineering: Mechanical,53706,42.44817,-71.224716,pepperoni,cat,Yes,night owl,Maybe
-LEC003,17,Engineering: Other|Computer Engineering,53706,42.36,-71.059,basil/spinach,neither,No,early bird,Maybe
-LEC003,21,Business: Actuarial,53706,32.715736,-117.161087,green pepper,dog,Yes,night owl,No
-LEC003,,Engineering: Other|Computer engineering,53706,35.689487,139.691711,Other,cat,No,night owl,Yes
-LEC003,18,Mathematics/AMEP,53715,41.385063,2.173404,pepperoni,cat,Yes,no preference,Maybe
-LEC003,20,Computer Science,53705,30.274084,120.155067,mushroom,cat,No,night owl,Yes
-LEC005,,Computer Science,53705,51.507351,-0.127758,basil/spinach,dog,No,night owl,Yes
-LEC003,18,Computer Science,53706,45.45676,15.29662,sausage,dog,Yes,early bird,Yes
-LEC003,18,Engineering: Industrial,53706,18.92421,-99.221565,green pepper,dog,Yes,night owl,Yes
-LEC004,18,Engineering: Other|Material Science Engineering,53703,38.941631,-119.977219,pepperoni,dog,Yes,night owl,Yes
-LEC002,21,Economics,53705,25.03841,121.5637,pepperoni,cat,No,night owl,Maybe
-LEC005,,Civil engineering - hydropower engineering,53705,34,113,pineapple,neither,No,night owl,Maybe
-LEC005,18,Computer Science,53706,40.7,-74.005,pepperoni,cat,No,early bird,No
-LEC001,19,Engineering: Mechanical,53706,35.142441,-223.154297,green pepper,neither,Yes,night owl,Yes
-LEC006,18,Data Science,53706,43.05891,-88.007462,pepperoni,dog,Yes,night owl,Yes
-LEC006,,Engineering: Mechanical,53706,37.566536,126.977966,pepperoni,dog,Yes,night owl,No
-LEC005,18,Data Science,53706,36.393154,25.46151,none (just cheese),dog,No,night owl,No
-LEC001,,Engineering: Mechanical,53715,19.8968,155.5828,pepperoni,dog,No,night owl,No
-LEC002,19,Engineering: Biomedical,53706,48.494904,-113.979034,macaroni/pasta,cat,No,night owl,Yes
-LEC005,18,Engineering: Mechanical,53706,41.88998,12.49426,pineapple,dog,Yes,night owl,Yes
-LEC003,17,Data Science,53706,-7.257472,112.75209,pineapple,dog,Yes,early bird,Yes
-LEC005,19,Economics,53703,40.592331,-111.820152,none (just cheese),dog,Yes,night owl,Maybe
-LEC005,19,Data Science,53704,38.722252,-9.139337,pepperoni,dog,No,night owl,Yes
-LEC003,,Computer Science,53703,64.963051,-19.020836,pineapple,dog,No,no preference,Maybe
-LEC002,20,Economics,53703,43.769562,11.255814,mushroom,dog,No,night owl,Yes
-LEC004,20,Business: Actuarial,53715,44.834209,-87.376266,sausage,dog,No,no preference,Yes
-LEC005,21,Economics,53703,37.751824,-122.420105,green pepper,cat,No,night owl,Yes
-LEC004,22,Economics,53703,56.490669,4.202646,mushroom,dog,No,no preference,Yes
-LEC004,18,Engineering: Mechanical,53706,44.9058,-93.28535,pepperoni,cat,Yes,night owl,Maybe
-LEC004,19,Data Science,53703,41.878113,-87.629799,sausage,dog,No,night owl,Yes
-LEC001,21,Computer Science,53703,43.21518,-87.94241,pepperoni,dog,No,no preference,Maybe
-LEC004,24,Science: Chemistry,53703,32.715736,-117.161087,mushroom,dog,Yes,night owl,Maybe
-LEC005,19,Engineering: Mechanical,53715,39.412327,-77.425461,pepperoni,cat,Yes,early bird,Yes
-LEC004,20,Statistics,53703,43.07391,-89.39356,pepperoni,dog,No,early bird,Maybe
-LEC005,21,Business: Finance,53703,38.178127,-92.781052,mushroom,dog,No,night owl,Yes
-LEC004,18,Engineering: Mechanical,53706,35.689487,139.691711,pepperoni,dog,No,no preference,Yes
-LEC005,18,Data Science,60521,41.9,87.6,pepperoni,dog,Yes,night owl,Yes
-LEC005,23,Business: Information Systems,53558,43.073051,-89.40123,pepperoni,dog,Yes,early bird,No
-LEC004,18,Engineering: Mechanical,53706,43.739507,7.426706,pepperoni,dog,No,night owl,Yes
-LEC005,21,Data Science,53703,25,121,pepperoni,dog,No,night owl,Yes
-LEC005,20,Business: Information Systems,53703,43.073051,-89.40123,pepperoni,dog,Yes,night owl,Yes
-LEC004,,Engineering: Biomedical,53715,41.385063,2.173404,pepperoni,dog,Yes,no preference,No
-LEC004,18,Communication arts,53715,22.543097,114.057861,mushroom,cat,Yes,early bird,Yes
-LEC001,22,Engineering: Mechanical,53703,47.497913,19.040236,pepperoni,dog,No,no preference,No
-LEC005,19,Computer Science,54706,34.05,-118.24,sausage,cat,Yes,night owl,Yes
-LEC005,18,Engineering: Biomedical,53706,46.818188,8.227512,pineapple,dog,Yes,no preference,Yes
-LEC004,19,Engineering: Mechanical,53715,42.36,-71.058884,pepperoni,dog,Yes,no preference,Yes
-LEC005,21,Data Science,53703,36.4,117,pineapple,dog,Yes,night owl,Yes
-LEC005,19,Engineering: Mechanical,53704,35.6762,139.6503,sausage,dog,No,night owl,Maybe
-LEC004,20,Economics,53703,44.885,-93.147,pepperoni,dog,No,early bird,Yes
-LEC004,20,Health Promotion and Health Equity,53704,48.8566,2.349014,pepperoni,dog,No,night owl,Yes
-LEC004,19,Engineering: Mechanical,53715,43.073051,-89.40123,sausage,dog,Yes,no preference,Yes
-LEC001,20,Business andministration,53703,37.389091,-5.984459,pineapple,dog,Yes,night owl,Maybe
-LEC003,23,Mathematics/AMEP,53715,24.88,102.8,pineapple,dog,Yes,early bird,Yes
-LEC002,20,Engineering: Industrial,53703,44.389,12.9908,sausage,dog,No,early bird,Maybe
-LEC005,20,Education,53703,41.878113,-87.629799,basil/spinach,cat,Yes,early bird,No
-LEC003,19,Science: Biology/Life,53703,41.38,2.17,pepperoni,dog,Yes,no preference,Maybe
-LEC006,18,Pre-business,53706,41.8781,87.6298,pepperoni,dog,Yes,night owl,Yes
-LEC004,20,Business: Finance,53706,41.10475,-80.64916,basil/spinach,dog,Yes,night owl,Yes
-LEC004,20,Statistics,53703,42.360081,-71.058884,pepperoni,dog,No,night owl,Yes
-LEC003,18,Engineering: Mechanical,53706,24.5554,81.7842,pepperoni,dog,No,early bird,Maybe
-LEC004,19,Data Science,53703,38.72,75.07,none (just cheese),dog,Yes,early bird,Yes
-LEC006,20,Engineering: Mechanical,53705,30.572815,104.066803,mushroom,cat,Yes,no preference,Maybe
-LEC003,20,Mathematics/AMEP,53726,43.07199,-89.42629,mushroom,dog,No,night owl,Yes
-LEC004,20,Engineering: Mechanical,53705,48,7.85,pepperoni,dog,Yes,night owl,No
-LEC001,20,Computer Science,53703,40.7128,74.006,pepperoni,dog,Yes,night owl,Maybe
-LEC003,18,Business: Actuarial,53719,14.599512,120.984222,pineapple,cat,Yes,no preference,Maybe
-LEC003,17,Computer Science,53715,37.38522,-122.114128,Other,dog,No,night owl,No
-LEC003,18,Computer Science,53706,37.386051,-122.083855,sausage,dog,Yes,no preference,Maybe
-LEC004,23,Business: Finance,53703,31.230391,121.473701,mushroom,neither,No,night owl,No
-LEC004,21,Engineering: Industrial,53703,37.94048,-78.63664,Other,dog,Yes,night owl,Yes
-LEC002,21,Mathematics/AMEP,53715,42.360081,-71.058884,mushroom,neither,Yes,early bird,Yes
-LEC002,18,Engineering: Industrial,53715,40.712776,-74.005974,pineapple,dog,Yes,night owl,Yes
-LEC001,22,Engineering: Mechanical,53726,36.97447,122.02899,pepperoni,dog,No,no preference,Yes
-LEC005,,Mathematics/AMEP,53715,36.651199,117.120094,mushroom,neither,No,night owl,Yes
-LEC005,18,Mathematics/AMEP,53706,46.482525,30.723309,basil/spinach,dog,No,early bird,Yes
-LEC006,20,Engineering: Industrial,53703,42.102901,-88.368896,pepperoni,dog,No,night owl,Maybe
-LEC006,18,Computer Science,53706,-31.959153,-244.161255,green pepper,dog,No,night owl,Yes
-LEC002,24,Computer Science,53715,30.704852,104.003904,mushroom,neither,Yes,no preference,Maybe
-LEC005,19,Engineering: Mechanical,53705,40.712776,-74.005974,pepperoni,dog,No,early bird,No
-LEC004,22,Science: Biology/Life,53705,39.758161,39.758161,pepperoni,cat,No,early bird,Yes
-LEC005,20,Statistics,53703,43.073051,-89.40123,sausage,dog,Yes,night owl,Yes
-LEC001,19,Data Science,53703,41,87,sausage,dog,No,no preference,No
-LEC004,20,Engineering: Mechanical,53726,58.2996,14.4444,sausage,cat,No,night owl,Maybe
-LEC005,18,Engineering: Mechanical,53562,1.3521,103.8198,green pepper,cat,No,early bird,Maybe
-LEC002,19,Engineering: Mechanical,53703,44.46534,-72.684303,green pepper,cat,Yes,night owl,Yes
-LEC002,20,Engineering: Industrial,53726,43.038902,-87.906471,pepperoni,dog,No,night owl,Yes
-LEC006,18,Business: Actuarial,53706,45.464203,9.189982,pepperoni,cat,Yes,night owl,Yes
-LEC006,18,Computer Science,53715,30.58198,114.268066,sausage,cat,Yes,early bird,Maybe
-LEC004,19,Business: Finance,53706,41.878113,-87.629799,pepperoni,dog,No,early bird,No
-LEC005,18,Business: Finance,53706,40.416775,-3.70379,pepperoni,dog,Yes,early bird,No
-LEC001,20,Science: Other|Environmental Science,53715,41.878113,-87.629799,green pepper,cat,No,early bird,No
-LEC002,22,Computer Science,53715,42,-71,mushroom,cat,No,night owl,Maybe
-LEC001,24,Economics,53703,40,-90,pineapple,dog,No,night owl,Yes
-LEC006,19,Business: Information Systems,53715,40.712776,-74.005974,basil/spinach,dog,No,night owl,Yes
-LEC002,19,Data Science,53703,33.4942,89.4959,sausage,dog,No,night owl,Maybe
-LEC003,20,Engineering: Mechanical,53715,43.02833,-87.971467,pepperoni,neither,Yes,night owl,Maybe
-LEC001,,Data Science,53706,40.416775,-3.70379,none (just cheese),dog,Yes,no preference,Yes
-LEC003,19,Engineering: Mechanical,53715,43.07,-89.4,pepperoni,dog,No,no preference,Maybe
-LEC006,18,Data Science,53706,46.683334,7.85,mushroom,dog,Yes,no preference,No
-LEC003,19,Engineering: Biomedical,53703,31.046051,34.851612,Other,dog,No,night owl,Maybe
-LEC003,18,Data Science,53705,31.23,121.47,mushroom,dog,Yes,night owl,Maybe
-LEC005,19,Engineering: Mechanical,53703,42.00741,-87.69384,mushroom,dog,No,night owl,Yes
-LEC001,37,Data Science,53718,43.073051,-89.40123,green pepper,dog,No,no preference,Maybe
-LEC003,20,History,53703,31.62,74.8765,Other,cat,Yes,early bird,No
-LEC002,20,Economics,53703,38.627003,-90.199402,mushroom,dog,Yes,night owl,Yes
-LEC005,20,Engineering: Mechanical,53703,40,-74,none (just cheese),dog,Yes,early bird,No
-LEC005,18,Data Science,53706,23.7275,37.9838,pepperoni,dog,Yes,early bird,Yes
-LEC004,20,Mathematics/AMEP,53703,34.746613,113.625328,sausage,neither,Yes,early bird,Maybe
-LEC001,21,Data Science,53703,30.572351,121.776761,pepperoni,cat,No,night owl,Maybe
-LEC005,,Data Science,53715,35.72,-78.89,pepperoni,dog,No,night owl,Yes
-LEC005,20,Information science,53590,44.92556,-89.51539,pepperoni,dog,No,night owl,Yes
-LEC002,22,Mathematics/AMEP,53704,40.76078,-111.891045,pineapple,dog,Yes,night owl,No
-LEC001,22,consumer behavior and marketplace studies,53715,43.653225,-79.383186,mushroom,cat,Yes,night owl,No
-LEC004,22,Computer Science,53703,10.315699,123.885437,sausage,dog,Yes,early bird,No
-LEC002,20,Conservation Biology,53703,40.16573,-105.101189,pineapple,dog,No,night owl,Yes
-LEC005,20,Computer Science,53726,39.4817,106.0384,Other,neither,Yes,early bird,Yes
-LEC005,19,Mathematics/AMEP,53715,48.85,2.35,sausage,cat,No,night owl,Maybe
-LEC005,19,Data Science,53706,30.572815,104.066803,mushroom,neither,No,early bird,Yes
-LEC004,24,Business: Information Systems,53703,37.566536,126.977966,tater tots,dog,No,early bird,No
-LEC004,19,Economics,53703,52.877491,-118.08239,pepperoni,dog,No,night owl,Yes
-LEC004,21,Computer Science,53703,28.538336,-81.379234,pepperoni,dog,No,night owl,Yes
-LEC006,18,Data Science,53706,41.4,-81.9,sausage,dog,Yes,night owl,Maybe
-LEC002,21,Science: Biology/Life,53703,43.038902,-87.906471,none (just cheese),neither,No,no preference,Yes
-LEC004,21,Data Science,53703,3.86,-54.2,macaroni/pasta,dog,No,early bird,No
-LEC004,19,Engineering: Mechanical,53715,39.952583,-75.165222,macaroni/pasta,dog,Yes,no preference,Yes
-LEC004,20,Science: Other,53715,21.3099,157.8581,pineapple,dog,No,early bird,Yes
-LEC005,21,Data Science,48823,11.451419,19.81,mushroom,neither,No,night owl,Maybe
-LEC001,20,Computer Science,53715,41,-87,Other,dog,No,night owl,Yes
-LEC005,21,Data Science,53705,42.3601,71.0589,pepperoni,dog,Yes,no preference,Yes
-LEC005,19,Computer Science,53706,48.856613,2.352222,pepperoni,dog,Yes,night owl,Maybe
-LEC001,17,Statistics,53715,43.0722,89.4008,pineapple,dog,No,early bird,Maybe
-LEC001,20,Economics,53715,27.99942,120.66682,pepperoni,dog,Yes,early bird,No
-LEC001,19,Mathematics/AMEP,53711,45.85038,-84.616989,pineapple,cat,No,night owl,Yes
-LEC004,20,Computer Science,53711,40.842358,111.749992,pineapple,cat,No,night owl,Maybe
-LEC003,18,Engineering: Mechanical,53706,39.738449,-104.984848,pepperoni,dog,No,early bird,Yes
-LEC003,21,Statistics,53705,41.878113,-87.629799,macaroni/pasta,dog,No,night owl,Yes
-LEC006,19,Engineering: Industrial,60540,41.878113,-87.629799,none (just cheese),dog,No,night owl,No
-LEC004,19,Engineering: Mechanical,53703,40.6263,14.3758,mushroom,dog,No,early bird,No
-LEC004,22,Engineering: Other|Chemical Engineering,53703,48.13913,11.58022,macaroni/pasta,dog,Yes,night owl,Yes
-LEC004,21,Economics (Mathematical Emphasis),53703,52.520008,13.404954,pepperoni,dog,No,night owl,No
-LEC004,25,Science: Other|Biophysics PhD,53705,30.21161,-97.80999,pineapple,dog,No,night owl,Yes
-LEC003,19,Computer Science,53716,25.49443,-103.59581,pepperoni,cat,No,no preference,Yes
-LEC003,19,Data Science,53706,64.963051,-19.020836,pineapple,dog,No,no preference,No
-LEC006,19,Computer Science,53706,41.878113,-87.629799,pepperoni,cat,No,night owl,Maybe
-LEC001,23,Economics,53703,43.07348,-89.38089,pepperoni,dog,No,night owl,Yes
-LEC001,29,Business: Other|Technology Strategy/ Product Management,53705,37.386051,-122.083855,Other,cat,No,no preference,Maybe
-LEC002,,Engineering: Mechanical,53706,14.34836,100.576271,pepperoni,neither,No,no preference,Maybe
-LEC004,20,Undecided,53715,37.566536,126.977966,none (just cheese),neither,No,night owl,Yes
-LEC006,19,Engineering: Mechanical,53703,27.993828,120.699364,sausage,neither,No,no preference,Yes
-LEC002,,Computer Science,53705,25.032969,121.565414,pineapple,dog,No,night owl,Yes
-LEC005,20,Mathematics/AMEP,53703,32.060253,118.796875,pineapple,cat,Yes,night owl,Maybe
-LEC003,,Business: Other,53706,50.07553,14.4378,pepperoni,dog,Yes,night owl,Maybe
-LEC006,21,Data Science,57303,32.715736,-117.161087,macaroni/pasta,cat,Yes,no preference,Yes
-LEC006,18,Engineering: Mechanical,53706,45.5579,94.1632,sausage,dog,No,night owl,Yes
-LEC001,18,Engineering: Biomedical,53715,43.073051,-89.40123,sausage,dog,No,early bird,Yes
-LEC005,19,Engineering: Mechanical,53706,38.571739,-109.550797,pepperoni,cat,No,night owl,Yes
-LEC003,18,Engineering: Mechanical,53706,41.902782,12.496365,pepperoni,dog,Yes,night owl,No
-LEC002,21,Data Science,53711,120,30,sausage,dog,Yes,night owl,Maybe
-LEC004,18,Engineering: Biomedical,53706,40.014984,-105.270546,green pepper,dog,No,night owl,Yes
-LEC004,20,Engineering: Mechanical,53715,53.2779,6.1058,sausage,dog,Yes,no preference,Yes
-LEC003,17,Science: Physics,53706,50.088153,14.399437,Other,cat,No,night owl,Yes
-LEC002,19,Engineering: Industrial,53705,35.084385,-106.650421,pineapple,cat,No,night owl,Yes
-LEC003,20,Engineering: Mechanical,53703,44.501343,-88.06221,pepperoni,dog,No,night owl,Yes
-LEC003,18,Engineering: Mechanical,53703,45.659302,-92.466164,macaroni/pasta,dog,No,no preference,Maybe
-LEC003,19,Data Science,53703,16.896721,42.5536,none (just cheese),neither,No,early bird,Maybe
-LEC001,18,Data Science,53703,23.885942,45.079163,mushroom,neither,No,early bird,Maybe
-LEC006,19,Engineering: Mechanical,53703,55.953251,-3.188267,mushroom,cat,Yes,night owl,Yes
-LEC001,30,Business: Other,53705,43.07175,-89.46498,pineapple,cat,No,early bird,No
-LEC006,18,Political Science,53706,39.640263,-106.374191,green pepper,dog,No,early bird,No
-LEC005,23,Business: Information Systems,53705,27.99,120.69,green pepper,dog,No,night owl,No
-LEC003,18,Graphic Design,53706,40.713051,-74.007233,Other,dog,Yes,early bird,Yes
-LEC002,21,Economics,53715,37.369171,-122.112473,mushroom,dog,No,night owl,No
-LEC005,18,Computer Science,53706,21.3099,157.8581,pepperoni,cat,No,night owl,Yes
-LEC002,19,Business: Other|Marketing,53706,59.913868,10.752245,macaroni/pasta,dog,No,night owl,Maybe
-LEC003,20,Cartography and GIS,53726,43.0722,89.4008,sausage,cat,No,early bird,Maybe
-LEC005,21,Economics,53705,25.032969,120.960518,sausage,dog,Yes,night owl,Maybe
-LEC005,19,Engineering: Industrial,53703,42.03992,87.67732,sausage,dog,Yes,night owl,Yes
-LEC003,,Computer Science,53706,35.443081,139.362488,sausage,dog,Yes,night owl,Yes
-LEC002,22,Sociology,53703,53.483959,-2.244644,pepperoni,dog,No,night owl,Yes
-LEC002,18,Undecided,53706,43.073051,-89.40123,pineapple,dog,Yes,night owl,Yes
-LEC004,19,Engineering: Biomedical,53706,-37.81,144.96,sausage,dog,Yes,night owl,Yes
-LEC005,21,Mathematics/AMEP,53703,22.542883,114.062996,pepperoni,cat,No,no preference,Maybe
-LEC002,20,Statistics,53715,23,113,pineapple,dog,No,night owl,Maybe
-LEC001,20,Business: Other|Consumer Behavior and Marketplace Studies,53703,40.76078,-111.891045,green pepper,dog,Yes,early bird,Maybe
-LEC001,21,Data Science,53705,40.712776,-74.005974,pepperoni,cat,No,night owl,Maybe
-LEC002,19,Engineering: Mechanical,53703,26.345631,-81.779083,pepperoni,dog,Yes,night owl,Yes
-LEC004,19,Engineering: Mechanical,53715,40.62632,14.37574,pepperoni,dog,No,no preference,Maybe
-LEC003,18,Engineering: Other,53706,40.73061,-73.9808,mushroom,dog,No,night owl,No
-LEC006,18,Atmospheric Sciences,53706,39.74,-104.99,sausage,dog,Yes,night owl,Maybe
-LEC002,20,Data Science,53703,43.073051,-89.40123,macaroni/pasta,dog,Yes,early bird,Yes
-LEC006,18,Engineering: Mechanical,53706,32.7157,117.1611,pineapple,dog,Yes,night owl,Yes
-LEC004,18,Computer Science,53706,51.507351,-0.127758,green pepper,dog,No,night owl,Yes
-LEC004,19,Education,53715,32.715736,-117.161087,pepperoni,dog,No,night owl,Yes
-LEC004,26,Languages,53703,50.11,8.68,sausage,dog,No,no preference,Yes
-LEC005,21,Economics (Mathematical Emphasis),53715,55.676098,12.568337,pepperoni,cat,No,night owl,Maybe
-LEC004,53,Mathematics/AMEP,53555,47.6,-122.3,mushroom,dog,No,night owl,Yes
-LEC004,17,Computer Science,53706,43.073051,-89.40123,Other,dog,No,night owl,Yes
-LEC006,18,Engineering Mechanics (Aerospace Engineering),53706,43.038902,-87.906471,pepperoni,cat,No,night owl,No
-LEC002,20,Engineering: Mechanical,53715,23.7157,117.1611,none (just cheese),cat,Yes,night owl,Maybe
-LEC002,22,Science: Other|Psychology,53703,37.82034,-122.47872,mushroom,dog,No,early bird,No
-LEC002,22,Computer Science,53705,34.052235,-118.243683,basil/spinach,dog,No,night owl,Yes
-LEC004,26,Science: Biology/Life,53715,33.962425,-83.378622,pineapple,neither,Yes,no preference,Yes
-LEC002,18,Economics,53715,41.878113,-87.629799,basil/spinach,cat,No,night owl,Maybe
-LEC004,24,Engineering: Other|Civil and Environmental Engineering,53703,47.5,19.04,pepperoni,dog,Yes,early bird,Maybe
-LEC004,19,Engineering: Biomedical,53711,40.712776,74.005974,pineapple,dog,No,early bird,No
-LEC001,19,Engineering: Mechanical,53715,43,-90,sausage,dog,No,no preference,Maybe
-LEC006,18,Data Science,94707,37.566536,126.977966,pineapple,dog,Yes,night owl,Yes
-LEC006,20,Undecided,53719,62.2001,58.9638,Other,cat,Yes,night owl,Maybe
-LEC002,18,Engineering: Mechanical,53706,44.977753,-93.265015,none (just cheese),cat,Yes,night owl,Yes
-LEC001,20,Business: Information Systems,53711,34.385204,132.455292,pepperoni,dog,No,early bird,Yes
-LEC005,19,Engineering: Biomedical,53703,41.8781,87.6298,macaroni/pasta,dog,No,night owl,No
-LEC002,19,Engineering: Biomedical,53703,37.98381,23.727539,macaroni/pasta,dog,No,night owl,Maybe
-LEC005,18,Data Science,53706,40,74,pepperoni,dog,No,no preference,Yes
-LEC002,19,Engineering: Mechanical,53711,41.95881,-85.32536,Other,dog,No,no preference,No
-LEC005,18,Data Science,53706,32.715736,-117.161087,sausage,dog,No,night owl,Maybe
-LEC002,18,Undecided,53706,43.060791,-88.119217,Other,neither,No,early bird,Yes
-LEC004,21,Science: Other,53715,27.963989,-82.799957,pineapple,dog,No,night owl,Yes
-LEC006,18,Data Science,53706,1.352083,103.819839,sausage,dog,No,night owl,Yes
-LEC005,19,Data Science,53703,-33.92487,18.424055,none (just cheese),dog,No,night owl,Yes
-LEC001,22,International Studies,53703,48.13913,11.58022,none (just cheese),cat,No,night owl,Yes
-LEC001,19,Engineering: Other,53715,38.331581,-75.086159,macaroni/pasta,dog,No,no preference,Yes
-LEC002,19,Business: Information Systems,53715,44.5,-88,pepperoni,dog,No,night owl,Yes
-LEC002,19,Data Science,53705,21.59143,-158.01743,Other,dog,Yes,night owl,Yes
-LEC002,,Business: Finance,53593,45.813042,9.080931,Other,dog,No,early bird,Yes
-LEC003,21,Business: Information Systems,53703,43.612255,-110.705429,sausage,dog,Yes,no preference,No
-LEC001,21,Data Science,53703,41.00824,28.978359,pepperoni,cat,Yes,early bird,No
-LEC002,18,Engineering: Biomedical,53706,17.385044,78.486671,green pepper,dog,No,night owl,Yes
-LEC006,21,Political Science,53703,45.512,-122.658,sausage,dog,No,night owl,Yes
-LEC003,18,Engineering: Mechanical,53706,41.902782,12.496365,pepperoni,dog,No,early bird,Maybe
-LEC005,19,Engineering: Mechanical,53703,-36.848461,174.763336,none (just cheese),dog,Yes,no preference,No
-LEC002,,Data Science,53713,30.316496,78.032188,mushroom,cat,Yes,night owl,Yes
-LEC002,,Business: Information Systems,53703,35.689487,139.691711,sausage,dog,Yes,night owl,Maybe
-LEC005,18,Data Science,53706,52.520008,13.404954,pineapple,dog,Yes,early bird,No
-LEC005,19,Computer Science,53706,41.3784,2.1686,sausage,cat,No,no preference,Yes
-LEC003,20,Engineering: Mechanical,53715,41.878113,-87.629799,Other,cat,No,night owl,Yes
-LEC004,20,Computer Science,53703,43.073051,-89.40123,none (just cheese),cat,Yes,night owl,Yes
-LEC006,23,Data Science,53703,17.05423,-96.713226,basil/spinach,dog,No,night owl,Maybe
-LEC001,19,Engineering: Mechanical,53706,43.77195,-88.43383,pepperoni,dog,No,early bird,Maybe
-LEC001,20,Economics,53726,42.92,-87.96,pepperoni,dog,Yes,early bird,No
-LEC001,19,Engineering: Mechanical,53715,29.424122,-98.493629,mushroom,dog,Yes,early bird,Maybe
-LEC004,18,Computer Science,53706,30.267153,-97.743057,pepperoni,dog,No,night owl,Yes
-LEC005,,Computer Science,53715,44.9778,93.265,sausage,cat,Yes,night owl,Yes
-LEC003,19,Science: Other,53715,41.9028,12.4964,pepperoni,dog,No,night owl,Yes
-LEC004,19,Data Science,53715,61.2176,149.8997,pineapple,cat,Yes,night owl,Maybe
-LEC001,20,Agricultural and Applied Economics,53703,-22.932924,-47.073845,pineapple,cat,Yes,early bird,Maybe
-LEC003,18,Computer Science,53706,52.370216,4.895168,basil/spinach,cat,No,night owl,Maybe
-LEC003,19,Engineering: Industrial,53703,5.838715,3.603516,pepperoni,dog,Yes,early bird,No
-LEC005,19,Engineering: Mechanical,53715,48.502281,-113.988533,sausage,dog,No,night owl,Yes
-LEC004,41,Languages,53705,29.654839,91.140549,pepperoni,cat,No,night owl,Yes
-LEC002,21,Business: Other|MHR,53703,44,125,Other,neither,No,night owl,Maybe
-LEC005,24,Business: Other,53703,43.073051,-89.40123,pineapple,dog,No,night owl,Yes
-LEC002,18,Undecided,53706,46.786671,-92.100487,none (just cheese),cat,No,no preference,Yes
-LEC004,18,Engineering: Biomedical,53705,35.689487,139.691711,basil/spinach,dog,No,night owl,Yes
-LEC001,25,Medicine,53703,48.38203,-123.537827,basil/spinach,dog,Yes,early bird,No
-LEC004,19,Science: Biology/Life,53705,46.009991,-91.482094,pineapple,dog,No,early bird,No
-LEC005,21,Science: Other|Personal Finance,53703,28.228209,112.938812,pepperoni,cat,Yes,night owl,Yes
-LEC004,18,Data Science,53706,35.689487,139.691711,pepperoni,dog,No,night owl,Maybe
-LEC006,21,Mathematics/AMEP,53703,41.878113,-87.629799,pineapple,cat,Yes,night owl,Maybe
-LEC005,18,Environmental science,53706,31.224361,121.46917,mushroom,dog,No,night owl,Yes
-LEC005,18,Engineering: Industrial,53706,40.712776,-74.005974,pepperoni,dog,Yes,night owl,Yes
-LEC001,20,Business: Other|Real Estate,53703,51.5,0.128,mushroom,dog,Yes,no preference,Maybe
-LEC001,19,Computer Science,53706,40,-74,pepperoni,cat,No,night owl,Yes
-LEC003,19,Engineering: Mechanical,53715,44,-94,pineapple,dog,No,early bird,No
-LEC001,19,Data Science,53715,40.712776,-74.005974,pepperoni,dog,No,early bird,No
-LEC005,18,Engineering: Industrial,53703,41.385063,2.173404,pepperoni,dog,Yes,no preference,Yes
-LEC002,20,Engineering: Industrial,53715,22.3,91.8,sausage,cat,Yes,early bird,Maybe
-LEC001,24,Engineering: Industrial,53705,13.100485,77.594009,none (just cheese),dog,Yes,no preference,Maybe
-LEC004,19,Statistics,53706,36.778259,-119.417931,pineapple,cat,No,night owl,Yes
-LEC005,21,Economics,53703,40.016869,-105.279617,pepperoni,cat,Yes,night owl,Yes
-LEC003,19,Economics (Mathematical Emphasis),53705,31.230391,121.473701,sausage,neither,Yes,no preference,Maybe
-LEC003,19,Business: Finance,53706,22.270979,113.576675,pepperoni,dog,Yes,night owl,Yes
-LEC003,21,Computer Science,53705,43.073051,-89.40123,green pepper,cat,No,no preference,Maybe
-LEC001,28,Science: Biology/Life,53703,7.190708,125.455338,sausage,dog,No,night owl,Yes
-LEC004,18,Statistics,53703,60.472023,8.468946,none (just cheese),dog,No,early bird,No
-LEC002,19,Computer Science,53715,41.73993,-88.09423,mushroom,cat,Yes,no preference,Yes
-LEC002,21,Economics,53703,26.074301,119.296539,mushroom,cat,No,no preference,Maybe
-LEC002,20,Engineering: Industrial,53715,2.188477,41.379179,sausage,dog,No,night owl,Yes
-LEC003,21,Science: Other|Environmental Science,53703,20.8,-156.3,basil/spinach,cat,No,early bird,Maybe
-LEC006,18,Engineering: Mechanical,53706,25.204849,55.270782,pepperoni,dog,No,night owl,Yes
-LEC002,18,Data Science,53706,42.360081,-71.058884,sausage,dog,Yes,night owl,Yes
-LEC004,23,Engineering: Mechanical,53703,38.82097,-104.78163,sausage,dog,No,night owl,No
-LEC001,19,Engineering: Industrial,53715,47.606209,-122.332069,pepperoni,cat,No,night owl,No
-LEC006,19,Sociology,53703,43.05977,-87.88491,basil/spinach,dog,No,night owl,Maybe
-LEC005,19,Engineering: Mechanical,53711,38.8951,-77.0364,pepperoni,dog,Yes,night owl,No
-LEC005,19,Engineering: Mechanical,53703,41.881832,87.6298,pepperoni,dog,No,no preference,Yes
-LEC002,20,Engineering: Mechanical,53703,46.453825,7.436478,pineapple,dog,Yes,night owl,Yes
-LEC002,20,Economics,53703,30.49996,117.050003,Other,dog,No,early bird,Maybe
-LEC004,21,Science: Other|Psychology,53715,23.12911,113.264381,none (just cheese),cat,No,night owl,Maybe
-LEC002,18,Science: Biology/Life,53706,40.7831,73.9712,basil/spinach,dog,Yes,night owl,Yes
-LEC002,,Business: Information Systems,53706,18.52043,73.856743,green pepper,dog,No,night owl,Yes
-LEC002,,Computer Science,53706,29.424122,-98.493629,none (just cheese),dog,No,no preference,Yes
-LEC002,20,Engineering: Mechanical,53703,41.05995,-80.32312,basil/spinach,dog,Yes,night owl,Maybe
-LEC006,19,Statistics,53715,3.139003,101.686852,mushroom,cat,No,no preference,Maybe
-LEC005,18,Data Science,53706,52.370216,4.895168,basil/spinach,dog,No,night owl,Yes
-LEC006,19,Engineering: Industrial,53706,41.878113,-87.629799,pepperoni,dog,No,no preference,Maybe
-LEC006,18,Business: Information Systems,53706,25.032969,121.565414,mushroom,dog,Yes,night owl,Yes
-LEC001,17,Computer Science,53726,21.027763,105.83416,pepperoni,dog,No,early bird,Yes
-LEC001,20,Business: Information Systems,53711,45.046799,-87.298149,sausage,cat,No,night owl,Yes
-LEC005,25,Engineering: Other,53705,32.7157,-117.1611,mushroom,dog,No,no preference,Yes
-LEC004,18,Engineering: Industrial,53706,19.896767,-155.582779,pepperoni,dog,Yes,night owl,Maybe
-LEC005,18,Computer Science,53706,1.28217,103.865196,sausage,dog,No,night owl,Yes
-LEC003,18,Engineering: Mechanical,53706,44.977753,-93.265015,pepperoni,dog,No,night owl,Yes
-LEC004,20,Engineering: Mechanical,53715,23,90,green pepper,cat,No,no preference,Yes
-LEC005,20,Data Science,53703,45.259546,-84.938476,mushroom,dog,Yes,night owl,Yes
-LEC002,21,Science: Other,53703,41.878113,-87.629799,pineapple,dog,Yes,early bird,No
-LEC004,19,Information science,53703,40.712776,-74.005974,pineapple,cat,Yes,early bird,Maybe
-LEC001,19,Engineering: Mechanical,53715,64.126518,-21.817438,pepperoni,dog,No,night owl,Yes
-LEC003,,Business: Other,53706,42.360081,-71.058884,sausage,cat,Yes,night owl,No
-LEC002,31,Geoscience,53703,-41.126621,-73.059303,pepperoni,cat,No,night owl,Yes
-LEC003,18,Engineering: Biomedical,53706,45.17099,-87.16494,Other,dog,No,night owl,Maybe
-LEC002,18,Engineering: Mechanical,53706,37.774929,-122.419418,Other,dog,Yes,no preference,Yes
-LEC004,,Computer Science,53715,39.70698,-86.0862,mushroom,cat,No,night owl,Yes
-LEC005,20,Science: Biology/Life,53703,44.276402,-88.26989,macaroni/pasta,cat,No,no preference,Maybe
-LEC002,19,Science: Biology/Life,53703,51.492519,-0.25852,sausage,dog,Yes,no preference,Yes
-LEC002,19,Data Science,53703,37.6,14.0154,none (just cheese),dog,No,night owl,Yes
-LEC002,20,Engineering: Industrial,53715,46.685631,7.8562,Other,cat,No,night owl,Maybe
-LEC002,22,Economics,53706,41.385063,2.173404,pineapple,cat,No,night owl,Maybe
-LEC004,21,Engineering: Industrial,53703,41.878113,-87.629799,pepperoni,neither,Yes,early bird,No
-LEC004,19,Engineering: Mechanical,53703,51.507351,-0.127758,none (just cheese),neither,No,no preference,Maybe
-LEC006,18,Engineering: Mechanical,53706,41.077747,1.131593,sausage,dog,No,no preference,Maybe
-LEC006,18,Engineering: Mechanical,53706,43.526,5.445,basil/spinach,dog,Yes,no preference,Yes
-LEC003,22,Economics,53715,43.073051,-89.40123,pepperoni,dog,Yes,early bird,Yes
-LEC005,18,Engineering: Industrial,53706,43.085369,-88.912086,sausage,dog,No,night owl,Maybe
-LEC002,19,Statistics,53703,43.769562,11.255814,basil/spinach,dog,No,no preference,Yes
-LEC001,20,Computer Science,53715,20.880947,-156.681862,sausage,dog,No,night owl,Yes
-LEC003,19,Mathematics/AMEP,53703,64.963051,-19.020836,basil/spinach,dog,No,no preference,Yes
-LEC005,18,Undecided,53706,43.073929,-89.385239,sausage,dog,Yes,early bird,Yes
-LEC003,18,Business: Information Systems,53706,25.204849,55.270782,none (just cheese),dog,No,night owl,No
-LEC003,21,Economics,53703,39.904,116.407,pepperoni,cat,No,night owl,No
-LEC004,18,Engineering: Mechanical,53706,39.739235,-104.99025,pepperoni,cat,Yes,no preference,Maybe
-LEC004,21,Science: Biology/Life,53726,43,89,pepperoni,dog,Yes,night owl,Yes
-LEC003,19,Data Science,53715,43.073051,-89.40123,none (just cheese),dog,No,early bird,Maybe
-LEC002,19,Business: Other|accounting,53703,43.38,-87.9,sausage,neither,No,night owl,Yes
-LEC002,18,Science: Biology/Life,53706,40.122,25.4988,sausage,dog,No,early bird,No
-LEC005,20,Engineering: Mechanical,53715,39.904202,116.407394,sausage,dog,No,night owl,Yes
-LEC001,19,Engineering: Mechanical,53703,-37.813629,144.963058,sausage,dog,Yes,night owl,Yes
-LEC005,21,Economics,53715,46.81,-71.21,pepperoni,cat,No,night owl,Yes
-LEC004,19,Engineering: Mechanical,53715,52.370216,4.895168,mushroom,dog,Yes,night owl,Yes
-LEC001,21,Mathematics/AMEP,53703,34.29006,108.932941,basil/spinach,dog,No,early bird,Yes
-LEC005,21,Engineering: Mechanical,53726,43.804801,-91.226075,pepperoni,dog,Yes,night owl,Yes
-LEC002,18,Data Science,53703,32.715736,-117.161087,none (just cheese),cat,Yes,night owl,Maybe
-LEC004,18,Engineering: Mechanical,53706,20.92674,-156.69386,pepperoni,dog,No,night owl,Maybe
-LEC003,18,Data Science,53706,47.606209,-122.332069,pepperoni,dog,No,early bird,Yes
-LEC005,21,Computer Science,53703,43.07515,-89.3958,sausage,neither,Yes,night owl,Yes
-LEC001,19,Engineering: Mechanical,53562,43.096851,-89.511528,sausage,dog,No,night owl,No
-LEC003,19,Engineering: Mechanical,53715,20.924325,-156.690102,sausage,cat,Yes,night owl,No
-LEC005,20,Data Science,53703,25.0838,77.3212,pepperoni,dog,No,night owl,Maybe
-LEC003,21,Business: Actuarial,53715,43.073051,-89.40123,pineapple,cat,Yes,night owl,Yes
-LEC001,,Computer Science,53715,31.469279,119.765621,pepperoni,dog,No,night owl,Maybe
-LEC005,19,Engineering: Mechanical,53715,43.769562,11.255814,basil/spinach,neither,No,early bird,No
-LEC001,21,Science: Chemistry,53715,38.892059,-77.019913,pepperoni,neither,No,night owl,Yes
-LEC002,19,Business: Finance,53715,42.360081,-71.058884,mushroom,dog,Yes,night owl,Yes
-LEC001,18,Data Science,53703,24.713552,46.675297,none (just cheese),neither,No,night owl,Yes
-LEC003,19,Business: Actuarial,53715,60.391262,5.322054,pepperoni,dog,No,early bird,No
-LEC003,19,Data Science,53715,23.697809,120.960518,pepperoni,cat,No,night owl,Yes
-LEC003,18,Data Science,53706,40.712776,74.005974,pineapple,dog,Yes,early bird,No
-LEC004,19,Engineering: Mechanical,53703,45.126887,-94.528067,sausage,dog,No,night owl,Maybe
-LEC002,21,Science: Biology/Life,53715,48.208176,16.373819,Other,dog,Yes,night owl,No
-LEC006,18,Engineering: Mechanical,53706,44.0628,-121.30451,pepperoni,dog,No,night owl,Yes
-LEC003,21,Statistics,53703,31.230391,121.473701,pineapple,cat,Yes,night owl,Yes
-LEC005,21,Economics,53703,47.62772,-122.51368,macaroni/pasta,cat,No,no preference,No
-LEC003,19,Engineering: Mechanical,53715,65.68204,-18.090534,sausage,cat,No,no preference,No
-LEC004,21,Economics,53715,48.856613,2.352222,basil/spinach,dog,Yes,night owl,No
-LEC001,18,Engineering: Biomedical,53706,33.501324,-111.925278,pineapple,dog,Yes,early bird,No
-LEC005,18,Data Science,53706,14.77046,-91.183189,mushroom,cat,No,night owl,Maybe
-LEC002,18,Engineering: Industrial,53706,10.480594,-66.903603,mushroom,neither,No,night owl,Maybe
-LEC004,21,Engineering: Mechanical,53715,48.856613,2.352222,mushroom,cat,Yes,night owl,Yes
-LEC001,19,Science: Biology/Life,53706,20.788602,-156.003662,green pepper,dog,Yes,no preference,No
-LEC006,18,Data Science,53706,36.59239,-121.86875,pepperoni,cat,No,night owl,Maybe
-LEC002,,Engineering: Industrial,53705,47.6,-122.33,sausage,dog,No,early bird,No
-LEC001,18,Engineering: Mechanical,53703,23.885942,45.079163,Other,cat,No,night owl,Maybe
-LEC002,18,Engineering: Industrial,53532,47.606209,-122.332069,mushroom,dog,No,night owl,Maybe
-LEC002,17,Engineering: Biomedical,53706,39.5755,-106.100403,pepperoni,dog,Yes,night owl,Maybe
-LEC002,20,Data Science,53711,39.904202,116.407394,pepperoni,dog,No,night owl,Yes
-LEC001,19,Engineering: Industrial,53705,41.878113,-87.629799,tater tots,cat,No,night owl,No
-LEC004,19,Political Science,53703,55.679626,12.581921,pepperoni,dog,Yes,no preference,Maybe
-LEC005,18,Computer Science,53715,28.538336,-81.379234,pepperoni,dog,No,night owl,Maybe
-LEC004,29,Engineering: Mechanical,53704,50.064651,19.944981,sausage,dog,No,early bird,Maybe
-LEC005,18,Engineering: Other,53706,41.385063,2.173404,mushroom,cat,No,night owl,Yes
-LEC001,19,Engineering: Mechanical,53703,44.977753,-93.265015,Other,cat,Yes,early bird,No
-LEC001,32,Design Studies,53705,48.856613,2.352222,mushroom,dog,No,early bird,Yes
-LEC002,20,Engineering: Mechanical,53703,41.28347,-70.099449,pepperoni,dog,Yes,night owl,Yes
-LEC003,19,Engineering: Industrial,53715,41.73849,-71.30418,pepperoni,dog,No,night owl,Yes
-LEC001,18,Data Science,53706,43.073051,-89.40123,sausage,dog,No,early bird,Yes
-LEC001,19,Computer Science,53715,31.230391,121.473701,pineapple,cat,No,night owl,Yes
-LEC001,19,Data Science,53703,37.9838,23.7275,sausage,dog,Yes,no preference,Yes
-LEC005,20,Engineering: Biomedical,53703,47.497913,19.040236,Other,cat,Yes,night owl,No
-LEC004,18,Economics,53711,13.756331,100.501762,Other,dog,No,night owl,Maybe
-LEC002,18,Data Science,53706,3.864255,73.388672,pepperoni,dog,Yes,night owl,Maybe
-LEC006,18,Engineering: Mechanical,53706,32.715736,-117.161087,macaroni/pasta,dog,Yes,night owl,Yes
-LEC001,19,Business: Actuarial,53715,18.32431,64.941612,pepperoni,dog,No,no preference,Yes
-LEC001,22,Psychology,53711,43.055333,-89.425946,pineapple,dog,Yes,early bird,No
-LEC003,18,Computer Science,53706,40.744678,-73.758072,mushroom,cat,No,night owl,Maybe
-LEC006,18,Data Science,53715,38.9784,76.4922,mushroom,cat,No,early bird,Yes
-LEC004,20,Science: Other,53726,55.675758,12.56902,none (just cheese),cat,Yes,night owl,Yes
-LEC001,20,Science: Biology/Life,53715,40.713051,-74.007233,pineapple,cat,No,night owl,Maybe
-LEC004,18,Engineering: Industrial,53706,51.507351,-0.127758,pepperoni,dog,Yes,no preference,No
-LEC004,25,Computer Science,53703,38.736946,-9.142685,pepperoni,dog,No,night owl,Yes
-LEC002,18,Computer Science,53706,22.543097,114.057861,pepperoni,cat,No,no preference,Yes
-LEC004,25,Science: Chemistry,53703,37.566536,126.977966,Other,cat,Yes,night owl,Maybe
-LEC002,19,Engineering: Mechanical,53715,26.338,-81.775,pepperoni,dog,Yes,no preference,Maybe
-LEC005,19,Engineering: Mechanical,53715,33.448376,-112.074036,pepperoni,neither,Yes,early bird,No
-LEC005,19,Engineering: Mechanical,53703,43.073051,-89.40123,pepperoni,cat,No,no preference,Yes
-LEC001,19,Engineering: Mechanical,53705,26.647661,106.63015,mushroom,cat,No,night owl,No
-LEC003,18,Undecided,53706,43.2967,87.9876,pepperoni,dog,No,night owl,No
-LEC005,19,Science: Physics,53703,78.225,15.626,sausage,cat,No,early bird,No
-LEC002,,Science: Other|Environmetal Science,53703,52.973558,-9.425102,none (just cheese),dog,Yes,night owl,Maybe
-LEC006,19,Economics (Mathematical Emphasis),53715,37.774929,-122.419418,sausage,cat,Yes,night owl,Yes
-LEC002,20,Business: Finance,53703,40.7128,74.006,pineapple,dog,No,night owl,Yes
-LEC001,21,Science: Biology/Life,53703,44.794,-93.148,pepperoni,dog,No,night owl,No
-LEC002,19,Engineering: Mechanical,53706,36.17,-115.14,pepperoni,cat,No,night owl,Maybe
-LEC001,18,Engineering: Biomedical,53706,21.161907,-86.851524,none (just cheese),dog,No,early bird,Maybe
-LEC001,18,Computer Science,53715,48.856613,2.352222,pineapple,neither,Yes,no preference,No
-LEC004,19,Engineering: Mechanical,53715,48.137,11.576,green pepper,dog,No,early bird,No
-LEC001,20,Engineering: Biomedical,53703,43.07393,-89.38524,sausage,dog,No,night owl,Maybe
-LEC002,18,Science: Other,53706,35.6762,139.6503,Other,dog,No,no preference,Yes
-LEC004,19,Computer Science,53703,41.902782,12.496365,none (just cheese),neither,Yes,night owl,No
-LEC001,20,Science: Other|Atmospheric and Oceanic Sciences (AOS),53711,49.299171,19.94902,pepperoni,dog,No,night owl,Maybe
-LEC002,18,Data Science,53706,41.380898,2.12282,pepperoni,dog,No,night owl,Maybe
-LEC006,18,Data Science,53706,48.257919,4.03073,mushroom,cat,Yes,early bird,No
-LEC005,19,Engineering: Mechanical,53715,35.0844,106.6504,pineapple,dog,Yes,early bird,Yes
-LEC002,23,Economics,53703,121,5,pepperoni,neither,No,no preference,Maybe
-LEC004,18,Business: Actuarial,53706,21.306944,-157.858337,pineapple,dog,Yes,night owl,Maybe
-LEC005,18,Economics,53706,43,-87.9,pepperoni,dog,Yes,early bird,Maybe
-LEC005,23,Business: Other|Business Analytics,53703,31.230391,121.473701,pineapple,cat,Yes,night owl,Maybe
-LEC002,22,Psychology,53703,25.032969,121.565414,mushroom,dog,No,no preference,Yes
-LEC005,18,Computer Science,53706,43.0722,89.4008,sausage,cat,No,night owl,Yes
-LEC006,18,Data Science,53706,52.370216,4.895168,mushroom,dog,Yes,night owl,Maybe
-LEC004,20,Data Science,53703,35.726212,-83.491226,pepperoni,cat,No,early bird,Yes
-LEC001,18,Computer Science,53703,27,153,mushroom,cat,No,early bird,Yes
-LEC005,18,Data Science,53706,56.117017,-3.879547,pineapple,dog,Yes,night owl,Yes
-LEC001,20,Engineering: Biomedical,53715,45.983964,9.262161,sausage,dog,No,night owl,No
-LEC005,21,Psychology,53703,43.038902,-87.906471,macaroni/pasta,dog,Yes,night owl,Yes
-LEC002,18,Engineering: Mechanical,53706,41.38879,2.15084,sausage,dog,Yes,no preference,Maybe
-LEC003,18,Data Science,53706,47.48,-122.28,basil/spinach,dog,No,no preference,Maybe
-LEC004,21,Data Science,53703,34.746613,113.625328,green pepper,neither,Yes,no preference,No
-LEC005,21,Data Science,53703,38.240946,-85.757571,pepperoni,dog,No,no preference,Yes
-LEC005,19,Engineering: Mechanical,53703,43.07291,-89.39439,sausage,dog,No,night owl,Maybe
-LEC005,19,Engineering: Mechanical,53715,56.373482,-3.84306,none (just cheese),dog,No,early bird,Yes
-LEC005,19,Data Science,53703,41.381717,2.177925,pepperoni,dog,Yes,night owl,Yes
-LEC005,19,Engineering: Mechanical,53714,43.089199,87.8876,pepperoni,dog,No,night owl,Yes
-LEC005,19,Engineering: Other,53590,38.4,11.2,pepperoni,dog,Yes,early bird,No
-LEC005,19,Engineering: Mechanical,53715,25.761681,-80.191788,pepperoni,dog,Yes,night owl,No
-LEC005,19,Engineering: Mechanical,53703,44.5133,88.0133,mushroom,dog,Yes,night owl,Maybe
-LEC002,,Computer Science,53706,41.8781,87.6298,pepperoni,dog,No,night owl,Maybe
-LEC005,19,Business: Finance,53703,38.98378,-77.20871,none (just cheese),dog,Yes,night owl,Yes
-LEC005,18,Business: Finance,53703,22.9068,43.1729,pepperoni,dog,No,night owl,Yes
-LEC005,19,Engineering: Mechanical,53715,43.073051,-89.40123,pepperoni,dog,No,early bird,No
-LEC004,23,Economics,53703,43.083321,-89.372475,mushroom,dog,Yes,early bird,No
-LEC002,17,Business: Actuarial,53715,34.746613,113.625328,sausage,neither,Yes,night owl,Maybe
-LEC005,18,Engineering: Biomedical,53715,46.58276,7.08058,pepperoni,dog,No,early bird,No
-LEC001,20,Statistics,53715,39.904202,116.407394,mushroom,dog,Yes,early bird,No
-LEC002,18,Computer Science,53706,35.96691,-75.627823,sausage,dog,No,early bird,Yes
-LEC005,21,Mathematics/AMEP,53703,13.756331,100.501762,pepperoni,dog,No,night owl,Yes
-LEC005,20,Engineering: Biomedical,53715,28.538336,-81.379234,sausage,cat,No,night owl,Maybe
-LEC002,19,Engineering: Mechanical,53703,44.822783,-93.370743,sausage,dog,Yes,early bird,No
-LEC005,19,Engineering: Mechanical,53715,42.15,-87.96,pepperoni,dog,No,night owl,Yes
-LEC005,20,Journalism,53715,41.3874,2.1686,basil/spinach,dog,Yes,early bird,Maybe
-LEC001,19,Engineering: Mechanical,53703,42.864552,-88.333199,pepperoni,dog,No,early bird,Maybe
-LEC005,17,Data Science,53706,40.7128,74.006,macaroni/pasta,dog,No,night owl,Yes
-LEC005,19,Science: Other|Politcal Science,53703,41.878113,-87.629799,pepperoni,dog,Yes,night owl,No
-LEC002,20,Business: Finance,53703,40.7831,73.9712,sausage,dog,Yes,night owl,No
-LEC004,20,Data Science,53703,43,87.9,none (just cheese),dog,No,night owl,Yes
-LEC001,18,Data Science,53706,38.900497,-77.007507,pineapple,dog,No,night owl,Maybe
-LEC005,18,Engineering: Industrial,53706,45.440845,12.315515,sausage,dog,No,night owl,Maybe
-LEC002,19,Data Science,53715,25.73403,-80.24697,pepperoni,dog,Yes,night owl,Yes
-LEC005,18,Political Science,53706,42.360081,-71.058884,macaroni/pasta,dog,Yes,night owl,Yes
-LEC002,20,Economics,53703,41.878113,-87.629799,pepperoni,dog,Yes,no preference,Maybe
-LEC004,18,Engineering: Mechanical,55088,48.135124,11.581981,pepperoni,dog,Yes,no preference,No
-LEC002,23,Business: Information Systems,53703,37.566536,126.977966,sausage,dog,No,night owl,Maybe
-LEC005,17,Data Science,53703,49.2827,123.1207,sausage,dog,Yes,night owl,Yes
-LEC005,,Statistics,53726,40.712776,-74.005974,Other,dog,Yes,no preference,Yes
-LEC001,18,Science: Biology/Life,53706,48.856613,2.352222,pepperoni,cat,Yes,early bird,No
-LEC005,32,Communication Sciences and Disorder,53705,37.566536,126.977966,pineapple,dog,Yes,no preference,Yes
-LEC001,18,Data Science,53706,41.878113,-87.629799,macaroni/pasta,dog,No,night owl,Yes
-LEC002,17,Business: Information Systems,53706,-6.17511,106.865036,sausage,neither,No,no preference,Maybe
-LEC002,25,Science: Other|Geoscience,53711,46.947975,7.447447,mushroom,cat,No,no preference,Yes
-LEC002,20,Economics,53703,46.7867,92.1005,macaroni/pasta,neither,Yes,early bird,No
-LEC002,21,Business: Other|Marketing,53703,20.878332,-156.682495,basil/spinach,dog,No,night owl,Yes
-LEC001,19,Statistics,53703,52.370216,4.895168,sausage,dog,No,night owl,Maybe
-LEC005,20,Engineering: Biomedical,53711,35.689487,139.691711,basil/spinach,dog,No,night owl,Yes
-LEC005,22,Science: Other|Atmospheric and oceanic science,53703,26.1224,80.1373,pepperoni,dog,No,early bird,No
-LEC001,18,Engineering: Mechanical,53726,21.306944,-157.858337,sausage,dog,No,night owl,Yes
-LEC005,21,Business: Finance,53703,43.11339,-89.37726,sausage,dog,No,night owl,Yes
-LEC001,,Business: Other,53703,22.396427,114.109497,Other,dog,No,early bird,Maybe
-LEC004,19,Science: Biology/Life,53706,41.2,96,pepperoni,cat,No,early bird,No
-LEC004,18,Engineering: Industrial,53706,49.74609,7.4609,pepperoni,cat,No,early bird,Yes
-LEC004,20,Science: Other|Environmental Science,53715,43,-89,mushroom,dog,Yes,night owl,Maybe
-LEC001,18,Business: Finance,53706,39.7392,104.9903,pepperoni,dog,No,early bird,No
-LEC002,,Computer Science,53706,41.67566,-86.28645,pineapple,cat,No,no preference,Maybe
-LEC002,18,Business: Other,53706,33.88509,-118.409714,green pepper,dog,Yes,night owl,No
-LEC001,20,Engineering: Biomedical,53711,41.8781,87.6298,pepperoni,dog,No,night owl,Yes
-LEC002,20,Data Science,53715,10.97285,106.477707,mushroom,dog,No,no preference,Maybe
-LEC002,20,Computer Science,53703,36.16156,-75.752441,pepperoni,dog,Yes,no preference,Yes
-LEC002,20,Business: Other|Marketing,53703,35.689487,139.691711,pepperoni,dog,Yes,night owl,Yes
-LEC002,18,Engineering: Other|Engineering Mechanics,53706,35.689487,139.691711,mushroom,cat,No,night owl,Maybe
-LEC002,21,Economics (Mathematical Emphasis),53703,46.25872,-91.745583,sausage,dog,Yes,no preference,Yes
-LEC002,19,Mathematics,53703,39.904202,116.407394,tater tots,cat,No,night owl,Yes
-LEC002,18,Data Science,53703,40.706067,-74.030063,pepperoni,dog,No,night owl,Yes
-LEC002,19,Pre-Business,53703,39.60502,-106.51641,pepperoni,dog,Yes,early bird,No
-LEC002,20,Mathematics/AMEP,53703,35.106766,-106.629181,green pepper,cat,No,night owl,Yes
-LEC003,20,Science: Physics,53715,64.963051,-19.020836,mushroom,dog,No,night owl,Yes
-LEC002,20,Business: Finance,53703,31.298973,120.585289,pineapple,cat,Yes,night owl,No
-LEC002,18,Economics,53706,48.856613,2.352222,basil/spinach,dog,No,night owl,Maybe
-LEC001,21,Data Science,53703,40.712776,-74.005974,sausage,dog,No,night owl,Yes
-LEC002,19,Engineering: Industrial,53715,45.914,-89.255,sausage,dog,Yes,early bird,Yes
-LEC002,19,Computer Science,53703,20,110,pineapple,cat,No,night owl,Maybe
-LEC002,19,Engineering: Mechanical,53726,41.878113,-87.629799,basil/spinach,dog,No,early bird,Yes
-LEC005,19,Computer Science,53715,48.8566,2.3522,sausage,dog,No,night owl,Maybe
-LEC002,19,Industrial Engineering,53703,48.856613,2.352222,basil/spinach,dog,No,early bird,Yes
-LEC002,18,Data Science,53706,43.073051,-89.40123,pepperoni,dog,Yes,night owl,Yes
-LEC002,20,Statistics,53703,31.224361,121.46917,mushroom,dog,No,no preference,Maybe
-LEC002,18,Computer Science,53706,35.689487,139.691711,green pepper,dog,No,night owl,Yes
-LEC002,18,Computer Science,53706,25.03841,121.563698,pineapple,dog,No,night owl,Yes
-LEC002,19,Engineering: Mechanical,53715,43.06827,-89.40263,sausage,dog,No,night owl,No
-LEC002,18,Engineering: Mechanical,53703,43,89.4,pepperoni,cat,No,no preference,Maybe
-LEC002,,Mechanical Engineering,53703,41.8781,87.6298,Other,dog,Yes,night owl,Yes
-LEC002,26,Science: Other,57075,42.76093,-89.9589,Other,dog,Yes,early bird,No
-LEC002,21,Science: Other|Environmental science,53714,47.606209,-122.332069,pepperoni,dog,Yes,early bird,Yes
-LEC002,18,Data Science,53706,35.69,139.69,pineapple,cat,No,night owl,Yes
-LEC002,18,Computer Science,53706,42.807091,-86.01886,none (just cheese),cat,Yes,early bird,Yes
-LEC002,19,Engineering: Mechanical,53703,45.892099,8.997803,green pepper,dog,No,night owl,Yes
-LEC002,20,Computer Science,53715,40.755645,-74.034119,sausage,dog,Yes,night owl,Yes
-LEC001,18,Engineering: Mechanical,53066,43.073051,-89.40123,pepperoni,dog,No,night owl,Yes
-LEC002,18,Data Science,53706,21.306944,-157.858337,pineapple,dog,No,night owl,No
-LEC002,18,Engineering: Industrial,53706,32.0853,34.781769,pepperoni,dog,No,night owl,Maybe
-LEC002,19,Engineering: Mechanical,53703,46.786671,-92.100487,sausage,dog,No,early bird,No
-LEC002,19,Engineering: Mechanical,53715,42.590519,-88.435287,pepperoni,dog,No,early bird,No
-LEC002,23,Data Science,53703,37,127,pineapple,dog,No,night owl,Yes
-LEC002,20,Data Science,53703,43.06875,-89.39434,pepperoni,dog,Yes,no preference,Maybe
-LEC002,20,Engineering: Mechanical,53703,41.499321,-81.694359,pepperoni,dog,Yes,night owl,Maybe
-LEC002,21,Economics,53703,38.969021,-0.18516,sausage,dog,Yes,no preference,No
-LEC002,20,Economics,53703,50.85,4.35,pepperoni,dog,No,no preference,Yes
-LEC002,19,Data Science,53715,36.39619,10.61412,none (just cheese),cat,No,no preference,Yes
-LEC002,20,Engineering: Mechanical,53711,43.073051,-89.40123,green pepper,dog,Yes,night owl,No
-LEC002,30,Life Sciences Communication,53562,52.399448,0.25979,basil/spinach,cat,Yes,night owl,Yes
-LEC002,20,Business: Finance,53703,41.878,-87.629799,pepperoni,dog,No,no preference,Yes
-LEC002,18,Computer Science,53706,31.2304,121.4737,pepperoni,cat,No,night owl,Maybe
-LEC005,22,Economics,53711,48.135124,11.581981,pepperoni,cat,Yes,no preference,Yes
-LEC002,19,Engineering: Mechanical,53711,51.5,0.1276,pepperoni,dog,No,night owl,No
-LEC001,18,Computer Science,53703,31.298973,120.585289,pineapple,neither,No,night owl,No
-LEC001,19,Computer Science,53703,37,-97,macaroni/pasta,cat,No,no preference,Maybe
-LEC002,19,International Studies,53703,8.25115,34.588348,none (just cheese),dog,Yes,early bird,Maybe
-LEC001,19,Engineering: Mechanical,53703,43.038902,-87.906471,pineapple,cat,No,night owl,Yes
-LEC001,19,Science: Other|Atmospheric and Oceanic Sciences,53703,48.856613,2.352222,pepperoni,dog,Yes,night owl,Yes
-LEC004,20,Data Science,53703,41.878113,-87.629799,green pepper,dog,No,early bird,Yes
-LEC004,18,Undecided,53706,39.3823,87.2971,sausage,dog,Yes,early bird,No
-LEC004,21,Data Science,53703,31.230391,121.473701,mushroom,cat,No,night owl,Maybe
-LEC001,18,Data Science,53706,32.776474,-79.931053,none (just cheese),dog,No,early bird,Yes
-LEC006,18,Science: Physics,53706,43.073051,-89.40123,sausage,dog,No,night owl,Yes
-LEC001,19,Economics,53703,35.689487,139.691711,pineapple,dog,Yes,night owl,Yes
-LEC004,18,Data Science,53715,50.8,-1.085,Other,dog,No,night owl,Maybe
-LEC002,21,Languages,53703,37.389091,-5.984459,mushroom,cat,No,early bird,No
-LEC001,19,Rehabilitation Psychology,53706,36.204823,138.25293,pineapple,cat,No,no preference,Maybe
-LEC006,18,Data Science,53705,37.5741,122.3794,pepperoni,dog,Yes,night owl,Yes
-LEC004,18,Undecided,53706,26.452,-81.9481,pepperoni,dog,Yes,night owl,Yes
-LEC002,19,Business: Actuarial,53703,37.774929,-122.419418,pineapple,dog,No,early bird,No
-LEC005,18,Undecided,53706,55.676098,12.568337,pepperoni,dog,Yes,night owl,No
-LEC001,19,Engineering: Mechanical,53703,43.073051,-89.40123,pepperoni,dog,Yes,night owl,Yes
-LEC002,18,Statistics,53706,40.713051,-74.007233,none (just cheese),dog,No,night owl,Maybe
-LEC003,21,Languages,53511,39.952583,-75.165222,pepperoni,dog,No,night owl,Yes
-LEC002,18,Computer Science,53706,12.523579,-70.03355,pineapple,dog,No,night owl,Yes
-LEC004,,Engineering: Biomedical,53715,41.878113,-87.629799,pepperoni,dog,Yes,night owl,No
-LEC001,,Data Science,53701,40.37336,88.231483,pepperoni,dog,Yes,night owl,No
-LEC001,19,Data Science,53703,51.5072,0.1276,pepperoni,dog,Yes,no preference,No
-LEC002,18,Data Science,53706,47.987289,0.22367,none (just cheese),dog,Yes,night owl,Maybe
-LEC002,19,Business: Actuarial,53715,45.17963,-87.150009,sausage,dog,Yes,no preference,No
-LEC005,21,Science: Biology/Life,53703,21.23556,-86.73142,pepperoni,dog,Yes,night owl,Yes
-LEC004,18,Engineering: Industrial,53706,43.073051,-89.40123,sausage,dog,No,night owl,Yes
-LEC001,21,Science: Biology/Life,53715,41.878113,-87.629799,green pepper,cat,No,night owl,Yes
-LEC001,20,Engineering: Biomedical,53703,48.8566,2.3522,mushroom,cat,Yes,night owl,Maybe
-LEC005,19,Engineering: Mechanical,53703,49.28273,-123.120735,basil/spinach,dog,No,night owl,Yes
-LEC001,19,Data Science,53706,37.23082,-107.59529,basil/spinach,dog,No,no preference,Maybe
-LEC001,19,Business: Finance,53703,26.20047,127.728577,mushroom,dog,No,night owl,Maybe
-LEC006,18,Statistics,53706,32.060253,118.796875,pineapple,cat,Yes,early bird,Maybe
-LEC002,20,Business: Information Systems,53706,52.520008,13.404954,none (just cheese),dog,No,early bird,Yes
-LEC006,18,Undecided,53706,43.038902,-87.906471,sausage,dog,No,night owl,Yes
-LEC002,20,Accounting,53703,32.79649,-117.192123,mushroom,dog,No,no preference,Yes
-LEC006,19,Statistics,53715,21.315603,-157.858093,pepperoni,cat,No,night owl,No
-LEC004,20,Science: Biology/Life,53706,13.756331,100.501762,pineapple,neither,No,night owl,Yes
-LEC004,20,Business: Other,53715,42.818878,-89.494115,pepperoni,dog,No,night owl,Yes
-LEC001,19,Engineering: Mechanical,53703,44.9778,93.265,pepperoni,dog,Yes,night owl,Maybe
-LEC004,18,Engineering: Industrial,53706,41.3874,2.1686,none (just cheese),dog,No,night owl,Maybe
-LEC001,37,Engineering: Other|Civil- Intelligent Transportation System,53705,23.810331,90.412521,pineapple,neither,Yes,early bird,Yes
-LEC001,19,Science: Physics,53703,42.696842,-89.026932,sausage,cat,No,night owl,Yes
-LEC006,19,Data Science,53715,53.266479,-9.052602,macaroni/pasta,dog,No,no preference,Yes
-LEC001,19,Data Science,53703,45.19356,-87.118767,pepperoni,dog,Yes,early bird,Maybe
-LEC005,18,Engineering: Industrial,53715,21.306944,-157.858337,none (just cheese),dog,Yes,night owl,Maybe
-LEC004,19,Computer Science,53703,40.678177,-73.94416,Other,cat,No,night owl,Maybe
-LEC005,18,Science: Biology/Life,53706,44.513317,-88.013298,pepperoni,dog,Yes,night owl,No
-LEC001,19,Engineering: Mechanical,53703,40.712776,-74.005974,none (just cheese),dog,Yes,early bird,Maybe
-LEC002,22,Economics,53703,37.6,127,pineapple,neither,Yes,night owl,Maybe
-LEC004,20,Engineering: Industrial,53703,39.359772,-111.584167,pepperoni,dog,Yes,early bird,Maybe
-LEC001,19,Data Science,53706,31.298973,120.585289,mushroom,cat,No,night owl,Yes
-LEC001,20,Computer Science,53715,43.073051,-89.40123,none (just cheese),dog,No,night owl,Maybe
-LEC001,25,Data Science,53703,37.566536,126.977966,pineapple,dog,Yes,night owl,No
-LEC005,19,Data Science,53706,36.169941,-115.139832,pepperoni,dog,Yes,night owl,Yes
-LEC001,19,Engineering: Mechanical,53703,44.834209,87.376266,sausage,dog,Yes,no preference,Yes
-LEC005,20,Engineering: Mechanical,53703,43.17854,-89.163391,sausage,dog,Yes,night owl,Maybe
-LEC004,19,Engineering: Industrial,53703,41.93101,-87.64987,pepperoni,neither,No,early bird,No
-LEC003,19,Engineering: Industrial,53703,11.89,-85,pepperoni,dog,Yes,night owl,Maybe
-LEC003,19,Engineering: Mechanical,53715,33.873417,-115.900993,pepperoni,dog,No,early bird,No
-LEC001,22,Economics,53703,42.360081,-71.058884,pepperoni,dog,No,no preference,Maybe
-LEC001,18,Data Science,53706,34.04018,-118.48849,pepperoni,dog,Yes,night owl,Yes
-LEC002,42069,Data Science,53704,43,-89,none (just cheese),neither,No,no preference,No
-LEC004,20,Business: Finance,53715,38.71049,-75.07657,sausage,dog,No,early bird,No
-LEC004,21,Engineering: Mechanical,53715,43.073051,-89.40123,Other,dog,Yes,early bird,No
-LEC004,18,Engineering: Industrial,53706,44.261799,-88.407249,sausage,dog,Yes,night owl,No
-LEC004,26,Science: Other|Animal and Dairy Science,53705,53.270668,-9.05679,pepperoni,dog,No,early bird,Yes
-LEC005,20,Data Science,53715,43.355099,11.02956,sausage,dog,No,early bird,Maybe
-LEC003,19,Engineering: Mechanical,53715,45.40857,-91.73542,sausage,dog,Yes,no preference,No
-LEC004,22,Engineering: Mechanical,53726,55.864239,-4.251806,pepperoni,dog,Yes,night owl,Yes
-LEC001,18,Engineering: Mechanical,53706,50.808712,-0.1604,pepperoni,dog,Yes,night owl,Maybe
-LEC004,19,Engineering: Mechanical,53703,13.35433,103.77549,none (just cheese),dog,No,no preference,Maybe
-LEC005,24,Mathematics/AMEP,53705,40.7,-74,pineapple,cat,No,early bird,Maybe
-LEC001,19,Interior Architecture,53532,27.683536,-82.736092,mushroom,cat,Yes,no preference,Yes
-LEC001,19,Science: Chemistry,53715,40.7,-74,sausage,dog,No,night owl,Maybe
-LEC001,20,Engineering: Biomedical,53703,-33.86882,151.20929,pepperoni,dog,No,no preference,Maybe
-LEC001,20,Engineering: Industrial,53715,26.614149,-81.825768,pepperoni,dog,No,night owl,No
-LEC001,19,Engineering: Biomedical,53706,45.440845,12.315515,none (just cheese),dog,Yes,night owl,Yes
-LEC001,19,Data Science,53726,43.0766,89.4125,none (just cheese),cat,No,night owl,No
-LEC001,20,Engineering: Biomedical,53711,33.684566,-117.826508,pineapple,dog,Yes,early bird,Maybe
-LEC001,21,Statistics,26617,22.396427,114.109497,pineapple,dog,Yes,night owl,Maybe
-LEC001,18,Data Science,53706,-33.86882,151.20929,pepperoni,dog,Yes,night owl,No
-LEC001,21,Economics,53703,1.53897,103.58007,pineapple,neither,Yes,night owl,Yes
-LEC001,18,Data Science,53558,41.877541,-88.066727,mushroom,dog,No,night owl,Maybe
-LEC001,17,Computer Science,53703,25.204849,55.270782,pepperoni,dog,Yes,night owl,Yes
-LEC001,19,Engineering: Mechanical,53715,19.7,-155,pineapple,dog,Yes,early bird,Yes
-LEC001,19,Data Science,53703,41.878113,-87.629799,none (just cheese),cat,Yes,night owl,Yes
-LEC001,18,Science: Biology/Life,53715,39.904202,116.407394,basil/spinach,dog,Yes,night owl,Maybe
-LEC001,20,Science: Physics,53711,43.038902,-87.906471,pepperoni,dog,No,no preference,Yes
-LEC001,18,Engineering: Mechanical,53706,41.902782,12.496366,pepperoni,neither,Yes,night owl,Yes
-LEC001,18,Data Science,53706,47.60323,-122.330276,Other,dog,No,night owl,Yes
-LEC001,19,Economics,53706,40.7,74,none (just cheese),dog,Yes,night owl,Yes
-LEC001,19,Business: Finance,53703,34.052235,-118.243683,mushroom,dog,Yes,early bird,Maybe
-LEC001,20,Science: Other|Atmospheric & Oceanic Sciences,53711,40.412776,-74.005974,pepperoni,neither,No,early bird,Yes
-LEC001,19,Computer Science,53706,37.774929,-122.419418,none (just cheese),cat,No,early bird,Yes
-LEC001,20,Engineering: Mechanical,53703,44.78441,-93.17308,pepperoni,dog,Yes,no preference,Yes
-LEC001,22,Engineering: Other,53726,39.48214,-106.048691,pineapple,cat,No,no preference,Maybe
-LEC001,21,Computer Science,53703,33.68,-117.82,basil/spinach,cat,No,early bird,No
-LEC001,17,Computer Science,53706,25.204849,55.270782,pepperoni,neither,Yes,no preference,Maybe
-LEC001,18,Engineering: Industrial,53706,41.917519,-87.694771,basil/spinach,dog,Yes,night owl,Yes
-LEC001,18,Engineering: Biomedical,53706,42.361145,-71.057083,macaroni/pasta,dog,No,night owl,Yes
-LEC001,,Engineering: Biomedical,53703,43.073929,-89.385239,basil/spinach,dog,No,early bird,No
-LEC001,18,Economics,53706,30.20241,120.226822,Other,neither,Yes,early bird,No
-LEC001,20,Engineering: Biomedical,53703,41.198496,0.773436,pepperoni,dog,No,night owl,Yes
-LEC001,19,Engineering: Mechanical,53703,39.739235,-104.99025,pepperoni,dog,Yes,no preference,Maybe
-LEC001,20,Science: Chemistry,53703,32.16761,120.012444,pepperoni,neither,No,night owl,Maybe
-LEC001,19,Data Science,53703,43.0722,89.4008,pineapple,dog,Yes,night owl,Yes
-LEC001,18,Science: Biology/Life,53715,41.878113,-87.629799,sausage,dog,Yes,early bird,No
-LEC004,,Business: Information Systems,53715,42.360081,-71.058884,Other,dog,No,no preference,Maybe
-LEC001,21,Engineering: Biomedical,53703,44.513317,-88.013298,pepperoni,dog,No,night owl,No
-LEC001,20,Data Science,53132,43.073051,-89.40123,Other,cat,No,night owl,Maybe
-LEC001,18,Business: Actuarial,53706,48.856613,2.352222,sausage,dog,No,no preference,Maybe
-LEC001,20,Political Science,53715,48.135124,11.581981,sausage,cat,Yes,night owl,Yes
-LEC001,19,Engineering: Industrial,53703,41,-74,sausage,dog,Yes,no preference,No
-LEC001,20,Psychology,53703,43.083321,-89.372475,Other,neither,No,night owl,Yes
-LEC001,18,Computer Science and Statistics,53706,36.162663,-86.781601,mushroom,dog,Yes,early bird,Maybe
-LEC001,19,Engineering: Mechanical,53703,25.88,-80.16,pepperoni,dog,No,night owl,Yes
-LEC001,18,Computer Science,53703,46.947975,7.447447,sausage,cat,Yes,night owl,No
-LEC001,19,Business: Information Systems,53703,41.17555,73.64731,pepperoni,dog,No,night owl,Maybe
-LEC001,20,Political Science,53703,45.018269,-93.473892,sausage,dog,No,night owl,Maybe
-LEC001,,Business analytics,53705,45.50169,-73.567253,pineapple,cat,No,no preference,No
-LEC001,21,Science: Biology/Life,53726,32.060253,118.796875,mushroom,cat,No,night owl,No
-LEC001,19,Engineering: Mechanical,53706,35.806,-78.68483,none (just cheese),dog,No,night owl,Yes
-LEC005,20,Data Science,53726,31.230391,121.473701,none (just cheese),dog,Yes,no preference,Maybe
-LEC005,18,Engineering: Mechanical,53706,41.878113,-87.629799,Other,cat,No,night owl,Maybe
-LEC004,18,Statistics,53706,27.35741,-82.615471,none (just cheese),dog,Yes,early bird,No
-LEC002,20,Business: Finance,53715,35.726212,-83.491226,pepperoni,dog,Yes,no preference,Yes
-LEC002,18,Undecided,53706,43.769562,11.255814,pepperoni,dog,No,night owl,Yes
-LEC004,19,Business: Actuarial,53703,43.040433,-87.897423,sausage,cat,No,night owl,No
-LEC004,19,Engineering: Mechanical,5,25.034281,-77.396278,sausage,dog,Yes,no preference,Yes
-LEC001,,Engineering: Mechanical,53706,34.052235,-118.243683,Other,dog,Yes,night owl,Yes
-LEC003,18,Engineering: Industrial,53706,20.798363,-156.331924,none (just cheese),dog,Yes,early bird,No
-LEC002,19,Engineering: Biomedical,53703,51.1784,115.5708,pineapple,dog,Yes,night owl,No
-LEC005,19,Statistics,53703,43.05367,-88.44062,pepperoni,dog,Yes,night owl,No
-LEC004,18,Engineering: Industrial,53706,36.110168,-97.058571,none (just cheese),dog,No,early bird,Maybe
-LEC004,21,Computer Science,53703,43.07016,-89.39386,mushroom,cat,Yes,early bird,No
-LEC005,19,Data Science,53726,43.073051,-89.40123,pepperoni,dog,No,early bird,Yes
-LEC004,18,Data Science,53706,41.878113,-87.629799,macaroni/pasta,dog,Yes,early bird,Maybe
-LEC001,20,Business: Finance,53726,43.073051,-89.40123,pepperoni,dog,No,night owl,Maybe
-LEC001,18,Data Science,53706,43.038902,-87.906471,pineapple,dog,No,night owl,Maybe
-LEC001,24,Engineering: Other,53718,46.77954,-90.78511,pineapple,dog,Yes,night owl,No
-LEC001,18,Statistics,53706,22.57,88.36,pineapple,dog,Yes,night owl,Maybe
-LEC004,20,Computer Science,53715,35.016956,-224.24911,pepperoni,dog,No,night owl,Yes
-LEC001,20,Science: Biology/Life,53715,47.606209,-122.332069,none (just cheese),dog,Yes,night owl,Maybe
-LEC004,18,Engineering: Industrial,53706,21.28482,-157.83245,pineapple,dog,No,night owl,Yes
-LEC001,20,Engineering: Biomedical,53715,40.63,14.6,none (just cheese),dog,No,early bird,Maybe
-LEC004,20,Legal Studies,53703,20.798363,-156.331924,green pepper,dog,No,early bird,No
-LEC002,18,Computer Science,53706,32.060253,118.796875,sausage,dog,Yes,early bird,Maybe
-LEC002,18,Journalism,53706,31,103,none (just cheese),cat,No,night owl,Yes
-LEC004,,Computer Science,53706,147,32.5,pineapple,cat,No,early bird,Maybe
-LEC004,18,Engineering: Biomedical,53701,43.038902,-87.906471,pepperoni,dog,No,night owl,No
-LEC004,18,Engineering: Mechanical,20815,39.640259,-106.370872,sausage,dog,No,night owl,No
-LEC004,19,Engineering: Mechanical,53715,41,12,pepperoni,dog,No,no preference,Maybe
-LEC004,20,Journalism: Strategic Comm./Advertising,53703,43.073051,-89.40123,Other,dog,Yes,night owl,Yes
-LEC004,,Engineering: Mechanical,53715,43,-87.9,pepperoni,cat,Yes,early bird,Maybe
-LEC004,19,Engineering: Biomedical,53706,32.715736,117.161087,pepperoni,dog,Yes,no preference,Yes
-LEC004,18,Data Science,53706,43.073051,-89.40123,pepperoni,dog,No,night owl,Yes
-LEC004,18,History,53706,42.19381,-73.362877,none (just cheese),cat,Yes,night owl,Yes
-LEC002,19,Engineering: Mechanical,53703,39.290386,-76.61219,mushroom,dog,No,no preference,No
-LEC002,19,Engineering: Mechanical,53726,40.416775,-3.70379,macaroni/pasta,dog,No,early bird,Maybe
-LEC005,19,Engineering: Mechanical,53726,46.870899,-89.313789,sausage,dog,Yes,night owl,Maybe
-LEC004,19,Science: Biology/Life,53151,41.878113,-87.629799,sausage,dog,No,night owl,Yes
-LEC005,18,Data Science,53711,35.1796,129.0756,pepperoni,cat,Yes,night owl,Yes
-LEC004,18,Data Science,53706,37.568291,126.99778,pepperoni,dog,No,no preference,Maybe
-LEC005,17,Statistics,53706,31.23,121.47,sausage,cat,No,night owl,Maybe
-LEC003,19,Undecided,53715,43.041069,-87.909416,mushroom,dog,No,no preference,Maybe
-LEC005,19,Economics,53703,47.606209,-122.332069,pineapple,neither,No,no preference,Maybe
-LEC005,21,Science: Biology/Life,53726,40.76078,-111.891045,mushroom,dog,No,no preference,Yes
-LEC003,19,Engineering: Mechanical,53706,43,-88.27,Other,dog,No,night owl,Yes
-LEC003,20,Business: Other|Accounting,53726,43,-89,pepperoni,dog,Yes,early bird,Yes
-LEC005,18,Engineering: Other,53706,64.147209,-21.9424,pepperoni,dog,No,night owl,Yes
-LEC003,18,Data Science,53562,42.66544,21.165319,pepperoni,dog,No,night owl,Yes
-LEC005,22,Data Science,53711,39.738449,-104.984848,none (just cheese),dog,No,night owl,Yes
-LEC003,18,Engineering: Mechanical,53706,33.748997,-84.387985,mushroom,dog,No,night owl,Yes
-LEC004,19,Engineering: Mechanical,53717,41.2224,86.413,Other,dog,Yes,early bird,Maybe
-LEC003,19,Business: Actuarial,53706,39.299236,-76.609383,pineapple,dog,Yes,night owl,No
-LEC001,,Engineering: Mechanical,53703,32.776665,-96.796989,sausage,dog,No,night owl,Maybe
-LEC004,19,Engineering: Biomedical,53703,41.878113,-87.629799,pepperoni,dog,Yes,no preference,Yes
-LEC004,26,Master of Public Affairs,53715,48.118145,-123.43074,basil/spinach,dog,Yes,early bird,Yes
-LEC004,19,Engineering: Mechanical,53703,-12.12168,-45.013481,basil/spinach,dog,No,night owl,Yes
-LEC004,18,Data Science,53706,31.230391,121.473701,sausage,cat,No,night owl,No
-LEC005,21,Engineering: Industrial,53715,1.352083,103.819839,none (just cheese),neither,No,night owl,Yes
-LEC004,19,Engineering: Mechanical,53703,40.712776,-74.005974,sausage,dog,No,early bird,No
-LEC004,19,Engineering: Mechanical,53715,37.98381,23.727539,basil/spinach,dog,Yes,early bird,No
-LEC005,20,Business: Actuarial,53703,45.003288,-90.329788,sausage,dog,No,early bird,Maybe
-LEC005,20,Engineering: Mechanical,53703,43.073051,-89.40123,pepperoni,dog,Yes,early bird,No
-LEC001,21,Economics,53703,41.902782,12.496365,basil/spinach,dog,No,no preference,No
-LEC004,18,Engineering: Biomedical,53706,45.4894,93.2476,mushroom,cat,No,night owl,No
-LEC005,19,Data Science,53703,43.2708,89.7221,sausage,dog,Yes,night owl,No
-LEC003,,Engineering: Mechanical,53706,45.87128,-89.711632,pepperoni,neither,Yes,no preference,Yes
-LEC004,19,Engineering: Mechanical,53715,42.360081,-71.058884,pepperoni,dog,Yes,night owl,Maybe
-LEC004,18,Engineering: Mechanical,53706,45.056389,-92.960793,pepperoni,dog,No,night owl,Yes
-LEC003,,Computer Science,53703,43.07,-89.4,pepperoni,dog,Yes,no preference,Maybe
-LEC001,20,Business: Finance,53703,22.20315,-159.495651,Other,dog,Yes,no preference,No
-LEC005,19,Engineering: Mechanical,53703,44.74931,-92.80088,pineapple,dog,No,early bird,No
-LEC004,21,Business: Actuarial,53726,38.874341,-77.032013,pepperoni,dog,No,no preference,Yes
-LEC005,19,Engineering: Mechanical,53703,18.34791,-64.71424,basil/spinach,dog,No,night owl,No
-LEC004,18,Engineering: Mechanical,53703,27.5041,82.7145,sausage,dog,No,night owl,Maybe
-LEC005,19,Engineering: Biomedical,53706,36.462,25.375465,basil/spinach,dog,No,night owl,No
-LEC004,27,Environment & Resources,53703,37.389091,-5.984459,mushroom,dog,No,night owl,Maybe
-LEC004,19,Business: Actuarial,53726,32,-117,pepperoni,neither,Yes,night owl,Yes
-LEC005,20,Science: Physics,53703,46.2833,-89.73,pepperoni,dog,No,early bird,Maybe
-LEC003,19,Engineering: Industrial,53703,40.712776,-74.005974,basil/spinach,dog,Yes,night owl,No
-LEC003,18,Data Science,53706,40.712776,-74.005974,Other,dog,Yes,early bird,No
-LEC005,,Data Science,53703,43.073051,-89.40123,pepperoni,dog,No,night owl,No
-LEC004,21,Business: Actuarial,53703,39.19067,-106.819199,macaroni/pasta,cat,No,no preference,Maybe
-LEC006,18,Engineering: Industrial,53706,37.743042,-122.415642,green pepper,dog,Yes,no preference,No
-LEC003,20,Economics,53703,22.54,114.05,pineapple,dog,No,night owl,Yes
-LEC006,18,Data Science,53706,59.93428,30.335098,pineapple,dog,Yes,night owl,Maybe
-LEC004,19,Engineering: Mechanical,53715,45.10994,-87.209793,pepperoni,dog,Yes,early bird,No
-LEC002,20,Science: Biology/Life,53703,51.507351,-0.127758,pepperoni,dog,Yes,no preference,Yes
-LEC004,18,Environmental Studies,53703,42.360081,-71.058884,pineapple,cat,No,no preference,Maybe
-LEC004,19,Engineering: Mechanical,53715,45,-87,sausage,cat,Yes,no preference,Maybe
-LEC004,19,Engineering: Mechanical,53703,48.137,11.575,pepperoni,dog,Yes,night owl,Maybe
-LEC004,20,Engineering: Industrial,53711,48.856613,2.352222,sausage,cat,No,no preference,No
-LEC004,18,Science: Other,53706,48.410648,-114.338188,none (just cheese),dog,No,no preference,Maybe
-LEC004,18,Mathematics/AMEP,53706,24.585445,73.712479,pineapple,dog,Yes,night owl,Maybe
-LEC003,18,Data Science,53706,36.974117,-122.030792,pepperoni,cat,Yes,night owl,Yes
-LEC004,19,Computer Science,53715,40.79254,-98.70807,pepperoni,dog,Yes,night owl,No
-LEC005,19,Engineering: Mechanical,53711,30.572815,104.066803,pineapple,dog,No,night owl,Yes
-LEC001,21,Science: Chemistry,53715,3.139003,101.686852,pepperoni,neither,No,no preference,Maybe
-LEC006,18,Data Science,53706,40.46,-90.67,sausage,dog,No,night owl,No
-LEC004,20,Science: Other|Environmental Science,53715,43.073051,-89.40123,sausage,dog,No,night owl,Yes
-LEC004,20,Engineering: Biomedical,53715,30.328227,-86.136975,pepperoni,dog,Yes,no preference,Maybe
-LEC004,21,Science: Biology/Life,53703,41.385063,2.173404,macaroni/pasta,dog,No,night owl,Yes
-LEC003,18,Mathematics/AMEP,53706,42.99571,-90,sausage,dog,Yes,night owl,Yes
-LEC004,19,Engineering: Mechanical,53703,41.385063,2.173404,sausage,dog,Yes,night owl,Yes
-LEC001,,Engineering: Industrial,53706,40.7128,74.006,pepperoni,dog,No,early bird,Yes
-LEC005,18,Psychology,53706,9.167414,77.876747,mushroom,cat,No,early bird,No
-LEC003,19,Engineering: Industrial,53715,24.713552,46.675297,basil/spinach,neither,Yes,early bird,Maybe
-LEC001,18,Undecided,53706,44.8341,87.377,basil/spinach,dog,No,no preference,Yes
-LEC003,19,Engineering: Mechanical,53705,46.589146,-112.039108,none (just cheese),cat,No,night owl,Yes
-LEC001,20,Economics,53703,39.631506,118.143239,pineapple,dog,No,night owl,Maybe
\ No newline at end of file
+section,Lecture,Age,Primary major,Other Primary Major,Other majors,Zip Code,Latitude,Longitude,Pet owner,Pizza topping,Pet owner,Runner,Sleep habit,Procrastinator,Song
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,,,"53,706",22.5726,88.3639,No,pepperoni,dog,No,night owl,Yes,Island in the Sun - Harry Belafonte
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC001,19,Engineering: Mechanical,,,"53,703",44.5876,-71.9466,No,pepperoni,dog,No,night owl,Yes,No role modelz by J. Cole
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,.,.,"53,706",40.7128,-74.006,Maybe,none (just cheese),dog,No,night owl,Yes, biggest bird
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,22,Other (please provide details below).,Sociology,Information Science,"53,706",31.7725,-106.461,No,sausage,dog,Yes,night owl,Maybe,"""Just the Way You Are"" - Milky "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Business: Information Systems,,,"53,705",24.71,46.67,No,basil/spinach,neither,No,night owl,Maybe,No favorite to be honest
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Business: Actuarial,,,"53,703",43.0177,-88.0917,Maybe,sausage,dog,No,night owl,Maybe,congratulations by Mac miller
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Computer Science,N/A,N/A,"53,715",44.5133,88.0133,No,pineapple,dog,Yes,night owl,Yes,Bohemian Rhapsody
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,"53,706",35.6895,139.6917,No,sausage,dog,No,night owl,Yes,Panic! by Khantrast
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,,Business: Finance,,Health Promotion & Health Equity,"53,715",41.8818,-87.6298,No,pepperoni,dog,Yes,early bird,Yes,Dreams and Nightmare by Meek Mill
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Data Science,N/A,N/A,"53,703",48.8566,2.3522,Yes,sausage,dog,No,night owl,Yes,Landslide (Fleetwood Mac)
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,International Studies,Communication Arts,"53,715",48.8566,2.3522,No,sausage,dog,No,night owl,Yes,Nervous by John Legend
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,20,Business: Other,Marketing Major with Data Science and Sports Communication Certificates,,"53,703",33.5427,-117.7854,No,sausage,dog,Yes,night owl,Maybe,Mariella - Leon Bridges & Khruangbin
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Data Science,,,"53,703",31.2244,121.4692,Yes,pepperoni,cat,No,night owl,Yes,love me
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Computer Science,,,"53,715",41.3851,2.1734,Yes,none (just cheese),dog,No,night owl,Yes,Shotgun - George Ezra
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,22,Science: Biology/Life,,,"53,726",43,46,No,mushroom,cat,Yes,night owl,No,"blister in the sun
+
+ "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,,Data Science,,,"53,527",44.2561,-88.358,Yes,sausage,dog,No,night owl,Yes,"My favorite song is ""What if"" by Vin Jay"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Engineering: Mechanical,,,"53,703",40,-74,No,none (just cheese),dog,No,night owl,Yes,The way life goes 
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Personal Finance-Financial Planning,Economics,"53,703",43,-88,No,sausage,dog,No,night owl,Maybe,changes every week
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,21,Other (please provide details below).,"Economics
+
+ ",Certificate: Data Science,"53,703",55.6773,12.5895,No,pepperoni,dog,Yes,night owl,Maybe,Stairway to Heaven -Led Zeppelin
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Other,,,"53,703",52.3702,4.8952,Yes,pepperoni,dog,Yes,early bird,No,Kilby Girl
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Engineering: Mechanical,,,"53,706",42.36,-71.05,Maybe,pineapple,dog,Yes,early bird,No,"""Mozarts 7th"""
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Data Science,,economics,"53,706",48.8566,2.3522,Yes,mushroom,neither,Yes,no preference,No,robbery by juice world 
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,N/A,N/A,"98,607",47.6062,-122.3321,Maybe,sausage,cat,Yes,early bird,Maybe,Redlight by Swedish House Mafia & Sting
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC001,19,Computer Science,,Mathematics,"53,715",16.8552,-95.0444,Maybe,pepperoni,cat,Yes,no preference,Yes,ABBA - The Winner Takes it All
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Other (please provide details below).,Computer Science,"Data Science, PreMed","53,706",21.1619,-86.8515,Yes,pepperoni,cat,No,early bird,Maybe,Sting - Seven Days
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Business: Other,,,"53,703",43.0697,-89.3943,No,pineapple,dog,No,early bird,Maybe,James Arthur - Say you won't let go
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,22,Other (please provide details below).,Economics,,"53,715",37.5665,126.978,No,pepperoni,dog,No,night owl,Yes,goodie bag - still woozy
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Engineering: Biomedical,,,"53,706",18.3401,-67.2499,No,Other,dog,No,early bird,Yes,Pursuit of happiness- kid cud
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Engineering: Biomedical,,,"53,706",32.7555,-97.3308,Yes,pineapple,dog,Yes,night owl,Yes,One Republic-I Ain’t Worried
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Mathematics ,Economics,"53,719",43.0731,-89.4012,No,pineapple,cat,No,early bird,Maybe,The happy birthday song
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,21,Engineering: Biomedical,N/A,N/A,"53,715",49.051,7.4237,No,sausage,dog,No,night owl,Yes,Fight Night by the Migos
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Data Science,,Economics,"53,706",37.5683,126.9978,Yes,pineapple,cat,Yes,night owl,Maybe,Sing Alone - Skinny Brown
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Statistics,,Math,"53,703",-37.8,144.9,No,mushroom,dog,No,no preference,Maybe,Fancy-Twice
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,21,Science: Physics,,,"53,706",64.145,-21.94,Maybe,sausage,cat,No,early bird,Yes,Perfect by One Direction
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Science: Physics,,"Astrophysics, Math","53,715",28.5383,-81.3792,No,pepperoni,dog,No,no preference,Maybe,Lvl by A$AP Rocky
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Statistics,,,"53,703",51.5074,-0.1278,Maybe,none (just cheese),cat,No,night owl,Maybe,you belong with me
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Science: Biology/Life,,,"53,706",,-121.91,Maybe,macaroni/pasta,dog,No,night owl,Maybe,Pardon Me - Future Lil Yachty
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC002,19,Engineering: Mechanical,,,"53,706",37.7801,-122.4202,No,basil/spinach,dog,No,night owl,Yes,Wishes - Beach House
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Data Science,,,"53,715",46.6998,-92.0951,Yes,sausage,dog,No,night owl,Yes,Jimmy Crooks by drake
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,"53,706",13.0827,80.2707,No,pepperoni,cat,Yes,night owl,Yes,El Entierro de los gatos
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC001,20,Business: Finance,,I am planning on getting certificate in data science,"53,703",47.8095,13.055,Maybe,pepperoni,dog,No,night owl,Maybe,To many to pick one
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Engineering: Mechanical,,,"53,715",46.7208,92.1041,No,pepperoni,dog,No,night owl,Yes,Loom by Zach Bryan
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,"53,703",31.2304,121.4737,No,pepperoni,cat,No,night owl,Maybe,Sky Full of Stars by Coldplay
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,26,Business: Information Systems,,,"53,703",41.2384,-75.8799,No,mushroom,dog,Yes,early bird,No,Stay-  justin beiber
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Engineering: Industrial,,,"53,706",43.0389,-87.9065,No,none (just cheese),dog,No,night owl,Yes,Die in your arms by Justin Bieber
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Other (please provide details below).,Im very undecided right now,n/a,"53,706",41.9028,12.4964,No,pepperoni,dog,Yes,night owl,Yes,the lakes -Taylor Swift
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,22,Computer Science,,Mathmetics,"53,715",23,114,Maybe,Other,cat,No,night owl,Yes,Chinese song - Secret
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Science: Other,,,"53,706",40.7128,-74.006,No,pepperoni,cat,No,night owl,Maybe,Good To Me by Seventeen
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Computer Science,,Economics,"53,703",35.8714,128.6014,No,pineapple,dog,No,night owl,Yes,kim sa wol - key
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,21,Data Science,a,econ,"53,715",39.4148,-9.1407,Yes,pineapple,cat,No,night owl,Maybe,happy birthday
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,Economics,data science minor,"53,703",43.974,-89.8207,Yes,Other,dog,No,night owl,Yes,Afraid to feel - LF SYSTEM
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Computer Science,,,"53,706",51.4817,-0.1909,No,macaroni/pasta,neither,No,night owl,Maybe,Kwabs - Walk
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Business: Information Systems,,,"53,590",41.8781,-87.6298,No,pineapple,neither,No,night owl,Yes,Not any atm
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,N/A,N/A,"53,711",32.6939,-117.1905,No,Other,dog,Yes,no preference,Yes,"Depends on the mood, but as of now Lifestyle by Homixicde Gang"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Other (please provide details below).,I am a high school student taking this class so I don't have a major right now.,,"53,575",42.9258,-89.3839,No,pineapple,dog,Yes,early bird,Yes,"Hold On, We're Going Home"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,23,Engineering: Mechanical,Mechanical Engineering,,"53,705",30,120,Maybe,sausage,dog,Yes,night owl,Maybe,Let it go
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,21,Engineering: Mechanical,,,"53,715",30.2638,102.8055,Maybe,pineapple,neither,Yes,early bird,Maybe,Shivers
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Industrial,,,"53,706",32.0853,34.7818,No,macaroni/pasta,dog,Yes,early bird,No,your song Elton John 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Science: Physics,,Mathmatic,"53,715",55.6761,12.5683,Maybe,sausage,cat,Yes,night owl,Yes,Blueming
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Communication Arts,Computer science,"53,715",39.9042,116.4074,No,pineapple,dog,No,night owl,No,Cruel Summer
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC001,18,Other (please provide details below).,undecided,,"53,706",43.038,-87.9246,Maybe,pineapple,cat,No,night owl,Yes,guerrilla
+COMP SCI 319:LEC004,LEC001,24,Engineering: Other,ECE,,"53,715",39.9526,-75.1652,Maybe,mushroom,cat,No,night owl,Yes,My heart will go on
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,,Engineering: Other,,,"53,703",41.4764,-81.5535,No,Other,dog,No,night owl,Yes,Go flex by Post Malone
+COMP SCI 319:LEC003,LEC003,22,Engineering: Industrial,,,"53,711",40.5509,14.2429,No,basil/spinach,neither,Yes,night owl,No,You Know I'm No Good by Amy Winehouse
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Education,,"53,705",24.4798,118.0894,Maybe,mushroom,dog,No,night owl,Yes,I don't have a specific favorite song. My favorite song changes as time goes by.
+COMP SCI 319:LEC004,LEC004,24,Other (please provide details below).,Economics,None,"53,705",43.0731,-89.4012,No,pineapple,cat,No,night owl,Maybe,Breakfast in the park
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC001,20,Computer Science,-,Economics.,"53,706",52.52,13.405,Yes,mushroom,neither,No,no preference,Maybe,"Sergei Rachmaninoff - Piano Concerto No. 2, 1st Movement, Moderato"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Computer Science,,"Computer Science, Data Science","53,715",48.8566,2.3522,Yes,macaroni/pasta,dog,Yes,no preference,Yes,90210- Travis Scott
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,economics with math emphasis ,,"53,703",51.5099,-0.1181,Maybe,mushroom,neither,No,night owl,Yes,edge of desire john mayer 
+COMP SCI 319:LEC001,LEC001,23,Other (please provide details below).,Business Analytics,,"53,703",38.9072,-77.0369,Maybe,pineapple,dog,No,early bird,No,I will never not love you
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,21,Business: Finance,,BMAJ: Mathematics- Math and Finance ,"53,703",22.2032,-159.4957,Maybe,pepperoni,dog,Yes,night owl,Yes,I can change - LCD Soundsystem
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Science: Biology/Life,,,"53,703",-33.9249,18.4241,Maybe,pepperoni,dog,Yes,early bird,Yes, This love- maroon 5 
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Engineering: Mechanical,,,"53,703",43.7696,11.2558,No,pepperoni,neither,No,night owl,No,Gunslinger by Avenged Sevenfold
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,ECON - BA,,"53,705",40.8424,111.75,No,pineapple,neither,No,no preference,Maybe,Metro Spider
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,22,Statistics,,,"53,715",40.7128,-74.006,Yes,sausage,cat,No,night owl,Yes,Born this way.
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Data Science,,,"53,703",42.3601,-71.0589,Yes,green pepper,dog,No,no preference,No,No Clarity - Ice Spice
+COMP SCI 319:LEC004,LEC004,24,Science: Other,,,"53,705",43.0726,-89.4295,Maybe,mushroom,cat,No,no preference,Yes,Bohemian Rhapsody
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Science: Other,Biochemistry,NONE,"53,703",37.5665,126.978,No,pineapple,cat,No,night owl,Yes,Event Horizon-Yoonha
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Data Science,,"Data science, but I am considering transfer to CoE to study industrial engineering.","53,703",47.6062,-122.3321,Maybe,mushroom,cat,No,early bird,Maybe,Fallin' All In You
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Data Science,,,"53,706",44.5263,109.0565,Yes,mushroom,dog,Yes,night owl,Yes,So It Goes - Mac Miller
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC003,19,Business: Information Systems,,,"53,703",21.4858,39.1925,No,none (just cheese),cat,No,night owl,Yes,sparks - coldplay
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,"53,703",14.7167,-17.4677,Maybe,none (just cheese),dog,No,night owl,No,"Sweet Nothing by Taylor Swift
+
+ "
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC001,21,Data Science,,,"53,715",43.0589,-88.0075,Yes,pepperoni,dog,Yes,no preference,Yes,none
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Industrial,,,"53,706",43.2995,-87.9887,No,macaroni/pasta,dog,Yes,night owl,Yes,"Hey, Soul Sister"
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,,Data Science,,,"53,703",35.6895,139.6917,Yes,pepperoni,dog,No,night owl,Yes,Konayuki by Remioromen
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,18,Engineering: Mechanical,,,"53,706",41.9835,-88.0803,No,green pepper,dog,Yes,no preference,Yes,Wilshire - Tyler the Creator
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC003,19,Science: Biology/Life,,,"53,715",34.34,108.9,No,mushroom,cat,Yes,early bird,No,Sugar
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,21,Data Science,Data Science,,"53,703",43.076,-89.3929,Yes,pepperoni,dog,No,night owl,Yes,Sunflower - Post Malone
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Engineering: Other,,,"53,558",42.444,76.5019,No,pepperoni,dog,No,night owl,No,4 Your Eyez Only - J Cole
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Engineering: Mechanical,,,"53,706",40.7128,-74.006,Yes,pepperoni,dog,No,night owl,Yes,"My favorite song is, ""Feel Like This"" by Ingrid Andress"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,22,Engineering: Other,,,"53,715",43,-89,No,none (just cheese),dog,Yes,night owl,Yes,"I Really Want To Stay At Your House - Rosa Walton, Hallie Coggins"
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Economics ,"Data Science, Chinese Communications ","93,703",38.9276,-77.0998,Maybe,sausage,dog,Yes,night owl,Yes,Black Ego - Digable Planets
+COMP SCI 319:LEC002,LEC002,22,Business: Finance,,,"53,715",33.8938,35.5018,No,pineapple,dog,Yes,early bird,Maybe,"so hard to choose........anything Justin Bieber or 'Holy Ground"" by Nicki Minaj and Davido"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,"53,706",,,No,basil/spinach,cat,No,no preference,No,How are you true - Cage the Elephant
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Statistics,,,"53,706",40.7128,74.006,Maybe,pepperoni,dog,Yes,night owl,Maybe,The Greatest - Rod Wave 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Other (please provide details below).,Economics,Data Science,"53,706",37.6624,-121.8747,Yes,sausage,dog,No,no preference,No,Woods by Mac Miller
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC001,22,Other (please provide details below).,Economics,Data Science,"53,703",37.5665,126.978,Maybe,mushroom,cat,Yes,night owl,Maybe,For the First Time in Forever - Kristen Bell
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC003,18,Business: Other,International Business , Information Systems,"53,715",39.4702,-0.3768,No,none (just cheese),dog,No,night owl,Yes,The Spins - Mac Miller
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Engineering: Industrial,No,No,"53,706",51.5,0.13,Yes,sausage,cat,No,night owl,No,Getaway Car by Taylor Swift
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Data Science,,Economics,"53,703",40.7888,-73.977,Maybe,pineapple,dog,Yes,no preference,No,Chicken Fried by Zac Brown Band
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC001,18,Data Science,,,"53,706",28.6139,77.209,Yes,pepperoni,dog,No,night owl,Maybe,Smells like teen spirit by Nirvana
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Industrial,,I want to minor in some sort of environmental certificate ,"53,706",45.0061,-93.1566,No,pepperoni,cat,Yes,early bird,Maybe,suga suga by baby bash
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Mechanical,,,"53,706",47.4979,19.0402,No,pepperoni,cat,No,night owl,Yes,Ain't no rest for the wicked by cage the elephant
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Data Science,,,"53,715",42,-71,Yes,pineapple,cat,No,night owl,No,kill bill
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Computer Science,,,,43.0731,-89.4012,Yes,pineapple,cat,No,no preference,Maybe,只因你太美
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,21,Science: Other,,,"53,726",43.0722,89.4008,No,pepperoni,cat,Yes,night owl,Yes,Everlasting Ending by August Burns Red
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,consumer science & marketplace studies,economics,"53,715",27.7787,120.6552,No,Other,dog,No,no preference,No,spring day
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC001,,Data Science,,,"53,703",37.5326,127.0246,Yes,pepperoni,dog,No,night owl,Maybe,Metro Spider
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC001,,Other (please provide details below).,sociology,,"53,703",22.5431,114.0579,Maybe,mushroom,dog,Yes,night owl,Maybe,?
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Data Science,,,"53,715",40.7128,-74.006,Yes,pepperoni,cat,No,night owl,Yes,"Free Bird - Lynyrd Skynyrd
+
+[] (https://www.youtube.com/watch?v=QxIWDmmqZzY)"
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Data Science,,Communication arts,"53,706",31,121,Yes,sausage,dog,No,night owl,Maybe,summertime
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Data Science,Global Health,,"53,527",7.9519,98.3381,No,Other,dog,No,early bird,Maybe,playing god by polyphia
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",,,Science: Biology/Life,,,"53,706",25.048,-77.3554,Maybe,Other,dog,No,night owl,Yes,Addictions by Brent Fayiaz
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Other (please provide details below).,Economic ,Data science,"53,703",31.2304,121.4737,Maybe,sausage,dog,No,night owl,Yes,Die for you by the Weekend 
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,20,Science: Physics,,I am an astrophysics major and an aos major. I am also working towards a data science certificate.,"53,706",38.9072,-77.0369,Maybe,sausage,neither,No,night owl,Yes,Seattle - Sam Kim
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Statistics,,Economics - Math Emphasis,"53,706",44.3876,-68.2039,No,green pepper,dog,Yes,no preference,No,Ms. Jackson by OutKast
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC001,21,Languages,,,"53,711",40.7128,74.006,No,sausage,dog,No,early bird,Yes,Burial - Temple Sleeper
+COMP SCI 319:LEC001,LEC001,22,Other (please provide details below).,master science in information,,"53,703",30.5928,114.3055,No,pepperoni,dog,No,night owl,Yes,catch my breath
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Science: Biology/Life,,Data Science,"53,703",52.3702,4.8952,Yes,basil/spinach,dog,Yes,early bird,Maybe,Moving Out by Billy Joel
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,,"53,703",35.6895,139.6917,No,pepperoni,dog,No,night owl,Yes,NITROUS by Joji
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,"53,706",38.5833,-90.4063,No,sausage,cat,Yes,night owl,Yes,Drive by Incubus
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Art,,"53,706",25.7617,-80.1918,Maybe,none (just cheese),dog,No,night owl,Yes,Otro Atardecer - By Bad Bunny
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,"53,703",43.0673,-89.4,No,tater tots,dog,Yes,early bird,Yes,Probably any Clairo song
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics,i plan to minor a data science.,"53,705",31.2304,121.4737,Maybe,tater tots,dog,No,night owl,Yes,Ten years which song by Eason Chen
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Engineering: Biomedical,,,"53,706",46.52,-87.4,No,sausage,cat,Yes,no preference,Yes,"It changes weekly
+
+right now it's Smooth by Santana and Rob Thomas"
+COMP SCI 319:LEC002,LEC002,28,Engineering: Industrial,,,"53,705",37.9838,23.7275,No,mushroom,dog,Yes,night owl,Yes,"I have a lot of songs that I like.
+
+Some of my  favorite songs are -
+
+1. Seether - Fine Again, Breakdown, Truth
+
+2. Tool - Right in two, Schism
+
+3. Nickelback - How you remind me, Too bad
+
+4. Linkin Park - In the End, Numb, Pushing me away, What I've done
+
+5. Pink Floyd - Comfortably Numb, Another brick in the wall
+
+ "
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,20,Other (please provide details below).,Economics,,"53,703",51.5034,0.0794,No,Other,dog,Yes,night owl,Yes,Everlong by Foo Fighters
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Computer Science,,Data Science and Environmental Studies,"53,715",37.7749,-122.4194,No,basil/spinach,neither,No,early bird,Maybe,Dancing Queen- ABBA
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Double Major in Finance and Information Systems,,"53,703",39.335,-74.4963,No,pepperoni,neither,Yes,night owl,Yes,Godzilla by Eminem
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,"53,706",41.8781,-87.6298,No,pepperoni,dog,Yes,night owl,Maybe,do what i want- 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Mechanical,,,"53,726",43.0702,-89.4146,No,pepperoni,dog,Yes,early bird,Yes,This Bar- Morgan Wallen
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,21,Engineering: Other,Materials Science & Engineering,,"53,715",43.0731,-89.4012,No,pepperoni,dog,Yes,no preference,Maybe,Short Change Hero - The Heavy
+COMP SCI 319:LEC001,LEC001,30,Other (please provide details below).,I am not a student--I work as an industry analyst. But my prior degrees are in math and environmental studies,,"53,703",19.4326,-99.1332,No,mushroom,cat,Yes,early bird,Yes,Nothing's Gonna Hurt You Baby
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Computer Science,,Data science,"53,706",28.22,112.93,Yes,tater tots,dog,No,night owl,Yes,Crystal mountain - Death
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,26,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,"53,705",31.8975,-81.5942,No,Other,dog,No,night owl,Yes,Venus Flytrap
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC001,20,Other (please provide details below).,economics,,"53,715",23.0508,113.7428,Maybe,sausage,dog,No,night owl,Yes,someone like you
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,"Economics
+
+ ",Statistics or Data science,"53,706",43.7696,11.2558,Maybe,mushroom,cat,Yes,night owl,Yes,"There's a lot, but as of right now, its Quarter Life Crisis by Taylor Bickett"
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Engineering: Mechanical,,,"53,703",43.6532,-79.3831,No,pepperoni,dog,Yes,no preference,Yes,New Light -John Mayer
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Data Science,,,"53,703",25.033,121.5654,Yes,pepperoni,neither,Yes,night owl,Yes,Never Gonna Give You Up
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC001,18,Science: Physics,," Undecided but possibly Computer Science, Data Science, or Chemistry","53,706",43.9424,12.4578,Maybe,Other,dog,Yes,no preference,Yes,Oi Astoi Tromaxane by Michalis Bezentakos
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Other (please provide details below).,Economics,,"53,715",43,11,Maybe,none (just cheese),dog,No,night owl,Maybe,currently Open Arms by SZA 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Computer Science,,economics,"53,703",30.2741,120.1551,Maybe,mushroom,neither,No,night owl,Maybe,Here's your perfect
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Data Science,,,"53,703",41.881,87.622,Yes,basil/spinach,dog,No,no preference,Maybe,Getting older by billie eilish
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC001,19,Engineering: Industrial,n/a,n/a,"53,703",41.8781,87.6298,No,none (just cheese),dog,No,night owl,No,Exit Music by Radiohead
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Computer Science,N/A,"Data Science, and Math.","53,706",11.9404,108.4583,Yes,pineapple,cat,No,night owl,Yes,Perfect by Ed Sheran
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,"53,706",39.9042,116.4074,Maybe,mushroom,cat,No,no preference,Yes,Peace of mind by Boston
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,20,Other (please provide details below).,Personal Finance ,data science ,"53,703",10.4334,-83.6437,Maybe,basil/spinach,dog,Yes,night owl,Maybe,Anti-Hero by Taylor swift 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Engineering: Biomedical,,,"53,715",47.6032,-122.3303,No,green pepper,cat,Yes,early bird,Yes,No Hands
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Engineering: Mechanical,,,"53,726",-8.5069,115.2625,Maybe,Other,dog,No,night owl,Yes,https://open.spotify.com/track/6dFldZ0RbUeWhyNiP3ae9U?si=2ff7bf6dd49b412c
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,,Business: Other,Economics,Data Science,"53,703",55.6761,12.5683,Maybe,pepperoni,dog,Yes,night owl,No,Innerbloom - Rufus Du Sol
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,,Computer Science,,,"53,706",43.0731,-89.4012,Maybe,mushroom,dog,No,early bird,No,Photograph by Ed Sheeran
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Other (please provide details below).,Undeclared - Planning to major in data science,,"53,726",21.3069,-157.8583,Yes,pepperoni,dog,No,early bird,Maybe,The Color Violet by Tory Lanez
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economics,No,"53,715",33.6225,113.3418,No,pineapple,cat,No,no preference,Yes,See you again
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Data Science,,,"53,706",40.7573,-73.986,Yes,pepperoni,dog,Yes,night owl,Maybe,Creepin - Metro Boomin and the weekend
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Statistics,,economics,"53,703",45.4408,12.3155,No,none (just cheese),neither,No,no preference,Yes,I love you so - The Walters
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Engineering: Biomedical,,,"53,706",26.9504,-82.3531,No,basil/spinach,dog,Yes,early bird,Yes,Rich Girl by Hall and Oats
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Other (please provide details below).,Psychology,Certificate in Business,"53,715",22.3964,114.1095,No,pepperoni,dog,No,night owl,Maybe,ZOMBIES by pH-1
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,22,Science: Biology/Life,N/A,N/A,"53,715",41.9028,12.4964,No,sausage,dog,No,night owl,Maybe,"It switches a lot. Right now, it's probably Minefield by Nic D."
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC001,19,Business: Information Systems,,Finace,"53,703",32.0853,34.7818,No,macaroni/pasta,dog,No,night owl,Yes,Grace by Lil Baby featuring 42 Dugg
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,18,Engineering: Mechanical,,,"53,715",43.0325,-87.9215,No,sausage,dog,No,night owl,Yes,Pitbull - Fireball ft. John Ryan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Mechanical,,,"53,706",37.32,-122.03,Yes,Other,cat,Yes,early bird,Yes,"Shivers
+
+ "
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Science: Biology/Life,N/A,N/A,"53,715",36.6512,117.1201,No,sausage,cat,No,night owl,Yes,Maple Leaf by Jay Chou
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,,,"53,706",37.5665,126.978,Maybe,macaroni/pasta,cat,No,no preference,Yes,I don't have one :)
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC001,19,Engineering: Biomedical,,,"53,706",39.6945,-104.9744,No,sausage,dog,No,night owl,Yes,"cowboy like me, by taylor swift"
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Consumer Behavior and Marketplace Studies ,n/a ,"53,715",356.8949,139.6917,No,pineapple,dog,No,night owl,Maybe,Gone by Rosé
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Computer Science,,Data Science,"53,726",41.8781,-87.6298,Yes,sausage,dog,Yes,night owl,Yes,Love in the Dark by Adele
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,21,Engineering: Biomedical,,,"53,701",27.68,"-81,479",No,sausage,dog,Yes,early bird,Maybe,Growin up and Gettin Old - Luke combs
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,21,Engineering: Other,,,"56,511",46.7841,-96.0378,No,sausage,dog,No,night owl,Yes,"burn, burn, burn - zach bryan"
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,"53,706",36.1627,-86.7816,No,pepperoni,dog,No,night owl,Yes,Could Have Been Me by The Struts
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Business: Information Systems,,Marketing,"53,715",52.9805,-6.0427,No,Other,cat,No,night owl,Yes,Calico Skies by Paul McCartney 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Industrial,,,"53,706",33.8195,-84.4155,No,pepperoni,dog,No,early bird,Maybe,"Fake Love, Drake"
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC001,21,Computer Science,No,No,"53,711",43,88,Maybe,pepperoni,cat,Yes,no preference,Maybe,My rapstar 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Science: Biology/Life,,,"53,706",40.7128,-74.006,No,sausage,dog,No,night owl,Yes,Jail -Kanye West
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Engineering: Industrial,,,"53,706",41.8781,-87.6298,No,pepperoni,dog,No,night owl,Maybe,yellow coldplay
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Data Science,,,"53,706",41.8781,-87.6298,Yes,sausage,dog,Yes,night owl,Yes,Tatuajes
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Business: Information Systems,,,"53,706",44.8256,-93.1859,No,pineapple,dog,Yes,night owl,Maybe,Currently: Reminder by the Weeknd
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Computer Science,,,"53,706",41.9028,12.4964,No,pepperoni,dog,Yes,night owl,Yes,"LOST IT by Layto 
+
+(at least at the moment)"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Science: Other,,,"53,715",31.2304,121.4737,Yes,pepperoni,dog,Yes,night owl,Yes,Despacito
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,"53,703",38.57,-109.55,No,pepperoni,cat,No,early bird,Yes,Woodland
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Other (please provide details below).,Economics Math Emphasis,Data Science,"53,705",37.4419,122.143,Yes,mushroom,cat,No,night owl,Yes,Slumber Party by Ashnikko.
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC001,20,Engineering: Mechanical,,,"53,715",44.1198,9.7085,No,basil/spinach,dog,Yes,night owl,Yes,Kill the Sun -Motherfolk
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Computer Science,,Intended data science certificate,"53,715",37.5665,126.978,No,pepperoni,cat,Yes,night owl,Maybe,Better Now by Post Malone or Ego Death (ft. Steve Vai) by Polyphia
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Other (please provide details below).,Economics ,Data Science ,"53,703",30.2672,-97.7333,Yes,pepperoni,dog,No,night owl,Maybe,
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Economics,,"53,703",41.87,-87.62,Maybe,sausage,dog,Yes,night owl,Yes,Astrovan by Mt. Joy
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,Economics ,Philosophy,"53,703",40.7128,-74.006,No,mushroom,dog,Yes,early bird,Maybe,Father and Son by Cat Stevens
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,20,Other (please provide details below).,Information Science,English,"53,715",39.3077,-123.7995,No,basil/spinach,cat,No,early bird,Maybe,"""Lost in My Mind"" by Rufus du Sol"
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Science: Chemistry,,,"53,706",41.8781,-87.6298,Maybe,pepperoni,dog,No,night owl,Yes,right now it is warm winds by sza and isaiah rashad
+COMP SCI 319:LEC004,LEC004,22,Business: Finance,na,na,"53,703",24.4753,101.3431,No,pineapple,cat,No,night owl,Yes,Wow by Post Malone
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Business: Other,,,"53,706",40.7128,-74.006,No,pepperoni,dog,No,no preference,Yes,Pretty Little Birds by SZA
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Business: Information Systems,,Business: Operations Technology Management,"53,715",35.0319,135.748,Maybe,none (just cheese),cat,Yes,no preference,Yes,Come Sail Away by Styx
+COMP SCI 319:LEC002,LEC001,,Other (please provide details below).,Energy Analysis and Policy - Public Policy,,"53,703",41.9028,12.4964,No,sausage,dog,No,no preference,Yes,Psychic City - YACHT
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Computer Science,,,"53,711",43.0969,-89.5115,Maybe,pepperoni,dog,No,night owl,Maybe,Lofi
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Business: Information Systems,,,"53,715",37.7749,-122.4194,Maybe,pepperoni,dog,No,night owl,Yes,Dancing Queen by ABBA
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Mathematics/AMEP,,,"53,703",50,80,Maybe,Other,dog,No,no preference,Maybe,safe and sound
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Economics,Certificate in data science,"53,715",34.0522,-118.2437,No,pepperoni,dog,No,early bird,No,I don’t have one at the moment.
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Engineering: Biomedical,,"Biomedical Engineering, French ","53,706",44.9778,-93.265,No,pineapple,dog,Yes,early bird,Maybe,
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Engineering: Mechanical,,,"53,711",26.0891,-80.1716,No,pepperoni,dog,No,night owl,Yes,gun to my head probably Bohemian Rhapsody
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Mechanical,,,"53,706",64.1265,-21.8174,No,green pepper,neither,Yes,night owl,Yes,Sick Love - Red Hot Chili Peppers
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Science: Biology/Life,,,"53,706",13.0827,80.2707,No,mushroom,dog,No,night owl,Yes,Sugar Rush Ride - TXT
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Science: Biology/Life,,,"53,715",42.0422,14.48,No,mushroom,cat,No,night owl,Yes,Vincent by Don McLean
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Biomedical,N/A,N/A currently ,"53,706",43.0747,270.6158,Maybe,pepperoni,dog,No,no preference,Maybe,"""Shadow"" by Macklemore"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,20,Data Science,,Economic,"53,715",31.2304,121.4737,Yes,sausage,cat,No,night owl,Yes,好运来
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Mathematics/AMEP,,,"53,703",39.0407,117.1857,No,pepperoni,cat,No,night owl,Yes,Let It Go
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Mechanical,,,"533,706",28.3852,-81.5639,No,none (just cheese),dog,No,night owl,Yes,He's a Pirate by Klaus Badelt
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,22,Other (please provide details below).,회계,데이터 과학,"53,715",37.5665,126.978,Maybe,none (just cheese),neither,No,night owl,Yes,Summer-Paul Blanco
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,,Engineering: Biomedical,,,"53,706",43,-79,Maybe,mushroom,dog,No,no preference,Maybe,Rockabye by Clear Bandit
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,"53,706",43.0731,-89.4012,No,sausage,dog,Yes,early bird,No,Stone - Whiskey Myers
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,"53,706",43.1616,-89.9112,No,macaroni/pasta,dog,Yes,night owl,Yes,Something More by love-sadKID
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC001,18,Computer Science,,I am going for a certificate (Minor) in Data Science,"53,703",41.0151,28.9795,Maybe,pineapple,cat,No,night owl,Maybe,Butterfly effect
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,"94,596",37.7749,-122.4194,No,pineapple,dog,No,night owl,Maybe,Creepin' by The Weekend
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,22,Science: Other,,,"53,705",24.8607,67.0011,Maybe,Other,cat,Yes,early bird,Yes,hidden in the sand by tally hall
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Engineering: Biomedical,N/A,Potentially Environmental Engineering,"53,706",48.8566,2.3522,No,pepperoni,cat,No,night owl,Yes,"Space Oddity by David Bowie. Although, I like the 2019 mix more than the original, got that added instrumental power. "
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Business: Actuarial,,Econ,"53,715",1.3115,103.9213,Maybe,pineapple,dog,No,night owl,Yes,My Heart will Go On
+COMP SCI 319:LEC001,LEC001,28,Science: Physics,,Planiing to do a Doctoral minor in computer science.,"53,715",53.8011,-9.5223,No,sausage,dog,Yes,no preference,Yes,"Thriller,  by Michael Jackson."
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Psychology Major and on the Pre-med track,Minors in Asian American Studies and Data Science,"53,715",41.8781,-87.6298,No,sausage,dog,No,night owl,Yes,missed calls by Mac Miller
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Computer Science,,,"53,703",47.6062,-122.3321,Yes,sausage,cat,Yes,no preference,Yes,"Tyler, The Creator - 911 / Mr. Lonely"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Science: Other,Astronomy-Physics,Physics,"53,715",12.9716,77.5946,No,Other,dog,No,no preference,Maybe,Any song by BTS
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Computer Science,,,"53,706",40.7287,-74.0002,Maybe,sausage,cat,Yes,no preference,Yes,what is life - george harrison
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Engineering: Biomedical,,,"53,706",30.267,-97.743,No,pepperoni,cat,Yes,no preference,Yes,Freaks - Surf Curse
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,21,Science: Biology/Life,,Conservation Biology,"53,703",39.7439,84.6366,No,Other,dog,No,early bird,Yes,"""Shine a Light"" by The Rolling Stones"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Data Science,,,"53,703",36.6512,117.1201,Yes,pepperoni,cat,No,night owl,Yes,No
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,"53,706",48.8566,2.3522,Maybe,sausage,dog,No,night owl,Yes,ignition remix by R Kelly
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Science: Other,Environmental science,,"53,726",48.8566,2.3522,Maybe,macaroni/pasta,cat,No,night owl,Yes,Amour Plastique
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Business: Finance,,,"53,715",35.6895,139.6917,No,pineapple,cat,No,night owl,Maybe,"""See You Again"""
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Engineering: Biomedical,,,"53,703",48.8577,-357.7067,No,pineapple,dog,No,no preference,Maybe,Everywhere by Fleetwood Mac
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Business: Actuarial,,,"53,706",47.6062,122.3321,Maybe,sausage,dog,Yes,no preference,No,I’m Good (Blue) - Bebe Rexha and David Guetta
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,22,Science: Other,Atmospheric and Oceanic Sciences,,"53,711",35.6895,139.6917,No,mushroom,dog,Yes,early bird,Yes,DARE - Gorillaz
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Engineering: Mechanical,,,"53,706",41.8781,-87.6298,No,mushroom,dog,No,early bird,Maybe,Cheerleader by Omi
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,23,Mathematics/AMEP,,Economics,"53,711",35.6895,139.6917,No,green pepper,dog,No,night owl,Yes,"Sunday Candy
+
+by Nico Segal and The Social Experiment"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC001,20,Computer Science,,,"53,715",43.0731,89.4012,No,pineapple,cat,No,night owl,No,I don't have one
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,"53,706",41.8818,-87.6232,No,pepperoni,dog,No,night owl,Yes,"""Heading South"" by Zach Bryan"
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,22,Engineering: Biomedical,,,"53,715",42.9955,-87.9291,No,mushroom,dog,Yes,early bird,Yes,Getaway Car by Taylor Swift
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Business: Finance,N/A,N/A,"53,703",26.1224,-80.1373,No,pepperoni,neither,No,night owl,Yes,Closer
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Data Science,,,"53,706",41.8781,-87.6298,No,sausage,dog,Yes,night owl,Yes,"""Codeine Crazy"" by Future"
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Data Science,,English BA,"53,703",33.749,-84.388,Yes,basil/spinach,dog,Yes,night owl,Yes,Beyonce - 6 inch (feat. The Weeknd)
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,"53,703",25.2048,55.2708,No,none (just cheese),cat,No,night owl,Maybe,Eminem - Till I Collapse
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Science: Biology/Life,,,"53,703",44.7687,-91.5169,No,pepperoni,dog,Yes,night owl,Maybe,"""Brooklyn Baby"" - Lana Del Rey"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Mathematics/AMEP,,,"53,715",3.139,101.6869,Maybe,pineapple,neither,Yes,early bird,Yes,metallica
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC001,20,Other (please provide details below).,Sociology,N/A,"53,726",34.0522,-118.2437,No,pineapple,cat,No,night owl,Maybe,8Teen by Khalid 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Biomedical,,,"53,706",42.3601,-71.0589,No,macaroni/pasta,dog,Yes,night owl,No,Shy by Hether
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Data Science,,,"53,706",33.5458,-117.7817,Yes,sausage,dog,Yes,no preference,Maybe,Emotionally scared by lil baby
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Science: Other,I am primarily majoring in Atmospheric / Oceanic Sciences!,"In addition to the AOS Major, I will be majoring in Communication Arts, Radio / TV Media studies.","53,703",43.6532,-79.3832,No,pepperoni,dog,Yes,night owl,Yes,Fallout by Marianas Trench!!! Gotta shout out my favourite local Canadian artists!
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Business: Other,Economics,Maybe environmental studies or statistics. ,"53,706",41.878,-87.629,Maybe,sausage,dog,Yes,no preference,Maybe,Soundtrack to my life by kid cudi
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,18,Engineering: Mechanical,,,"53,706",39.6403,-106.3709,No,pineapple,dog,No,night owl,Yes,The ABC's
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Computer Science,Data Science,"53,715",39.5796,-104.9266,Yes,pepperoni,dog,No,night owl,Yes,Skeleton
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Science: Physics,,,"53,715",47.3769,8.5417,No,basil/spinach,dog,No,night owl,Maybe,PRIDE by Kendrick Lamar
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Engineering: Mechanical,,,"53,715",39.1031,-84.512,No,pepperoni,cat,Yes,early bird,Maybe,One - Metallica
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Biology,Environmental Science,"53,715",42.36,-71.06,No,pineapple,cat,No,night owl,Yes,Light My Love- Great Van Fleet
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Other (please provide details below).,Bio-Systems Engineering,,"53,704",43.6275,-89.7661,Maybe,sausage,dog,No,early bird,Yes,MICHUUL by Duckwrth
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Business: Finance,Finance ,Information Systems with a minor in Computer Science,"53,706",29.9511,-90.0715,No,green pepper,dog,No,night owl,Yes,pill - d savage
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Engineering: Biomedical,,,"53,703",43.7696,11.2558,Maybe,none (just cheese),dog,No,night owl,No,One more time by daft punk
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC001,21,Business: Other,Agricultural Business Management,N/A,"53,703",43.0731,-89.4012,No,macaroni/pasta,dog,Yes,night owl,Yes,Dancing With Our Hands Tied by T-Swift
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,"53,706",41.9524,-87.6779,No,Other,dog,Yes,no preference,Maybe,You and I - Wilco
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,21,Business: Other,,Legal Studies,"53,715",13.0945,-86.3538,No,none (just cheese),dog,No,early bird,No,titi me pregunto - bad bunny
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Engineering: Mechanical,,,"53,706",21.3069,-157.8583,No,pepperoni,dog,Yes,no preference,Yes,Dark Necessities - Red Hot Chili Peppers 
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Business: Information Systems,,,"53,715",40.7023,-73.9887,No,green pepper,dog,Yes,night owl,No,F2F by SZA
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,English ,History ,"53,706",47.369,8.538,No,mushroom,dog,No,early bird,Maybe,Enchanted by Taylor Swift
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Mathematics/AMEP,,,"53,703",-0.1807,-78.4678,Yes,sausage,dog,Yes,night owl,Yes,You belong with me - Taylor Swift
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC001,18,Engineering: Other,Electrical Engineering,,"53,706",40.712,-74,Maybe,none (just cheese),dog,Yes,night owl,Yes,For Whom the Bell Tolls - Metallica
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC001,19,Business: Finance,,Business: Information Systems ,"53,706",-2.9001,-79.0059,Maybe,mushroom,cat,No,night owl,Yes,Steve Lacy - Bad Habit
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC001,18,Science: Physics,,Astronomy-physics,"53,706",44.9466,-93.2883,No,basil/spinach,cat,No,night owl,No,
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Other,,,"53,706",42.8,-89.6,Maybe,pineapple,cat,Yes,early bird,No,A Sky Like I've Never Seen by Fleet Foxes 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,21,Computer Science,,,"53,726",42.3184,-71.0449,Maybe,sausage,cat,No,no preference,Maybe,Orange Show Speedway - Lizzy McAlpine
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Computer Science,,,"53,703",40.7773,-73.9553,No,pepperoni,dog,Yes,night owl,Yes,All Too Well (10 Minute Version)
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Political Science,,"53,706",37.7749,-122.4194,Maybe,macaroni/pasta,cat,Yes,night owl,Maybe,Summer Nights - Lil Rob
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Computer Science,,,"53,706",35.6895,139.6917,Maybe,pepperoni,dog,No,night owl,Yes,Change partners by nba youngboy and moneybagg yo
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Engineering: Mechanical,,,"-53,703",41.7874,-87.6988,No,pepperoni,dog,Yes,night owl,Yes,Neverita-Bad Bunny
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,21,Engineering: Biomedical,,,"53,715",43.6532,-79.3832,No,basil/spinach,dog,Yes,early bird,Maybe,"Raspberry Beret, Prince"
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Science: Physics,,,"53,703",52.52,13.405,No,green pepper,dog,Yes,no preference,Maybe,"Brazil, Declan Mckenna"
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Engineering: Other,Engineering Mechanics: Aerospace,,"53,706",41.8818,-87.6232,No,sausage,dog,No,night owl,Yes,Elevator Days - Backseat Lovers
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,,Engineering: Mechanical,,,"53,706",19.1747,-96.1908,No,pepperoni,dog,No,night owl,No,"Cinema- Harry Styles,
+
+Efecto-Bad Bunny"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Biomedical,,,"53,706",51.5074,-0.1278,No,pepperoni,dog,Yes,night owl,Yes,No Role Modelz - J. Cole 
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,,Engineering: Biomedical,,,"53,715",43.07,89.4,No,tater tots,cat,Yes,night owl,Yes,Chum by Earl Sweatshirt
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Data Science,,Political Science,"53,706",47.6032,-122.3303,Yes,Other,dog,Yes,night owl,Yes,Me and Your Mama - Childish Gambino
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Engineering: Industrial,,,"53,703",-22.9068,-43.1729,Maybe,Other,dog,Yes,night owl,Yes,"Too Many Years - Kodak Black Ft. PnB Rock
+
+or
+
+Don't You Worry Child - Swedish House Mafia"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,23,Computer Science,"Computer Science
+
+ ","Data Science
+
+ ","53,705",41.0082,28.9784,Yes,none (just cheese),dog,No,night owl,Yes,"Beni Aşka İnandır / Kolpa
+
+ "
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC001,18,Engineering: Industrial,,,"53,706",39.7384,-104.9848,No,sausage,dog,Yes,no preference,Yes,Pray for me
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Business: Other,"My major is Consumer Behavior and Marketplace studies 
+
+ 
+
+Certificates in Data Science and Leadership ",N/A,"53,706",36.1627,-86.7816,No,none (just cheese),cat,No,no preference,No,"Right now one of my many favorite songs is ""Money & Love"" by Wizkid"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Business: Actuarial,,,"53,704",43.1947,88.729,Maybe,pepperoni,cat,Yes,no preference,Yes,IPAs by 30
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Business: Finance,Finance,Computer Science,"53,706",49.2827,-123.1207,Maybe,pepperoni,cat,Yes,night owl,Maybe,Do you love me
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,Poli Sci,,"53,703",40.7128,-74.006,No,pepperoni,dog,No,night owl,Yes,"""No Worries"" lil wayne"
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,"53,715",38.8937,-77.0361,No,pepperoni,dog,No,night owl,Yes,Downtown By Macklemore
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Other (please provide details below).,Political Science,,"53,706",38.8895,-77.0353,Maybe,none (just cheese),neither,No,night owl,Yes,Pretty Wings- Maxwell
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,25,Other (please provide details below).,Third-year law student,,"53,703",40.793,-73.9764,No,Other,dog,No,night owl,Yes,Terrapin Station by the Grateful Dead
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Political Science,,"53,706",41.8781,-87.6298,Maybe,pepperoni,dog,No,night owl,Maybe,Fancy Clown -MF DOOM
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC001,19,Business: Actuarial,,,"53,715",43.0731,-89.4012,No,basil/spinach,dog,Yes,night owl,Yes,More Than a Feeling
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,21,Science: Other,Economics,Data Science,"53,706",43.0731,-89.4012,No,pepperoni,dog,No,night owl,Maybe,potato salad - tyler the creator
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Business: Information Systems,,,"53,706",21.3069,-157.8583,No,sausage,dog,Yes,no preference,No,Headlines by Drake
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,20,Data Science,,"Economics, Math","53,715",37.8706,112.5489,Yes,sausage,cat,No,night owl,Yes,Welcome to a wonderful land
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Science: Biology/Life,n/a,n/a,"53,713",41.8472,-87.6256,Yes,sausage,dog,Yes,no preference,Yes,"Someday (salute Remix) - DJ Seinfield, salute"
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Other,,Physics Astronomy,"53,726",39.7392,-104.9903,No,pepperoni,neither,No,night owl,Yes,I don't have an all-time favorite as I listen to a wide variety of music genres but right now it's probably Illusory Sense by Ichika Nito.
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,"53,706",48.2082,16.3738,Maybe,mushroom,dog,No,night owl,Yes,Walking on a Dream
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC001,18,Data Science,,,"53,706",88.944,42.7756,Yes,pepperoni,cat,No,early bird,Yes,Nugget Man
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Data Science,,,"53,706",41.3879,2.1699,Yes,pineapple,dog,Yes,night owl,Yes,Shoota
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Science: Chemistry,,,"53,715",33.1581,-117.3506,No,macaroni/pasta,dog,Yes,night owl,Yes,Orange Blood by Mt. Joy although I couldn't truly pick just one song
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,22,Data Science,,,"53,715",39.9,116,Yes,sausage,neither,Yes,early bird,Yes,以父之名
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Business: Finance,,Certificate in Data Science (why im taking this class),"53,715",43.0389,-87.9065,Maybe,sausage,dog,No,no preference,No,Big Chungus
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,"53,706",42.2193,-88.2489,No,pepperoni,dog,No,no preference,Yes,911/Mr. Lonely Tyler the Creator
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Business: Information Systems,,,"53,715",43.0731,-89.4012,No,pepperoni,dog,Yes,night owl,Yes,Stop Breathing - Playboi Carti
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Other (please provide details below).,economic,,"53,715",24.8801,102.8329,Maybe,pineapple,dog,No,night owl,Maybe,fake love
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,20,Statistics,,,"53,711",40,116,Maybe,pepperoni,dog,Yes,early bird,No,Wildest Dreams - Taylor Swift
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Computer Science,,,"53,703",48.8566,2.3522,No,Other,dog,No,night owl,Yes,Forever
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC001,20,Business: Information Systems,,,"53,711",44.9778,-93.265,No,sausage,dog,No,night owl,Yes,Black - Pearl Jam
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,21,Engineering: Mechanical,NA,NA,"53,706",40.7131,-74.0072,No,basil/spinach,dog,Yes,night owl,No,"My favorite song is Harry Styles' ""Watermelon Sugar"""
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC001,20,Engineering: Biomedical,,,"53,715",39.0968,-120.0323,Maybe,sausage,dog,No,night owl,Yes,The Good Stuff (Kenney Chesney)
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Economics,,"53,706",55.9533,-3.1883,Yes,mushroom,dog,Yes,early bird,Maybe,"Leave before you love me - Marshmello, Jonas Brothers"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Business: Other,I study economics and data science.,"economics, data science","53,711",39.9042,116.4074,Yes,pineapple,neither,Yes,early bird,Maybe,Beautiful
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,23,Other (please provide details below).,Economics major,None.,"53,711",24.1477,120.6736,Maybe,mushroom,neither,No,night owl,Yes,The Last Goodbye - Billy Boyd
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Science: Other,,,"53,706",47.68,-122.2,Maybe,pineapple,dog,No,night owl,Maybe,saturday nights by khalid
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,economics,,"53,715",35.6,139.6,Maybe,tater tots,dog,Yes,night owl,Maybe,Ashe
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,21,Statistics,N/A,Microbiology ,"53,715",20.6597,-103.3496,No,pepperoni,dog,No,night owl,Yes,piel canela by los panchos
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Mechanical,,,"53,706",40.7128,-74.006,Maybe,mushroom,dog,No,night owl,Yes,Devolution by Starset
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,"53,715",39.7392,-104.9903,Maybe,pineapple,dog,Yes,night owl,Yes,Unwritten - Natasha Bedingfield
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC001,20,Science: Biology/Life,Environmental Sciences,Global health,"53,703",52.52,13.405,No,pineapple,dog,No,no preference,Yes,This varies week by week but this week it is waving through a window from dear evan hansen
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,20,Engineering: Mechanical,,Might do business management as my second major,"53,706",22.5431,114.0579,Maybe,pepperoni,dog,Yes,no preference,No,"Don't really have a favorite, I like all kinds of songs, but I like old HK music a lot. "
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Statistics,,I am considering an English major. ,"53,706",32.7157,-117.1611,Maybe,none (just cheese),neither,No,night owl,Maybe,Umbrella 
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC001,18,Engineering: Biomedical,,,"53,706",47.6062,-122.3321,Maybe,none (just cheese),dog,Yes,early bird,No,Upside Down -- Jack Johnson
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC001,20,Science: Physics,,,"53,703",41.8781,-87.6298,Maybe,pepperoni,cat,No,night owl,Yes,L'amour looks something like you
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Other,Computer Engineering,Computer Science,"53,703",41.8781,-87.6298,No,Other,dog,Yes,no preference,Yes,Myron - Lil Uzi Vert
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,Trumpet Performance,"53,706",48.8564,2.3532,No,sausage,cat,No,night owl,Yes,Stardust by Glenn Miller
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Engineering: Biomedical,,,"53,706",40.0169,-105.2796,No,pepperoni,cat,No,night owl,Yes,Them Changes
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Business: Information Systems,,Marketing,"53,706",-45.0312,168.6615,No,Other,cat,No,night owl,No,Charleston Girl (live) by Tyler Childers
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC001,19,Data Science,,,"51,735",48.8566,2.3522,Maybe,pepperoni,cat,Yes,night owl,Yes,After The Storm - Kali Uchis and Tyler the Creator
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Engineering: Biomedical,,,"53,706",33.4363,-112.0715,No,pepperoni,dog,Yes,night owl,No,It's Five O'Clock Somewhere
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Science: Biology/Life,,,"53,706",20.8,-156.3,Maybe,sausage,cat,Yes,early bird,Maybe,Save your tears
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Other (please provide details below).,Econ with Math Emphasis ,Statistics,"53,715",36,120,No,mushroom,dog,No,night owl,Yes,Some day or oneday
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Business: Information Systems,,,"53,705",37.7749,-122.4194,No,pepperoni,dog,Yes,early bird,No,Hard to decide. I really like rap music.
+COMP SCI 319:LEC002,LEC001,26,Science: Chemistry,,,"53,705",43.0731,-89.4012,No,sausage,neither,No,no preference,Maybe,My heart will go on
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,Psychology,,"53,706",32.7157,-117.1611,No,pepperoni,cat,No,no preference,Yes,"""Are You Bored Yet"" By Wallows"
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Mathematics/AMEP,,,"53,715",43.0739,-89.3852,Maybe,pepperoni,dog,Yes,night owl,Yes,Something in the Orange by Zach Bryan
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,21,Engineering: Biomedical,N/A,N/A,"53,703",41.3874,2.1686,No,pineapple,dog,No,no preference,No,"Song: City of Stars
+
+Artist: Logic"
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC001,18,Statistics,n/a,n/a,"53,703",40.72,-73.98,Maybe,macaroni/pasta,dog,Yes,early bird,Maybe,River - Ben Platt
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,"I may potentially get a data science certificate, but also am on the pre-med track.","53,706",40.7128,-74.006,No,pineapple,dog,No,night owl,No,Love Me Like That by Sam Kim
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Other,Engineering: undecided,,"53,706",41.3874,2.1686,Maybe,pepperoni,dog,Yes,night owl,Maybe,44 Bulldog by Pop Smoke
+COMP SCI 319:LEC003,LEC003,28,Engineering: Industrial,,,"53,715",29.9695,76.8783,Maybe,mushroom,dog,Yes,night owl,Maybe,Hotel California by Eagles
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Other (please provide details below).,Economics,N/A,"53,706",32.7148,-117.1589,Yes,macaroni/pasta,cat,No,night owl,Yes,Myth by Beach House
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC001,18,Data Science,,,"53,706",35.6895,139.6917,Maybe,pineapple,dog,No,night owl,Yes,Daylight - Matt and Kim
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Engineering: Other,"Material Engineering
+
+ ","Chemical Engineering
+
+ ","53,706",25.033,121.5654,No,pepperoni,dog,No,night owl,Maybe,反毒大使
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,,Business: Actuarial,,,"53,711",39.9042,116.4074,No,mushroom,cat,Yes,night owl,Maybe,"***************
+I Love You 3000
+***************"
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Business: Information Systems,,,"53,703",38.7193,-9.1379,Maybe,pepperoni,dog,No,night owl,Maybe,All My Friends - 21 Savage
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Mechanical,,,"53,706",44.9537,-93.09,No,sausage,dog,No,night owl,Maybe,Biking
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53.706,43.0722,89.4008,No,none (just cheese),dog,No,night owl,No,Party in the U.S.A. - Miley Cyrus 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Data Science,,,"53,715",19.076,72.8777,Yes,Other,cat,No,early bird,Yes,Buzz Me In by Remi Wolf
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC001,20,Statistics,,,"57,303",43.0117,88.2315,Maybe,sausage,cat,No,night owl,Yes,The way life goes lil uzi vert
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,"53,051",36.1627,-86.7816,Maybe,macaroni/pasta,dog,No,night owl,Maybe,Welcome to the Jungle by GNR
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Engineering: Mechanical,,,"53,706",37.7749,-122.4194,No,pepperoni,cat,No,night owl,Yes,Eagles - Hotel California
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Science: Biology/Life,,pharmacology and toxicology,"53,706",30,120,Maybe,mushroom,dog,No,night owl,Yes,すべてが壊れた夜に by SEKAI NO OWARI
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,"53,706",41.4969,-81.6896,No,sausage,dog,No,night owl,Maybe,54321 by Offset
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,,Other (please provide details below).,Economics,,"53,715",37.7771,-121.9675,No,mushroom,neither,No,night owl,Yes,kill bill
+COMP SCI 319:LEC001,LEC001,26,Engineering: Biomedical,N/A,N/A,"53,703",39.3245,-77.7397,No,basil/spinach,dog,No,night owl,Yes,Rocky Racoon - the beatles
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Computer Science,,Data Science,"53,706",41.833,-87.9287,Yes,basil/spinach,neither,No,night owl,Yes,Major Minus- Coldplay
+COMP SCI 319:LEC004,LEC004,25,Business: Other,Business Analytics,"Machine Learning, Data technology","53,715",15.2993,74.124,Maybe,green pepper,dog,Yes,night owl,No,Current favourite - NATU NATU from RRR
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,"53,715",50.0755,14.4378,No,pineapple,dog,Yes,early bird,No,"Sitting On the Dock of the Bay, Otis Redding"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Engineering: Industrial,,,"53,706",19.6,-156,Maybe,none (just cheese),dog,No,night owl,Yes,Flowers by Miley Cyrus
+COMP SCI 319:LEC002,LEC002,23,Business: Other,Business Analytics,,"53,703",62.3908,17.3069,Maybe,mushroom,neither,No,early bird,Maybe,New Romantics
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Science: Physics,,Astrophysics,"53,706",24.8607,67.0014,No,green pepper,cat,No,early bird,Yes,Phoenix- Lindsey Stirling
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Science: Other,"I am an Atmospheric, Oceanic, Space Sciences, and African-American Studies Major.
+
+ ",,"53,703",27.28,89.385,No,pineapple,cat,No,no preference,Maybe,Meet Me in the Morning- Bob Dylan
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,21,Business: Finance,,,"53,703",24.8911,121.1158,Maybe,pepperoni,cat,No,no preference,Maybe,someone you loved
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,N/A,N/A,"53,703",40.7128,-74.006,Maybe,pepperoni,dog,Yes,night owl,Yes,"Spin Me Round by Auggie Bello, Casey Abrams"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Engineering: Industrial,,,"53,703",32.7157,-117.1611,No,green pepper,cat,No,night owl,Yes,heat waves
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Science: Other,Atmospheric and Oceanic Sciences,Environmental Science,"53,715",25.7617,-80.1918,No,pepperoni,dog,No,night owl,Yes,Iris - Goo Goo Dolls
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Other (please provide details below).,Landscape Architecture and Urban Studies,Statistics ,"53,726",34.68,112.47,Maybe,sausage,dog,No,no preference,No,I like How Far I'll Go recently. 
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC001,20,Engineering: Other,Nuclear Engineering,n/a,"53,711",43,-89.4,Maybe,pepperoni,dog,Yes,night owl,Yes,Wake Me Up by Avicii
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,"53,706",40.4637,-3.7492,No,pepperoni,dog,Yes,no preference,Maybe,Free Fallin' Tom Petty
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,"53,706",36.4864,-118.5658,No,sausage,dog,No,no preference,Yes,Love Sosa
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Science: Other,Environmental Science,Certificate in Data Science,"53,706",42.0945,-90.1568,No,basil/spinach,cat,Yes,early bird,No,Respect by Aretha Franklin
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,"53,706",35.6895,139.6917,No,sausage,cat,No,no preference,Maybe,"1.) Cigarettes, by Juice Wrld
+
+2.) Just wanna be loved (Rimix) ft. David Yang, by Kid $wami
+
+3.)Distraction, by Polo G."
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Engineering: Biomedical,,,"53,706",47.6062,-122.3321,Maybe,basil/spinach,cat,No,night owl,Yes,sonder by the wrecks
+COMP SCI 319:LEC002,LEC002,33,Business: Other,Business analytics,,"53,713",39.9042,116.3833,Maybe,Other,neither,Yes,night owl,Yes,Love is narcissus.
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,"53,715",26.4511,-81.9481,No,macaroni/pasta,dog,No,night owl,Maybe,No Cure Zach Bryan
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,17,Engineering: Mechanical,,,"53,715",-32.8594,-71.2374,Maybe,pepperoni,dog,No,night owl,Yes,Tunak Tunak Tun - Daler Mehndi
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC002,19,Other (please provide details below).,"I am undecided but I am thinking of Data Science, Information Science, or Economics",,"53,706",47.6062,-122.3321,Maybe,basil/spinach,dog,No,no preference,Maybe,You Belong With Me - Taylor Swift 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,,Science: Biology/Life,,,"53,706",-6.369,34.8888,No,basil/spinach,neither,No,early bird,No,Pasoori
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,"53,706",51.5074,-0.1278,No,Other,dog,No,night owl,Yes,in my head by ariana grande
+COMP SCI 319:LEC001,LEC001,25,Engineering: Other,,,"53,705",-6.1751,106.865,No,none (just cheese),dog,Yes,early bird,Yes,Don't Stop Me Now - Queen
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,21,Engineering: Other,,,"53,715",14.5995,120.9842,No,sausage,cat,No,no preference,Maybe,Russian Roulette - Red Velvet
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Computer Science,,,"53,703",61.2181,-149.9003,Maybe,pepperoni,dog,No,night owl,Maybe,7 Years
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,Economics,Data Science Certificate,"53,706",41.8781,-87.6298,Maybe,pepperoni,dog,Yes,night owl,Yes,Night Changes
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Mechanical,,,"53,715",35.6895,139.6917,No,green pepper,dog,No,night owl,Yes,The Recipe by Kendrick Lamar
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Business: Actuarial,,,"53,706",29.3001,-94.7959,No,none (just cheese),dog,Yes,no preference,Yes,Style
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Other,Material Science and Engineering,,"53,706",45.4408,12.3155,No,sausage,dog,No,no preference,Yes,Its My Life - Bon Jovi
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,24,Computer Science,,,"53,703",47.6062,-122.3321,Maybe,basil/spinach,neither,Yes,early bird,Maybe,Eucalyptus by MF DOOM
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Engineering: Biomedical,,,"53,715",39.7392,-104.9903,No,none (just cheese),dog,No,night owl,Maybe,Beautiful Crazy - Luke Combs
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Computer Science,,,"53,704",35.6895,139.6917,No,pepperoni,dog,No,night owl,Maybe,Fukakouryoku by Vaundy
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Business: Actuarial,,,"53,715",30.1588,-85.6602,No,pepperoni,dog,No,night owl,Yes,Till The End - Logic
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,"53,706",42.9647,-87.9208,No,pepperoni,dog,No,early bird,Maybe,My Old School - Steely Dan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Mechanical,,,"53,706",7.515,134.5825,No,pineapple,neither,Yes,no preference,No,Time by Pink Floyd
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Business: Actuarial,,,"53,715",50.86,-2.16,No,pepperoni,dog,Yes,night owl,Maybe,A Thousand Miles by Vanessa Carlton
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Science: Biology/Life,,Global Health,"53,703",52.3702,4.8952,No,none (just cheese),cat,Yes,night owl,No,"""Simulation Swarm"" by: Big Thief"
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,"53,706",40.7,-74,No,Other,dog,Yes,night owl,Yes,Something in the Orange 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Other (please provide details below).,Applying for mechanical engineering at the end of the spring semester. ,,"53,706",42.3601,-71.0589,No,pineapple,cat,No,early bird,Maybe,"The Javascript Rap, By MC meSpeak"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,"53,706",41.8781,-87.6298,No,pineapple,cat,No,night owl,No,love lost by mac miller
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC001,19,Business: Information Systems,,,"53,715",6.5244,3.3792,Maybe,Other,cat,Yes,night owl,Yes,Tomorrow 2- Cardi B and Glorilla
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Engineering: Mechanical,,,"53,715",41.0082,28.9748,No,pepperoni,dog,No,night owl,Yes,"*************************
+Breakbot - Baby I'm Yours
+*************************"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC001,18,Business: Information Systems,,,"53,706",7.4868,37.7738,No,basil/spinach,dog,Yes,no preference,Maybe,"""I got a feelin"""
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,23,Engineering: Other,Chemical and Biological Engineering,,"53,726",43.7696,11.2558,No,pepperoni,dog,No,night owl,Maybe,Christian Dior Denim Flow
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Engineering: Biomedical,,,"53,703",41.9218,-87.6486,No,pepperoni,dog,No,no preference,Yes,Misty by Stan Getz
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Biomedical,n/a,Chemical or Mechanical Engineering ,"53,706",29.9755,-90.0787,No,pepperoni,dog,Yes,night owl,Yes,"Jump - Mac Miller, but it really depends on the circumstance "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Data Science,,,"53,706",40.7458,-74.258,Maybe,pepperoni,dog,No,no preference,Yes,Idk
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Science: Other,,,,45.9492,-89.2369,Maybe,sausage,dog,Yes,night owl,Yes,Objects in the Mirror by Mac Miller
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Other (please provide details below).,International Studies,.,"53,706",51.4214,-0.2076,Maybe,none (just cheese),neither,Yes,no preference,Maybe,About You-The 1975
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Business: Actuarial,N/A,"I might possibly double major in RMI, but I have not decided. Also, if I don't get into the business school, then I will most likely major in statistics.","53,150",45.4408,12.3155,No,sausage,dog,Yes,early bird,Maybe,Sour Patch Kids by Bryce Vine
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Mathematics/AMEP,,History,"53,706",61.2181,-149.9003,No,pepperoni,dog,No,night owl,Yes,Heaven - Bryan Adams
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,"53,706",52.2297,21.0122,No,pepperoni,neither,No,night owl,Yes,Loyalty - Kendrick Lamar
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Psychology,,"53,703",40.6854,-73.9949,No,pepperoni,dog,Yes,night owl,Yes,Cherry-coloured funk
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Engineering: Biomedical,,,"53,706",40.4355,-79.9915,No,pepperoni,dog,No,early bird,Yes,Dream On
+COMP SCI 319:LEC004,LEC004,26,Science: Physics,,I am graduate student in the Physics PhD program. I have bachelors degrees in physics and math.,"53,703",46.8721,-113.994,Maybe,mushroom,cat,Yes,night owl,Maybe,I don't have one.
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Business: Other,Marketing,Computer Science,"53,706",33.7,-117.8,No,sausage,dog,No,early bird,Maybe,Pluto Projector- Rex Orange County
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,Biology and Statistics,,"53,706",40.7128,-74.006,Maybe,green pepper,dog,No,no preference,Yes,Closer by RM
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC001,21,Other (please provide details below).,econ,data science,"60,517",,,No,sausage,dog,Yes,night owl,Yes,forever young - lil yachty
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,20,Computer Science,,"Either a certificate or another major in Data Science (in addition to primary, B.S. Computer Science)","53,715",151.7415,16.5004,Yes,pepperoni,cat,Yes,night owl,Maybe,Power Trip
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Business: Information Systems,N/A,Risk Management & Insurance,"53,715",32.7157,-117.1611,No,basil/spinach,dog,No,night owl,Yes,Hard place- HER
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Science: Physics,,Astronomy-physics,"53,715",33.4484,-112.074,No,sausage,dog,No,early bird,Yes,Angel Eyes by ABBA
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Statistics,,Journalism,"53,706",47.6,-122.33,Yes,mushroom,cat,No,night owl,Yes,Right now Scheherazde by Rimsey-Korsakov because we are playing it in orchestra.
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Data Science,,,"53,703",48.2092,16.3728,Yes,Other,cat,No,night owl,Yes,Nights - Frank Ocean
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Other (please provide details below).,Economics,Finance,"53,706",40.7128,-74.006,Maybe,mushroom,neither,Yes,no preference,Yes,Summer by Calvin Harris
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,21,Science: Other,n/a,n/a,"53,703",36.1627,-86.7816,No,pepperoni,dog,No,night owl,Yes,That's Why I Love Dirt Roads by Granger Smith
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Other (please provide details below).,Economic ,Data science ,"53,703",22.5431,114.0579,Yes,sausage,neither,Yes,no preference,No,Better now (Post Malone)
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC001,22,Other (please provide details below).,Economics,,"53,715",43.7696,11.2558,No,pepperoni,dog,No,night owl,Yes,Nights by Frank Ocean
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,20,Computer Science,,,"53,715",43.0333,-87.9223,Maybe,pepperoni,dog,Yes,night owl,Yes,Virtual Insanity
+COMP SCI 319:LEC002,LEC002,23,Business: Other,None,None,"53,703",39.9042,116.4074,No,mushroom,dog,No,early bird,Yes,Past Lives
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,20,Business: Actuarial,,,"53,715",41.8781,87.6298,No,pepperoni,cat,Yes,early bird,No,Got It On Me by Pop Smoke
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Data Science ,Economics ,"53,703",40.7831,-73.9713,Yes,Other,dog,No,no preference,No,"It's Been a Long, Long Time"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Science: Other,Atmospheric and Oceanic Sciences (Meterology),,"53,715",43.0744,-89.3925,No,macaroni/pasta,dog,Yes,night owl,Yes,All Night Longer - Sammy Adams
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Computer Science,,,"53,715",42.3611,71.0589,No,Other,dog,Yes,night owl,Yes,Way Back Home by Shaun
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,"53,706",43.6532,-79.3832,No,pepperoni,dog,Yes,no preference,Maybe,Demons by Imagine Dragons
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,statistics,"data science, pre-law, economics","53,706",35.6895,139.6917,Maybe,mushroom,dog,No,night owl,Yes,Graduation by Kanye West
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Engineering: Mechanical,,,"53,706",43.0085,-87.9144,No,pepperoni,dog,No,night owl,Yes,Heartless
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Business: Finance,,,"53,703",41.7058,-91.5812,No,sausage,dog,No,night owl,Yes,Lady May - Tyler Childers
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Engineering: Mechanical,,I think I would want to go into film ,"53,726",37.7749,-122.4194,No,pepperoni,cat,Yes,early bird,No,"I dont have a favorite song right now but I really like artists like juice world and xxxtentacion
+
+ 
+
+my favorite songs by those artists are 
+
+Man of The Year - JuiceWrld
+
+Vice City - XXXTENTACION"
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Industrial,,,"53,703",33.6088,-117.8734,Maybe,sausage,dog,No,night owl,Maybe,until the sun needs to rise
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Business: Information Systems,,Finance,"50,376",41.87,-87,No,pepperoni,dog,No,night owl,Yes,Jungle Drake
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Computer Science,,,"53,715",28.5812,77.0509,Maybe,Other,dog,No,night owl,Yes,Jingle Bell- Hommie Dilliwala
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical," 
+
+N/A",N/A,"53,711",41.4993,-81.6944,No,pepperoni,dog,No,night owl,Yes,90210- Travis Scott
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Statistics,,,"50,376",22.2032,-159.4957,No,sausage,dog,No,night owl,Maybe,He Can Only Hold Her by Amy Winehouse
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Science: Other,Neurobiology,,"53,706",43.0731,-89.4012,No,Other,dog,Yes,night owl,Yes,Brandy by Looking Glass
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,"53,706",51.5074,-0.1278,No,macaroni/pasta,cat,Yes,night owl,Yes,The Other Side of Paradise by Glass Animals
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,"53,706",33.4484,-112.074,No,pepperoni,dog,No,night owl,Yes,“The Nights” by Avicii
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Other (please provide details below).,Statistics and Data Science,History Minor,"53,715",41.8781,-87.6298,Yes,pineapple,dog,Yes,night owl,Yes,Runaway by Kanye West
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Engineering: Mechanical,,,"53,715",37.3891,-5.9845,No,pepperoni,dog,No,early bird,Maybe,
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,"53,703",33.4942,11.9261,No,sausage,dog,No,no preference,Maybe,SHout at the devil
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Engineering: Mechanical,,,"53,715",28.3642,82.6955,No,Other,cat,No,night owl,Yes,Snow by Zach Byran
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,"53,706",51.5,-0.12,Maybe,Other,neither,Yes,night owl,Yes,GIVE ME EVERYTHING
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Psychology ,Data Science as certificates ,"53,703",38.914,121.614,Maybe,sausage,dog,No,night owl,Maybe,90210 by travis scott
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC004,18,Engineering: Biomedical,n/a,n/a,"53,706",43.0656,-89.3962,No,mushroom,dog,Yes,early bird,No,Bad habit by steve lacy
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Computer Science,,,"53,711",31.326,75.5762,No,pepperoni,dog,No,night owl,Maybe,Unstoppable (By Sia)
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC001,20,Engineering: Biomedical,,,"53,703",55.9502,-3.1875,No,pepperoni,cat,No,night owl,Yes,Leaning On You By HAIM
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,22,Science: Chemistry,,,"53,726",20.7984,-156.3319,No,sausage,dog,No,night owl,Yes,"""The Good I'll Do"" by Zach Bryan"
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Mechanical Engineering ,History and Minor in Educational Studies,"53,705",43.0731,-89.4012,No,pepperoni,cat,No,no preference,Maybe,"Currently, ""Used to the Darkness,"" by Des Roc 
+
+ "
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,,Engineering: Mechanical,,,"53,706",41.8781,-87.6298,No,pepperoni,dog,Yes,no preference,Maybe,Savior- Kendrick Lamar
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC001,19,Business: Information Systems,,International Business,"53,706",45.1858,109.2468,Maybe,basil/spinach,dog,Yes,night owl,No,"""Body"" Loud Luxury"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Other (please provide details below).,Atmospheric & Oceanic Sciences,,"53,711",43.6123,-110.7054,No,macaroni/pasta,dog,No,night owl,Maybe,Party in the USA by Miley Cyrus
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Data Science,,International Studies,"53,706",110.7624,43.4799,Yes,basil/spinach,dog,Yes,no preference,Yes, What Once Was - Her's
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Other (please provide details below).,"Human Development and Family Studies
+
+ ",Psychology,"53,715",23,113,No,pepperoni,cat,Yes,no preference,Yes,SOS
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Business: Other,Marketing ,Psychology,"53,706",40.7831,73.9712,No,sausage,cat,No,night owl,Yes,Everybody wants to go to heaven - Glenn Yarbrough and the limeliters
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Computer Science,,Data Science,"53,121",38.9344,-74.9224,Maybe,pepperoni,dog,No,night owl,Maybe,Replay
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Business: Information Systems,Business: Information Systems,"OTM, Data Science minor","53,706",22.3193,114.1694,Maybe,macaroni/pasta,dog,Yes,night owl,Yes,Memphis Doom by Kordhell
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Other (please provide details below).,,Industrial Engineering or Econ as 2nd major.,"53,703",42.3601,-71.0589,Yes,sausage,dog,Yes,early bird,Yes,"""Where Da Hood At?"" by DMX"
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Business: Information Systems,,,"53,706",46.2276,2.2137,Yes,sausage,dog,Yes,early bird,Maybe,Flowers by Miley Cyrus
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Science: Biology/Life,,Data Science Certificate,"53,715",50.0755,14.4378,No,pepperoni,cat,Yes,early bird,Yes,Mirrorball by Zinadelphia
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Data Science,My primary major is data science,My secondary major is Economics,"53,703",35,103,Yes,pineapple,dog,No,early bird,Maybe,Highest in the Room
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Engineering: Mechanical,,,"53,703",44.5133,-88.0133,No,pepperoni,dog,No,night owl,Maybe,This Side of a Dust Cloud by Morgan Wallen
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Computer Science,,,"53,703",40.7128,-74.006,No,mushroom,dog,Yes,night owl,Yes,Warning by Morgan Wallen
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,22,Business: Finance,,,"53,703",42.3601,-71.0589,No,sausage,dog,No,night owl,Yes,Underwater - Rufus Du Sol
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Engineering: Mechanical,,,"53,706",51.5074,-0.1278,No,sausage,dog,No,no preference,Yes,Read My Mind
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Engineering: Other,,,"53,711",43.1169,-89.5621,Maybe,macaroni/pasta,cat,Yes,night owl,No,Honest Baby Keem
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Other (please provide details below).,Economics w/ math emphasis,,"53,703",41.8781,-87.6298,No,pepperoni,dog,No,early bird,No,Jigsaw Falling Into Place
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,"53,706",21.3414,158.1242,No,sausage,dog,No,early bird,No,Duke's On Sunday by Jimmy Buffett OR
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Statistics,,"Data Science
+
+Political Science","53,711",35.1815,136.9066,Yes,mushroom,dog,No,early bird,Yes,"Livin on A prayer Bon Jovi
+
+ "
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Engineering: Biomedical,,,"53,706",43.0376,-90,No,sausage,dog,No,night owl,Yes,Location - Playboy Carti
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Business: Information Systems,,,"53,706",41.8818,-87.6232,Maybe,pepperoni,dog,Yes,night owl,Yes,me enamaora by juanes
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,Economics BS,N/A,"53,706",0.3157,32.5781,Yes,green pepper,dog,Yes,early bird,Maybe,"Calm Down, Rema"
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,"53,706",40.2133,-77.008,No,pepperoni,dog,No,night owl,Maybe,freebird
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Computer Science,,,"53,706",42.3611,71.0589,Yes,pepperoni,dog,Yes,early bird,No,Slide by Calvin Harris
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,"53,706",35.6895,139.6917,No,pepperoni,dog,Yes,night owl,No,take me back to the night we met
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Engineering: Other,,,"53,706",51.5074,-0.1278,No,sausage,cat,No,night owl,Yes,"""Velvet Light"" Jakob Ogawa"
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Science: Chemistry,,,"53,703",41.8781,-87.6298,No,pepperoni,dog,No,night owl,Maybe,Miss Understood - Little Simz
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,21,Data Science,,,"53,703",15.8451,-85.9351,Yes,Other,dog,No,night owl,Yes,Beautiful Girls
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Other (please provide details below).,Economics,Data Science Certificate ,"53,703",32.7157,-117.1611,Maybe,pepperoni,dog,No,no preference,Yes,Daniel- Elton John
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Computer Science,,Mathematics,"53,711",43.0478,-88.0014,No,basil/spinach,cat,Yes,night owl,Yes,Answers
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Business: Actuarial,,,"53,715",43.0731,-89.4012,No,pineapple,dog,Yes,night owl,Yes,"""Best Song Ever"""
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Science: Physics,,,"53,715",29.5669,106.593,Maybe,none (just cheese),cat,No,night owl,Maybe,
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Other (please provide details below).,Economics,,"53,703",43.0289,-87.9722,No,pineapple,dog,No,no preference,Maybe,Hysteria by Def Leppard
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Mathematics/AMEP,,,"53,706",7.2575,80.521,Maybe,none (just cheese),cat,No,no preference,Maybe,IZ-US – aphex twin
+COMP SCI 319:LEC003,LEC003,,Science: Biology/Life,,,"53,705",40.4406,-79.9959,No,pepperoni,neither,No,night owl,Maybe,Be Quiet and Drive (Far Away)
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,20,Engineering: Other,,,"53,701",7.7368,98.3068,Maybe,sausage,dog,Yes,night owl,Yes,Otherside - Red Hot Chili Peppers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Business: Actuarial,,,"53,706",43.04,-87.91,Maybe,pepperoni,dog,No,no preference,No,Cabo - Bankrol Hayden
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Mechanical,,,"53,706",41.8781,-87.6298,No,Other,cat,Yes,no preference,Yes,too many to choose from
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Other (please provide details below).,BBA in finance with double major in Data science. ,data science,"1,520",30.2741,120.1551,Yes,sausage,neither,Yes,night owl,Yes,I don't have one. 
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Science: Other,Geoscience,Atmospheric and Oceanic Science,"53,704",41.8781,-87.6298,No,green pepper,cat,No,early bird,No,State of Grace by Taylor Swift
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Science: Biology/Life,,,"53,715",40.713,-74,No,pepperoni,dog,No,night owl,Yes,POSE by MICHELLE
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,,"53,715",52.3631,4.8795,No,pepperoni,dog,Yes,early bird,Maybe,Mastermind by Taylor Swift
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,23,Data Science,,,"53,711",40.7537,-73.0814,Yes,pepperoni,dog,Yes,night owl,Yes,"I usually follow the trends in music. Currently one of my favorite songs is Creepin' by Metro Boomin, The Weeknd, and 21 Savage."
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,"53,706",24.1635,120.6467,No,sausage,cat,Yes,night owl,Maybe,Wasting Time - Chiiild
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Data Science,,Political Science,"53,706",18.4655,-66.1057,Yes,mushroom,dog,Yes,early bird,Yes,Gypsy by Fleetwood Mac
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Business: Finance,,Risk management,"53,715",30.2741,120.1551,Maybe,mushroom,cat,Yes,night owl,Maybe,Last Suprise- Lyn
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Engineering: Biomedical,,,"53,706",26.4536,-81.9571,No,pineapple,dog,No,night owl,Maybe,My favorite song is probably Head Over Heels by Tears for Fears
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Business: Actuarial,,Risk Management and Insurance,"53,703",44.9537,93.09,No,pepperoni,dog,No,night owl,No,Daydreaming - Harry Styles
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Economics,,"53,703",39.9167,116.3833,Maybe,pepperoni,dog,No,night owl,Maybe,Ghost by Matthew Parker
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,"53,726",34.8697,-111.7609,No,Other,cat,No,night owl,Yes,Hold the Line - Toto
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC001,19,Engineering: Biomedical,,,"53,706",44.9537,93.09,No,pineapple,dog,Yes,early bird,No,Whole Wide World
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Data Science,,,"53,719",41.8781,-87.6298,Yes,green pepper,dog,No,night owl,Maybe,This Is Amazing Grace
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Engineering: Biomedical,,,"53,706",42.9955,-88.0957,No,mushroom,dog,Yes,night owl,Yes,Don't Fear the Reaper
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,22,Computer Science,NA,Business,"53,715",17.385,78.4867,No,mushroom,dog,No,night owl,Yes,Un Millon by The Marias 
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Science: Biology/Life,,"Digital Studies (certificate), Computer Science (certificate)","53,703",51.3151,3.1309,No,pineapple,cat,No,night owl,Yes,"Defying Gravity - Wicked
+
+The Tree on the Hill - The Lightening Thief Musical
+
+Reckless Driving - Lizzy McAlpine
+
+Hawk in the Night - Madds Buckley
+
+Stick Season - Noah Kahan
+
+Dear John - Taylor Swift
+
+Sorry I couldn't pick just one!"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Data Science,,,"53,703",21.3069,-157.8583,No,pepperoni,neither,Yes,no preference,No,i want war(BUT I NEED PEACE) - Kali Uchis
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Business: Information Systems,,Business: Marketing,"53,705",35.6895,139.6917,No,none (just cheese),cat,No,night owl,Yes,Ghost in the Machine - Sza ft Phoebe Bridgers
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC001,19,Engineering: Mechanical,,,"53,706",25.7019,-80.4362,No,macaroni/pasta,dog,No,night owl,Yes,mitis
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Engineering: Biomedical,,,"53,706",39.6417,74.1886,No,basil/spinach,dog,Yes,night owl,Yes,"Walking on a Dream, Empire by the Sun"
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Data Science,,,"53,703",41.8818,87.6298,Yes,pepperoni,dog,No,early bird,Maybe,You Should Probably Leave - Chris Stapleton
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,,Statistics,,,"53,706",40.7128,-74.006,Yes,none (just cheese),dog,No,night owl,Maybe,When We Were Young by Adele
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Business: Finance,My primary major is finance,My secondary major will either be information systems or data science depending on how I feel at the end of the semester,"53,726",30.0444,31.2357,Yes,none (just cheese),neither,No,early bird,Yes,Rich Flex by 21 savage and drake
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC001,19,Other (please provide details below).,Data Science and Psychology,,"53,706",34.0522,-118.2437,Yes,pineapple,cat,No,early bird,Yes,dramatic
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Other,,,"53,706",19.4326,-99.1332,No,pepperoni,dog,No,no preference,Yes,Me Porto Bonito by Bad Bunny
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Engineering: Biomedical,,,"53,706",41.8781,-87.6298,No,pineapple,dog,No,no preference,No,Self Care - Mac Miller
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,20,Business: Other,Management and Human Resources,Neurobiology,"53,703",41.9134,-87.675,No,pineapple,dog,Yes,early bird,Maybe,It's a long way to the top (if you want to rock and roll)
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Consumer Behavior and Marketplace Studies ,Certificate on Data Science,"53,719",43.0731,-89.4012,No,sausage,dog,No,no preference,Yes,Mic Drop by BTS
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Computer Science,,,"53,706",32.7157,-117.1611,Maybe,pineapple,dog,Yes,no preference,Maybe,"""PB & J"" by Mitchell James"
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,"53,711",41.882,-87.7057,No,Other,cat,No,no preference,Yes,dark red by steve lacy
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Engineering: Mechanical,,,"53,706",32.0853,34.7818,No,pineapple,dog,Yes,no preference,Maybe,The great gig in the sky - pink floyd
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,21,Computer Science,N/A,N/A,"53,711",17.385,78.4867,No,pineapple,neither,No,night owl,No,Tum Hi Ho
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Science: Biology/Life,,,"53,706",37.7749,122.4194,Yes,none (just cheese),dog,No,night owl,Yes,Under the Sun by Cuco
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,20,Engineering: Biomedical,N/A,N/A,"53,703",40.7672,-73.9101,No,sausage,dog,No,early bird,No,Good Old Fashioned Lover Boy by Queen
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Engineering: Biomedical,,,"53,715",41.8781,-87.6298,No,pepperoni,dog,Yes,night owl,Yes,How to Save a Life by The Fray
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,20,Other (please provide details below).,Economics,,"53,562",21.3891,39.8579,No,mushroom,cat,No,night owl,Yes,New Light by John Mayor
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC001,18,Statistics,,,"53,703",47.56,7.59,Maybe,Other,dog,No,no preference,No,Wait for It by Leslie Odom Jr. 
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Data Science,None.,None.,"53,706",41.9028,12.4964,Maybe,pepperoni,dog,Yes,night owl,Yes,Mr. Brightside by The Killers
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Data Science,"I am an Economics major, but I am trying to pair that with a data science certificate.","No secondary majors, just one certificate.","53,706",43.041,-87.906,Maybe,pepperoni,dog,No,early bird,No,reloaded - Chicken P
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,17,Other (please provide details below).,im currently in highschool and I don't know what major I am going to do yet,,"53,562",41.0082,28.9784,Maybe,mushroom,dog,No,night owl,Yes,"""Whats good"" by tyler the creator"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,21,Business: Finance,,Supply Chain Management,"53,703",61.431,-142.9113,No,sausage,dog,Yes,early bird,Yes,Lemon Tree by Mt. Joy
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Business: Actuarial,,Mathematics,"53,706",46.01,-91.4821,Yes,pepperoni,dog,Yes,night owl,Yes,"4 Da Gang by 42 Dugg
+
+ "
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,22,Other (please provide details below)., Econ and DS,maybe also minor in sth,"53,703",23.129,113.2532,Maybe,mushroom,dog,Yes,no preference,No,Lemon (Kenshi Yonezu)
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics,,"53,703",43.07,89.4,No,pepperoni,dog,No,night owl,Yes,Seven Nation Army by The White Stripes
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Engineering: Industrial,,,"53,703",-6.369,34.888,No,macaroni/pasta,dog,No,night owl,Yes,Love Sosa
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Engineering: Biomedical,,,"53,706",42.3601,71.0589,No,pineapple,dog,Yes,early bird,Yes,We Are The Champions
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Data Science,,Economics,"53,706",1.3521,103.8198,Yes,pepperoni,dog,Yes,night owl,Yes,love. - kid cudi
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Business: Finance,,,"53,703",40.7128,-74.006,No,pepperoni,dog,Yes,early bird,Yes,Party USA by Katy Perry
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Business: Information Systems,n/a,n/a,"53,706",41.8781,87.6298,No,Other,neither,Yes,night owl,Yes,jumbotron by drake
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,"53,706",41.8781,-87.6298,No,none (just cheese),dog,No,night owl,Yes,Instant Crush by Daft Punk
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,18,Business: Finance,,Data Science,"53,715",20.7984,-156.3319,Yes,pepperoni,dog,No,early bird,Yes,Firework- Katy Perry
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,"53,706",4.711,-74.0721,No,pineapple,dog,Yes,night owl,Maybe,no role modelz
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Business: Finance,,,"53,706",37.3382,-121.8863,No,pineapple,dog,No,night owl,Yes,Good News by Mac Miller
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,,Data Science,,Economics,"53,715",53.48,-2.24,Yes,sausage,dog,Yes,night owl,Maybe,Hotel California by The Eagles
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC001,,Business: Other,,legal studies ,"53,706",40.9386,21.1063,Maybe,pineapple,dog,Yes,night owl,No,L-O-V-E by Nat King Cole 
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,,Engineering: Mechanical,,,"53,706",41,12,No,sausage,cat,Yes,night owl,Yes,Ram Ranch
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,"53,703",42.1098,-87.7335,No,macaroni/pasta,dog,No,night owl,Maybe,On Wisconsin
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Business: Other,"Hi, I'm in Economics major "," I wanna double data science major as well. I also take a business certificate.
+
+ ","53,703",23.1291,113.2644,Yes,pepperoni,neither,No,night owl,Maybe,"ummmm doubletake. I love the rhyme 
+
+ "
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Engineering: Mechanical,,,"53,726",38.5327,-105.9969,No,green pepper,dog,Yes,night owl,Maybe,good news by mac miller
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,N/A,I'm looking at getting certificates in Business Operations or Administration,"53,706",-37.8004,174.87,Maybe,pineapple,dog,No,night owl,Maybe,Enchanted by Taylor Swift or I Only Have Eyes for You by The Flamingos
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC001,26,Engineering: Mechanical,,,"53,703",37.5665,126.978,No,pineapple,dog,No,night owl,No,Sunflower 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Business: Actuarial,,RMI,"53,706",44.1562,12.2181,No,basil/spinach,dog,Yes,night owl,Yes,Too many
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC001,18,Other (please provide details below).,undecided,none,"53,706",32.7157,117.1611,Maybe,pepperoni,cat,No,no preference,Yes,Outerspace - BEAUZ
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Business: Finance,,,"53,703",47.6495,-122.3708,No,sausage,dog,No,night owl,Yes,Stairway to Heaven by Led Zeppelin
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Engineering: Mechanical,,,"53,706",-13.5207,-71.9791,No,pepperoni,cat,No,night owl,Yes,Forever After All - Luke Combs
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,,,"53,706",43.6123,-110.7054,No,sausage,dog,No,night owl,Maybe,Love by kid cudi
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,"53,706",37.7749,-122.4194,No,none (just cheese),cat,No,early bird,Yes,Pursuit of Happiness - Kid Cudi
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,"53,706",37.8531,15.2879,Maybe,Other,cat,No,no preference,Maybe,Interstate Love Song- Stone Temple Pilots
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,,Business: Finance,,,"53,705",22,120,Maybe,pineapple,neither,Yes,night owl,Yes,love story
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Data Science,,,"53,726",64.1814,51.6941,Yes,sausage,dog,Yes,night owl,No,sweater weather 
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Engineering: Mechanical,,,"53,716",38.9072,-77.0369,No,pepperoni,dog,Yes,night owl,No,Una Vez
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Business: Information Systems,,,"53,715",43.0731,-89.4012,No,sausage,dog,No,night owl,Yes,Life is a Highway
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Business: Information Systems,,,"53,706",44.9591,89.6301,No,pepperoni,cat,No,no preference,Yes,Supermarket Flowers -Ed Sheeran
+COMP SCI 319:LEC003,LEC003,,Languages,,,"53,562",31,121,Maybe,pineapple,dog,No,no preference,Yes,生而为人
+COMP SCI 319:LEC002,LEC002,23,Other (please provide details below).,Information - Data Analytics track,NA,"53,705",43.0731,-89.4012,Maybe,pepperoni,cat,No,night owl,No,No Hands
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Other,My primary major is Engineering Mechanics.,N/A,"53,703",43.07,-89.4,Maybe,none (just cheese),dog,Yes,early bird,Yes,Wish you were here - Pink Floyd
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Finance,Information Systems,"53,706",35.6895,139.6917,No,pepperoni,dog,No,early bird,No,Playlist (Kid Quill)
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Data Science,,,"53,706",41.8781,-87.6298,Yes,pepperoni,dog,No,night owl,Yes,Feathered Indians - Tyler Childers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC001,19,Other (please provide details below).,Undecided ,,"53,704",26.4434,-82.1115,Yes,pineapple,cat,No,no preference,Maybe,Coming Home by Leon Bridges
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Data Science,,Information Science,"53,703",25.7617,-80.1918,Yes,pepperoni,dog,No,night owl,Yes,Love Yourz - J Cole
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,24,Other (please provide details below).,"I was a psychology major at my undergraduate. Now, I work as a Post-Bac Research Specialist here in the Department of Psychology. My next desired degree will be a PhD in Clinical Psychology!",N/A,"53,716",45.8998,6.1284,No,Other,cat,No,night owl,Maybe,The Perfect Girl by Mareux
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Business: Information Systems,,Economics,"53,703",43.66,-70.26,No,sausage,dog,No,early bird,Yes,Band on the Run - Wings
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Economics BA,no,"53,703",28.6829,115.8582,Maybe,Other,dog,No,night owl,Yes,Under the Stars
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,ECONOMICS BS,NO,"53,703",23.1,113.2,Maybe,basil/spinach,cat,No,night owl,Maybe,"F.Chopin, Ballade No.1, Op.23"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,Economics,consumer behavior and marketplace studies,"53,715",28.6139,77.209,No,none (just cheese),dog,Yes,night owl,Maybe,Bad idea- girl in red
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,"53,706",35.7796,-78.6382,No,none (just cheese),dog,Yes,no preference,No,"I can't pick just one, but anything Lana Del Rey. "
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Science: Biology/Life,,Political Science,"53,706",42.3601,-71.0589,No,macaroni/pasta,dog,No,night owl,Yes,"""Conversations in the Dark"" by John Legend"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Business: Other,Real Estate & Urban Land Economics,Data Science Certificate,"53,706",43.0731,-89.4012,No,none (just cheese),dog,No,night owl,Maybe,90210 by Travis Scott
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC001,19,Other (please provide details below).,Information Science,Data Science certificate,"53,715",41.9104,-85.9825,No,pepperoni,dog,Yes,night owl,No,Big Parade by the Lumineers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Other (please provide details below).,Economics,Political Science,"53,715",38.9072,-77.0369,Yes,none (just cheese),dog,Yes,night owl,Yes,Ode to a Conversation Stuck in Your Throat - Del Water Gap
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Mechanical,,,"53,706",45.5122,-122.6587,No,basil/spinach,dog,Yes,early bird,Yes,Fergalicious by Fergie 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Business: Other,I am an HR management major,Information Science ,"53,711",30.0444,31.2357,No,Other,cat,No,night owl,Yes,Closer
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Data Science,,"Economics, and/or Pre-Business (Marketing or Finance)","53,715",40.2848,-76.6493,Yes,none (just cheese),cat,No,night owl,Maybe,MCK by Group Project
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Other,Materials Science and Engineering,,"53,711",41.3814,2.1776,No,Other,dog,No,night owl,Yes,Bird's Eye View - Static Selektah
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Data Science,,Economics,"53,706",39.9526,-75.1652,Yes,mushroom,cat,Yes,night owl,No,1937 State Park
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Biomedical,,,"53,706",45.4631,-88.787,No,mushroom,cat,Yes,night owl,No,Hotel Room Service by Pitbull
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Business: Actuarial,,"Data Science, Risk Management & Insurance","53,706",37.7749,-122.4194,Yes,pineapple,dog,No,early bird,No,Paris
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Statistics,,Data Science is my second major,"53,706",38.9494,-77.0611,Yes,pepperoni,dog,Yes,night owl,Yes,"Absolutely have no idea. Too many favorites. I know its a cop out answer, but its all I've got. "
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC001,19,Mathematics/AMEP,,"Data Science certificate, Business certificate","53,703",43.0722,89.4008,No,basil/spinach,cat,No,early bird,Maybe,Goodbye Yellow Brick Road
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Business: Information Systems,,Accounting,"53,715",47.6062,-122.3321,No,sausage,dog,Yes,early bird,No,Rich Girl
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Other (please provide details below).,Economics ,,"53,703",51.5099,-0.1181,No,mushroom,dog,Yes,early bird,No,"Burn, Burn, Burn by Zach Bryan"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC001,19,Business: Finance,,Information systems,"53,715",44.8413,-93.1669,No,pepperoni,dog,Yes,night owl,Yes,Pursuit of Happiness
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Engineering: Industrial,,,"53,703",44.9365,-93.6579,No,pineapple,dog,No,night owl,Yes,August 
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Data Science,,,"53,711",40.7128,-74.006,Yes,pepperoni,dog,No,night owl,Yes,Last Last - Burna Boy
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Business: Information Systems,,Business: Accounting,"53,715",44.4214,-92.0081,No,mushroom,dog,Yes,no preference,Maybe,Runaway
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,20,Computer Science,,Cert in Data Science,"53,711",43.3196,3.3125,No,green pepper,dog,Yes,night owl,Yes,Venetia- Lil Uzi Vert
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Engineering: Biomedical,,,"53,715",43.0403,-87.9147,No,sausage,dog,Yes,no preference,Yes,Jack and Diane
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,21,Other (please provide details below).,Communication arts,Strategic communication,"53,703",43.0731,-89.4012,No,mushroom,cat,Yes,early bird,Yes,她的睫毛
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,22,Other (please provide details below).,Journalism and mass communication,Data Science,"53,703",30.2741,120.1551,Maybe,pineapple,dog,Yes,night owl,Maybe,N95 - Kendrick Lamer
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Computer Science,,Data Science,"53,706",37.3688,-122.0363,Yes,Other,neither,No,early bird,Yes,Hungarian Rhapsody No. 2 by Franz Liszt
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,economics,,"53,706",39.1303,-94.6362,No,pineapple,cat,Yes,night owl,Yes,missed calls
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,"53,706",35.6895,139.6917,Maybe,pepperoni,dog,Yes,night owl,Yes,The ills by Denzel Curry
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,,"53,706",41.83,-87.6,No,macaroni/pasta,cat,No,no preference,No,Other Side of the Door
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC001,21,Other (please provide details below).,Right now BSE,n/a,"53,703",33.6189,117.9298,No,mushroom,dog,No,early bird,No,Caught in the Country
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,18,Engineering: Mechanical,,,"53,706",42.4155,-88.0731,No,pepperoni,dog,No,no preference,No,It's too hard to pick
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,21,Data Science,,,"53,590",43.1892,-89.2567,Yes,mushroom,dog,Yes,early bird,Maybe,a whole new world - aladdin
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,,Science: Other,,,"53,589",42.3314,-83.0458,No,pepperoni,neither,No,night owl,Maybe,Paint Me Red
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,21,Science: Other,,,"53,715",45.1872,87.1209,No,pepperoni,dog,Yes,no preference,No,Space Song - Beach House
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,22,Mathematics/AMEP,,,"53,703",21.3069,-157.8583,No,pepperoni,dog,No,early bird,Yes,One More Time - Daft Punk
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC001,18,Other (please provide details below).,"I'm currently still deciding between several different majors. Originally, I applied to UWMadison with the intention of majoring in Nutritional Sciences but I'm currently leaning towards economics. ",,"53,706",37.5665,126.978,No,macaroni/pasta,cat,No,no preference,Yes,I don't have one
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,"53,706",47.7429,-90.3265,No,pepperoni,dog,Yes,early bird,No,Inevitable by Lauren Daigle 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,23,Data Science,.,.,"53,704",32.7157,-117.1611,Yes,pepperoni,dog,Yes,early bird,Maybe,Avicii - Wake me up
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,,Computer Science,,,"53,703",40.7128,-74.006,Maybe,none (just cheese),neither,No,no preference,Maybe,i dont listen music 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,econ,data Science ,"53,706",39.9333,116.4446,Yes,pineapple,neither,No,night owl,No,catch my breath
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Engineering: Industrial,,I also major in Statistics ,"53,726",3.139,101.6869,Maybe,pepperoni,dog,No,early bird,Maybe,The Weight by The Band
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Business: Actuarial,,Also majoring in Risk Management and Insurance,"53,715",47.6,-122.3,No,sausage,dog,No,night owl,Maybe,Lover by Taylor Swift
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,20,Other (please provide details below).,Economics,,"53,703",43.0739,-89.3852,Yes,none (just cheese),cat,No,early bird,Maybe,Oblivion - Grimes
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Biomedical,,,"53,706",42.3601,-71.0589,No,none (just cheese),dog,Yes,night owl,Maybe,Strawberry Sunscreen by Lostboycrow
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Science: Other,Atmospheric and Oceanic Science,,"53,706",52.3676,4.9041,Maybe,mushroom,dog,No,no preference,No,'I Need a Dollar' - MOLOW & Ben Hamilton 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Biomedical,,,"53,706",44.9437,-93.0943,No,basil/spinach,dog,Yes,night owl,Yes,Life on Mars? by David Bowie
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,22,Science: Other,,,"53,563",42.3601,-71.0589,No,sausage,dog,No,early bird,Yes,Til Tomorrow by Walker McGuire
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,economics ,data science ,"53,706",26.2389,73.0243,No,mushroom,neither,No,night owl,Yes,dekhte dekhte
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Other (please provide details below).,I intend to be an information science major ,I was thinking of doing a certificate in computer science and entrepreneurship ,"53,711",43.0695,-89.4097,No,sausage,dog,Yes,early bird,Maybe,Straightjacket by Quinn XCII
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Other (please provide details below).,Neurobiology,Data Science,"53,706",42.1106,-86.4794,Yes,pepperoni,dog,No,early bird,Yes,
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Other,Chemical Engineering,,"53,715",40.1209,9.0129,Maybe,basil/spinach,dog,No,night owl,No,"Feels- Pharrell Williams, Katy Perry, Big Sean"
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,22,Computer Science,,,"53,726",24.1477,120.6736,Yes,mushroom,dog,Yes,night owl,Maybe,Last Dance
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,data science,"53,715",22.132,-159.6152,Yes,pepperoni,dog,No,early bird,Maybe,"burn, burn, burn by zach bryan"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC001,19,Engineering: Biomedical,,Thinking about Electrical engineering double major,"53,706",55.6761,12.5683,No,basil/spinach,dog,Yes,no preference,Maybe,Say it ain't so by Weezer
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,,Computer Science,,,"53,706",48.8566,2.3522,No,pineapple,dog,No,night owl,No,Homecoming - Kanye
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,"53,703",25.2048,25.2048,No,none (just cheese),dog,No,night owl,Maybe,Maan Meri Jaan - King
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,,Science: Biology/Life,,,"53,703",25.033,121.5654,No,pepperoni,neither,No,night owl,Maybe,The Final Countdown
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,"53,706",42.3601,-71.0589,Maybe,sausage,dog,No,night owl,Yes,"All time: David Ashley Parker -Travis Denning
+
+Current: All the Good Ones Are -Brothers Osborne"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Engineering: Biomedical,,,"53,706",33.4934,-117.1488,No,pepperoni,dog,Yes,early bird,No,Enchanted by Taylor Swift.
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Business: Information Systems,,,"53,572",42.3601,-71.0589,No,pepperoni,cat,Yes,night owl,Yes,On Wisconsin
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Business: Information Systems,,Marketing,"53,705",11.7128,76.1104,No,sausage,neither,Yes,early bird,No,Jurassic Park theme song
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Other (please provide details below).,Economics with math emphasis.,Mathematics.,"53,703",40.7128,-74.006,No,pepperoni,dog,No,night owl,No,Boy With Love by BTS
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,"53,706",44.5052,-89.7646,Maybe,mushroom,dog,No,early bird,No,The Great War by Taylor Swift
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,25,Statistics,,,"53,703",32.7157,-117.1611,No,mushroom,cat,No,early bird,Yes,OMG - NewJeans
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Business: Finance,,Economics,"53,706",43.4796,-110.7624,Maybe,pepperoni,dog,No,early bird,Maybe,Can I Kick It?
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Science: Biology/Life,,,"53,703",42.3611,71.0571,No,green pepper,dog,No,night owl,Yes,Come Together - The Beatles 
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Engineering: Biomedical,,,"53,706",48.8566,2.3522,No,macaroni/pasta,cat,No,no preference,Maybe,Oogum Boogum 
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,Mechanical engineering,,"53,715",4.6243,-74.0636,No,Other,dog,Yes,no preference,Maybe,Cherries by Hope Tala & Amine
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Science: Other,Economics,,,"53,715",10.7522,Maybe,sausage,dog,Yes,no preference,Yes,Buttercup by Hippo Campus
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Business: Finance,,,"53,715",39.9,115.7,No,pineapple,dog,No,night owl,No,Bad habits
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,22,Engineering: Biomedical,,,"53,715",43.0731,-89.4012,No,pepperoni,cat,No,early bird,Yes,Detroit Rock City by Kiss
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Business: Marketing,Business: Information Systems,"53,706",49.2827,-123.1207,No,pepperoni,dog,Yes,early bird,Maybe,Ghost - Justin Bieber
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,18,Data Science,,,"53,706",40.7128,-74.006,Yes,mushroom,dog,No,no preference,Maybe,"Daylight by Joji, Diplo"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Engineering: Biomedical,,,"53,703",45.19,-87.11,No,none (just cheese),dog,Yes,early bird,No,Feathered Indians
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Science: Biology/Life,,,"53,706",43.4796,-110.7623,Yes,mushroom,dog,No,no preference,No,As We Ran by The National Parks
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Engineering: Biomedical,,,"53,726",42.3601,-71.0589,No,basil/spinach,dog,No,night owl,Yes,Allemania by Twin Shadow
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Data Science,,,"53,706",21.3099,157.8581,Maybe,pepperoni,dog,No,early bird,Yes,Blue Cheese 
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,"53,706",43.0731,-89.4012,No,pepperoni,dog,Yes,night owl,Maybe,Sunny Day by Mr Tout Le Monde
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Engineering: Industrial,,,"53,715",41.9028,12.4964,Maybe,sausage,dog,No,night owl,Yes,La solissitude stromae
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Science: Biology/Life,,,"53,715",1.3521,103.8198,Maybe,pepperoni,dog,No,no preference,Yes,Attention -NewJeans
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Biomedical,,,"53,706",45.146,-92.433,Maybe,sausage,dog,No,no preference,Yes,&watch by Billie Eilish
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Political Science,Data Science Certificate ,"53,703",51.5072,0.1276,Maybe,pepperoni,dog,Yes,early bird,Maybe,Eyes of the World by the Grateful Dead
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Engineering: Mechanical,,,"53,706",-34.6037,-58.3816,No,mushroom,dog,No,night owl,No,Don't Look Back in Anger -Oasis
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,20,Business: Other,,Supply Chain Management,"53,715",37.3382,-121.8863,No,sausage,dog,Yes,night owl,Maybe,Mac Miller - Hurt Feelings
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Data Science,,N/A,"53,715",28.404,-81.5769,Maybe,tater tots,neither,Yes,night owl,Yes,"My favorite song is ""Don't Stop Me Now"" by Queen."
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,20,Data Science,N/A,Mechanical Engineering,"54,703",39.7392,-104.9903,Yes,basil/spinach,dog,No,early bird,Yes,XO - EDEN
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Business: Entrepreneurship,Data Science,"53,706",42.8163,-89.6399,Yes,macaroni/pasta,dog,Yes,no preference,No,Mia and Sebastian's Theme from La la land
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Mathematics/AMEP,,Education studies (plan to declare),"53,715",48.8566,2.3522,No,sausage,dog,Yes,night owl,Maybe,Underground-Lindsey Stirling
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,20,Business: Actuarial,,Risk Management and Insurance,"52,703",43.0389,-87.9065,No,pepperoni,dog,No,night owl,Yes,Party in the USA
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,"53,703",44.9998,-88.3687,No,none (just cheese),neither,No,night owl,No,"""Fight For Your Right"" by the Beastie Boys"
+COMP SCI 319:LEC001,LEC001,22,Business: Information Systems,,,"53,715",40.4168,-3.7038,Maybe,pepperoni,dog,No,no preference,Maybe,Die for you by The Weeknd
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,,Business: Information Systems,,,"53,706",42.5847,-87.8212,Maybe,none (just cheese),dog,No,night owl,Yes,pink + white
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Business: Information Systems,N/A,N/A,"53,706",37.7749,-122.4194,No,basil/spinach,dog,Yes,no preference,Maybe,The Spins - Mac Miller
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Business: Information Systems,,finance ,"53,716",22.3964,114.1095,No,mushroom,dog,No,no preference,Maybe,Something in the orange 
+COMP SCI 319:LEC002,LEC002,26,Science: Other,I'm a graduate student in the Educational Psychology department.,,"53,705",30.1,104,Maybe,pineapple,cat,No,night owl,Yes,You owe me
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Data Science,,Actuarial science,"53,715",27.9171,42.3551,Yes,tater tots,neither,No,no preference,Maybe,See you again
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,23,Engineering: Industrial,,,"53,703",43.0731,-89.4012,No,pepperoni,dog,No,early bird,Maybe,"Jane, Jefferson Starship"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,,"53,703",37.5665,126.978,No,pineapple,cat,No,early bird,Maybe,Norwegian Wood by The Beatles
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,"53,706",33.1959,117.3795,No,pepperoni,dog,No,early bird,Yes,Goodbye Stranger by Supertramp
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Business: Finance,Finance and banking,,"53,706",26.6141,-81.8258,Maybe,pepperoni,dog,No,night owl,Maybe,Mr blue sky
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Other,,,"53,706",36.6876,23.056,No,sausage,dog,No,night owl,Yes,Vienna-Billy Joel
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Biomedical,,,"53,703",41.8781,-87.6298,Yes,green pepper,dog,No,night owl,Yes,
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,Data Science,"53,715",40.8518,14.2681,Yes,mushroom,dog,Yes,night owl,No,Raindrops - Travis Scott
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,29,Data Science,,,"53,713",22.3964,114.1095,Yes,pepperoni,dog,Yes,early bird,No,Dry Flower - Yuuri
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Science: Other,undecided science,n/a,"53,706",41.4544,-72.8184,No,pepperoni,dog,No,night owl,No,Stick Season - Noah Kahan
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Data Science,,,"53,706",38.9072,-77.0369,Yes,basil/spinach,dog,No,early bird,No,"""Somebody Else"" by The 1975."
+COMP SCI 319:LEC001,LEC001,24,Business: Information Systems,,,"53,715",31.5204,74.3587,No,mushroom,cat,No,early bird,Maybe,Counting Stars by One Republic
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Computer Science,,"Data Science, Polish","53,706",54.356,18.6461,Yes,pepperoni,cat,Yes,early bird,No,Behind Blue Eyes - The Who
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,"53,705",37.7749,-122.4194,No,pepperoni,dog,No,no preference,Yes,Dancing in the Moonlight by Toploader
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Other (please provide details below).,Economics,,"53,715",43.0688,-89.4012,No,sausage,dog,No,night owl,Yes,All Along the Watchtower
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,21,Engineering: Other,Chemical Engineering,Chemistry,"53,726",41.8781,-87.6298,No,green pepper,dog,Yes,night owl,Maybe,Landslide by Fleetwood Mac
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,22,Computer Science,,,"53,705",43.0731,-89.4012,No,sausage,dog,No,early bird,Yes,"Circles, Post Malone"
+COMP SCI 319:LEC004,LEC004,,Other (please provide details below).,Pharmaceutical sciences,,"53,705",32.0603,118.7969,No,pineapple,cat,Yes,night owl,Maybe,Love story
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Other (please provide details below).,"political science
+
+ ",economics,"53,715",113.6253,34.7466,No,mushroom,neither,No,early bird,Yes,kanye west - Runaway
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Biomedical,,,"53,706",42.0816,-88.1556,No,sausage,dog,No,night owl,Yes,"Its either 
+
+*************
+4:44 - Jay Z 
+*************
+
+or
+
+**************************************
+Евгений Белоусов - Девчонка-Девчоночка
+**************************************
+
+[] (https://www.youtube.com/@evgeniybelousov6194)"
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Engineering: Biomedical,,,"53,706",18.3402,-67.2499,No,macaroni/pasta,dog,No,night owl,Yes,Feathered Indians
+COMP SCI 319:LEC003,LEC003,30,Other (please provide details below).,communication,,"53,705",48.86,2.35,Maybe,mushroom,neither,No,night owl,Yes,What a wonderful world
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,,Data Science,,,"53,706",41.8781,-87.6298,Yes,pepperoni,dog,Yes,no preference,Yes,"""Happy?"" by Caye"
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Engineering: Biomedical,,,"53,703",37.7749,-122.4194,Maybe,pineapple,dog,Yes,night owl,Maybe,stars align by majid jordan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC001,21,Mathematics/AMEP,,data science ,"53,711",30.5728,104.0668,Yes,pepperoni,dog,Yes,night owl,No,Stay-Justin biber/ come around me- Justin bieber
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC001,20,Other (please provide details below).,math,"data science, statistic","53,715",39.9167,116.3833,Yes,pineapple,neither,No,night owl,Maybe,never gonna give you up 
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Science: Biology/Life,,,"53,715",30.25,120.1667,No,pineapple,cat,No,night owl,No,70%
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC001,20,Engineering: Industrial,,,"53,706",36.1627,-86.7816,No,Other,dog,Yes,night owl,Maybe,Everlong - FooFighters
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Biomedical,,,"53,706",20.7194,-156.4464,No,basil/spinach,dog,Yes,night owl,Yes,"Broken Clocks 
+
+- Sza"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,24,Data Science,,I would like to get CS certificate,"53,715",37.5042,127.0106,Yes,pineapple,dog,No,night owl,Yes,OMG - NewJeans
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,,Engineering: Biomedical,,,"53,703",34.0522,-118.2437,No,pepperoni,dog,Yes,night owl,Yes,Lavender Sunflower
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Industrial,,,"53,703",-33.8688,151.2093,No,pineapple,dog,Yes,early bird,Yes,Beautiful girls by Sean Kingston 
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,23,Data Science,Data Science BA,None,"53,711",36.0671,120.3826,Yes,sausage,dog,Yes,night owl,Maybe,Daoxiang- Jay Chou
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,Genetics & Genomics,"53,706",23.1136,-82.3666,No,pepperoni,dog,Yes,night owl,Yes,Sleep on the Floor by the Lumineers
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Statistics,,Economics,"53,715",31.2304,121.4737,Maybe,mushroom,dog,No,early bird,Maybe,Joker and the queen
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,20,Science: Biology/Life,,,"53,715",31.8229,96.5422,No,mushroom,dog,Yes,no preference,No,I WONDER - LOUDNESS
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Data Science,,Mathematics,"53,703",29.8683,121.544,Yes,green pepper,neither,No,no preference,Maybe,Seasons of love
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,,Engineering: Mechanical,,,"53,706",41.8781,-87.6298,No,pepperoni,dog,No,night owl,Yes,Beware- Big Sean
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Engineering: Biomedical,,,"53,706",21.2576,-86.7468,No,none (just cheese),dog,No,night owl,Yes,Jashn-E-Bahaaraa by A.R. Rahman
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,69,Science: Other,Physics,Astronomy,"53,590",59.5,-0.1,No,pepperoni,cat,No,early bird,Maybe,Inagaddadavida
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,21,Data Science,,,"53,703",23.0508,113.7518,Yes,pepperoni,dog,No,no preference,Maybe,群青 by YOASOBI
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,23,Business: Information Systems,Information System,Data Science,"53,715",38,128,Maybe,pepperoni,dog,Yes,night owl,No,Garden
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Science: Biology/Life,,,"53,706",48.8566,2.3522,Maybe,mushroom,cat,No,night owl,Maybe,opera House - cigarettes after sex
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Data Science,,I also plan to major in Economics. ,"53,706",34.0522,-118.2437,Yes,pineapple,dog,No,night owl,Yes,The Valley of the Pagans (feat. Beck) by Gorillaz. 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Other (please provide details below).,Economics ,Environmental Studies ,53.715,50.6279,3.0408,No,mushroom,cat,Yes,night owl,Yes,Emerald Eyes by Fleetwood Mac
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Business: Finance,,,"53,706",34.1383,-118.3595,Yes,pepperoni,dog,Yes,night owl,Maybe,90210 by Travis Scott
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Information Science,Certificate: Data Science,"53,706",48.8566,2.3522,No,pepperoni,dog,Yes,early bird,No,Fabregas: Viens Voir 
+COMP SCI 319:LEC002,LEC002,26,Other (please provide details below).,"Neuroscience, Neuroengineering ",,"53,703",32.0853,34.7818,No,basil/spinach,cat,Yes,night owl,Yes,מכה אפורה
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Data Science,,,"53,703",41.8781,87.6298,Yes,none (just cheese),neither,No,night owl,Yes,Normal Girl by SZA
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Engineering: Biomedical,n/a,"Nuclear Engineering, Biology","53,703",51.5074,-0.1278,No,pineapple,dog,No,night owl,Yes,(always changing) Nobody to Love by Sigma
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Sociology,,"53,715",52.3702,4.8952,Maybe,basil/spinach,cat,No,night owl,Yes,Evergreen by Mt. Joy
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Business: Other,n/a,n/a,"53,706",41.3851,2.1734,Maybe,pepperoni,dog,No,night owl,Maybe,"""How Do I Make You Love Me"" by the Weekend"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Science: Other,N/A,N/A,"53,715",38.5733,-109.5498,Maybe,pepperoni,dog,No,no preference,Yes,Burn The House Down by AJR
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,,Science: Other,,,"53,706",47.6062,-122.3321,Maybe,Other,dog,Yes,early bird,Maybe,Blue Eyes by Elton John
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Computer Science,,,"53,711",40,116,Maybe,pepperoni,neither,Yes,early bird,Maybe,"Currently it's ""Wildfire"" by Periphery"
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,21,Engineering: Industrial,N/A,N/A,,"53,706",48.8566,No,pepperoni,neither,No,night owl,No,Ferre Gola Titanic
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,18,Computer Science,N/A,N/A,"8,820",42.3601,-71.0589,Maybe,sausage,dog,No,no preference,No,Give Me Everything by Pitbull
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Other (please provide details below).,Consumer Behavior and Marketplace Studies,Education Studies,"53,703",29.9958,120.5861,No,Other,dog,No,no preference,Yes,Rock with You
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Engineering: Biomedical,,,"53,706",43.0731,-89.4012,No,pepperoni,dog,No,night owl,No,Crazy Story Pt. 3 by King Von
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,20,Statistics,,economics,"53,715",43.066,-89.4025,No,pineapple,dog,No,early bird,Maybe,"i don't have one, but i enjoy 80s rock"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,21,Data Science,,,"53,703",40.7128,-74.006,Yes,pepperoni,dog,No,no preference,Maybe,"Never Recover by Lil Baby, Gunna, Drake"
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC001,18,Other (please provide details below).,economics,,"53,706",66.5039,25.7294,Yes,pepperoni,neither,No,night owl,Maybe,Pushing 21
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Science: Biology/Life,,,"53,562",43.1005,-75.2694,No,pineapple,cat,Yes,night owl,Yes,Objects in the mirror - Mac Miller
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Computer Science,N/A,Data Science certificate,"53,706",32.6099,-85.4808,Maybe,pepperoni,cat,Yes,night owl,Maybe,STAY
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Engineering: Mechanical,,,"53,706",-37.8136,144.9631,Yes,sausage,dog,No,night owl,No,Rhapsody in Blue by George Gershwin
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Biomedical,,,"53,703",37.1773,-3.5986,No,none (just cheese),dog,No,night owl,Maybe,Spirits by Nothing More
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC001,19,Computer Science,,,"53,711",34.0522,-118.2437,Yes,green pepper,dog,Yes,night owl,Yes,see you again
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Engineering: Biomedical,,,"53,706",43.0813,-88.9117,No,none (just cheese),cat,Yes,early bird,Yes,Could Have Been Me The Struts
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Science: Physics,,,"53,715",23.0504,112.45,Maybe,sausage,dog,No,night owl,Yes,the sound of silence
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC001,20,Business: Finance,,"Marketing, International Business ","53,706",44.2726,-88.3964,Maybe,pepperoni,dog,No,no preference,Maybe,"Discoteka - Lola Indigo, Maria Becerra"
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Legal Studies,,"53,715",32.7157,-117.1611,No,mushroom,cat,No,night owl,Yes,Poster Kid by Peach Martine
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,23,Science: Biology/Life,N/A,Global Health,"53,726",44.9415,-93.2657,No,mushroom,cat,No,early bird,No,Blood of the Dragon by Ramin Djawadi 
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Data Science,,,"53,715",40.7548,-73.9882,Yes,Other,dog,No,early bird,No,Right now it would be Ghungroo
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Science: Biology/Life,,,"53,715",-12.0464,-77.0428,No,none (just cheese),cat,No,night owl,Yes,"Shakira: Bzrp Music Sessions, Vol.53"
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Mathematics/AMEP,,,"53,706",7.9519,98.3381,Yes,pineapple,cat,Yes,night owl,Yes,There is a light that never goes out
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Computer Science,,Data Science,"53,706",39.6278,-106.0363,Yes,pepperoni,cat,Yes,early bird,No,Hasta Luego by JID
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Science: Biology/Life,N/A,N/A,"53,726",37.9838,23.7275,No,pineapple,cat,No,night owl,Yes,Thrones of Blood by Sullivan King
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC003,19,Engineering: Mechanical,,,"53,521",45.8711,89.7093,Maybe,sausage,dog,No,night owl,Yes,You Proof
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,Data science,"Economics, Japanese","95,030",35.6762,139.6503,Yes,basil/spinach,cat,No,no preference,Maybe,California Dreamin
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,,Data Science,,,"53,705",34.3632,107.2378,Yes,pepperoni,cat,No,night owl,Yes,
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC002,19,Engineering: Mechanical,,,"53,703",43.0389,87.9,No,pepperoni,cat,Yes,no preference,No,The color violet
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,22,Science: Other,My major is environmental science.,,"53,703",43.0731,-89.4012,No,Other,neither,Yes,no preference,Yes,Parties is my favorite song.
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Business: Information Systems,,,"53,706",40.6645,-73.9774,Maybe,pepperoni,dog,Yes,early bird,Maybe,Basketball Shoes- Black Country New Road
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Other (please provide details below).,Economics,,"53,703",45,91,No,pepperoni,dog,No,night owl,Yes,None
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Engineering: Biomedical,,,"53,703",32.11,34.78,No,basil/spinach,cat,Yes,early bird,No,talkin tennessee
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Engineering: Other,none ,no major ,"53,706",42.3601,-71.0589,Maybe,mushroom,dog,Yes,night owl,Yes,Till Forever Falls Apart: Ashe & Finneas 
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,economics,education studies ,"53,726",,,No,pineapple,dog,No,night owl,No,Blue Bird
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,21,Other (please provide details below).,Consumer Behavior and Market Studies (Consumer Science),Data Science Cert.,"53,703",41.8781,-87.6298,No,pepperoni,dog,Yes,early bird,Maybe,Monks - Frank Ocean
+COMP SCI 319:LEC004,LEC001,,Business: Finance,,,"53,703",40.9368,632.7729,Maybe,mushroom,neither,Yes,early bird,No,"So many, and I am in 319 but the canvas shows 220 section 1"
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Statistics,,"Data Science, Mathematics","53,706",43.6343,-88.7298,Yes,Other,cat,No,night owl,Maybe,Hotel California - Eagles
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC001,19,Computer Science,,"I'm also a Data Science major, secondary to Computer Science.","53,703",39.9526,-75.1652,Yes,none (just cheese),dog,Yes,night owl,Yes,Nose on the Grindstone - Tyler Childers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Business: Information Systems,,,"53,706",34.0522,-118.2437,Maybe,none (just cheese),cat,No,night owl,Yes,Here with me - D4vd
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,"53,706","53,913",43.4711,No,pepperoni,dog,No,night owl,No,Dancing in the moonlight 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC001,21,Mathematics/AMEP,,,"53,703",1.3521,103.8198,Maybe,pineapple,neither,No,no preference,No,Free Loop
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Biomedical,,,"53,706",32.7555,-98.9026,No,pepperoni,cat,No,early bird,Yes,My Life
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,21,Engineering: Industrial,N/A,N/A,"53,706",41.8781,-87.6298,No,sausage,cat,No,early bird,Yes,Nonsense by Sabrina Carpenter
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Engineering: Mechanical,,,"53,706",-22.9068,-43.1729,No,sausage,dog,No,early bird,No,Blue Notes by Meek Mill
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Science: Biology/Life,,,"53,726",40.7792,-73.969,Yes,basil/spinach,dog,No,early bird,Maybe,"Respiration, by Black Star ft. Common
+
+(If you like hip-hop this one is truly special)"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Engineering: Biomedical,N/A,N/A,"53,703",41.881,-87.623,No,pepperoni,dog,Yes,night owl,No,Seperate Ways- Journey
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC001,18,Engineering: Mechanical,,,"53,726",35,-86,No,sausage,dog,No,early bird,Yes,"On Wisconsin (sorry, I had to)"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,"53,703",37.1568,-82.7398,No,pepperoni,dog,No,no preference,Yes,Chiquitita - ABBA
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC001,18,Data Science,,,"53,706",51.5074,-0.1278,Yes,pepperoni,neither,No,night owl,Yes,"Sing About Me, I’m dying of thirst by Kendrick Lamar"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Mechanical,,,"53,706",40.7128,-74.006,No,pepperoni,dog,No,night owl,No,"""I Don't Want to Be"" by Gavin Degraw"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,EconomicsE,Economics,"53,706",32.4,119.43,Yes,Other,dog,No,early bird,Maybe,August
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Engineering: Biomedical,,Certificate in Computer Science,"53,703",40.047,-105.272,No,pineapple,dog,Yes,early bird,No,All My Love by Noah Kahan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Data Science,,Economics,"53,706",51.1784,115.5708,Yes,pepperoni,dog,No,no preference,No,Quittin’ time -Morgan wallen
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Engineering: Biomedical,,,"53,715",45.68,-90.39,No,pepperoni,dog,Yes,night owl,No,Monica Lewinski
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Business: Information Systems,,,"53,715",40.7128,-74.006,No,sausage,dog,No,no preference,Yes,Something in the Orange by Zach Bryan
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Biomedical,,,"53,706",35.6895,139.6917,No,macaroni/pasta,dog,No,night owl,Maybe,Shoot Me by Day6
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Other (please provide details below).,Economics ,N/A,"53,715",51.5074,-0.1278,Maybe,sausage,dog,Yes,early bird,Maybe,My favorite song is My Way from Frank Sinatra 
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC001,20,Data Science,,,"53,715",19.1141,72.9003,Yes,none (just cheese),cat,Yes,night owl,Yes,Dogs - Pink Floyd
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC001,25,Mathematics/AMEP,,Statistics,"53,715",43.2315,-87.9868,No,sausage,cat,No,early bird,Maybe,Numb
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC001,21,Mathematics/AMEP,,,"53,703",51.5074,-0.1278,Maybe,pepperoni,cat,Yes,night owl,Yes,Speak to Me -Pink Floyd
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Business: Actuarial,,"Risk Management and Insurance, Data Science","53,726",1.4594,103.7649,Yes,pineapple,neither,No,night owl,Yes,“How to Train Your Dragon” main theme
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,,43.0779,-89.4234,No,macaroni/pasta,neither,No,night owl,Yes,Probably Adrenaline by Shinedown
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Engineering: Mechanical,,,"53,706",40.7128,-74.006,No,pepperoni,dog,No,no preference,No,Vienna - Billy Joel
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Other (please provide details below).,economic,,"53,703",31.2304,121.4737,No,pineapple,neither,No,night owl,Maybe,lover-Taylor swift 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Biomedical,,,"53,706",43.0722,89.4008,No,sausage,neither,Yes,night owl,Yes,Can't Take My Eyes off of You - Frankie Valli
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Economics ,Certificate in Data Science ,"53,703",118.2437,34.0522,No,none (just cheese),cat,Yes,early bird,Maybe,No favorite but I like jazz music
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,,Engineering: Mechanical,,,"53,706",41.8781,-87.6298,No,basil/spinach,dog,No,early bird,No,Lover - Taylor Swift
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,20,Science: Biology/Life,,,"53,715",30.5728,104.066,No,pineapple,cat,No,night owl,Maybe,all too well
diff --git a/s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_lec002.ipynb b/s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice.ipynb
similarity index 82%
rename from s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_lec002.ipynb
rename to s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice.ipynb
index 2652b1a..9cd2768 100644
--- a/s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_lec002.ipynb
+++ b/s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice.ipynb
@@ -1,5 +1,29 @@
 {
  "cells": [
+  {
+   "cell_type": "markdown",
+   "id": "130915f9",
+   "metadata": {},
+   "source": [
+    "# Announcements - Iteration Practice\n",
+    "\n",
+    "* Download ALL files for today's lecture\n",
+    "* Exam\n",
+    "  * Number 2 pencil\n",
+    "  * Note sheet\n",
+    "  * Arrive 15 minutes early to scan in\n",
+    "  * Bring ID\n",
+    "  * Room assignment via Canvas Message (before Tuesday)\n",
+    "  * Wednesday February 22 :: 5:45 - 7:15 pm\n",
+    "  * McBurney February 22 :: 5:30 - 8:30 pm\n",
+    "    * Extended Time / Small Group (no need to contact me\n",
+    "    * Anything else - you needed to tell me last week what you need\n",
+    "  * Alternate Thursday February 23 :: 5:45 - 7:15\n",
+    "  * Lab 332 Alternate Wednesday February 22 :: 7:30\n",
+    "  *[Practice Exams](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-lecture-material/-/tree/main/s23/old_exams/exam1)\n",
+    "* No Quiz this week\n"
+   ]
+  },
   {
    "cell_type": "markdown",
    "id": "6a76ef95",
@@ -55,15 +79,16 @@
        " '__student__',\n",
        " 'count',\n",
        " 'get_age',\n",
-       " 'get_latitude',\n",
        " 'get_lecture',\n",
-       " 'get_longitude',\n",
-       " 'get_major',\n",
+       " 'get_other_majors',\n",
        " 'get_pet_owner',\n",
-       " 'get_piazza_topping',\n",
+       " 'get_pizza_topping',\n",
+       " 'get_primary_major',\n",
        " 'get_procrastinator',\n",
        " 'get_runner',\n",
+       " 'get_section',\n",
        " 'get_sleep_habit',\n",
+       " 'get_song',\n",
        " 'get_zip_code']"
       ]
      },
@@ -101,23 +126,20 @@
       "    get_age(idx)\n",
       "        get_age(idx) returns the age of the student in row idx\n",
       "    \n",
-      "    get_latitude(idx)\n",
-      "        get_latitude(idx) returns the latitude of the student's favourite place in row idx\n",
-      "    \n",
       "    get_lecture(idx)\n",
       "        get_lecture(idx) returns the lecture of the student in row idx\n",
       "    \n",
-      "    get_longitude(idx)\n",
-      "        get_longitude(idx) returns the longitude of the student's favourite place in row idx\n",
-      "    \n",
-      "    get_major(idx)\n",
-      "        get_major(idx) returns the major of the student in row idx\n",
+      "    get_other_majors(idx)\n",
+      "        get_other_majors(idx) returns the secondary major of the student in row idx\n",
       "    \n",
       "    get_pet_owner(idx)\n",
-      "        get_pet_owner(idx) returns the pet preference of student in row idx\n",
+      "        get_pet_owner(idx) returns whether student in row idx is a pet owner\n",
       "    \n",
-      "    get_piazza_topping(idx)\n",
-      "        get_piazza_topping(idx) returns the preferred pizza toppings of the student in row idx\n",
+      "    get_pizza_topping(idx)\n",
+      "        get_pizza_topping(idx) returns the preferred pizza toppings of the student in row idx\n",
+      "    \n",
+      "    get_primary_major(idx)\n",
+      "        get_primary_major(idx) returns the primary major of the student in row idx\n",
       "    \n",
       "    get_procrastinator(idx)\n",
       "        get_procrastinator(idx) returns whether student in row idx is a procrastinator\n",
@@ -125,17 +147,23 @@
       "    get_runner(idx)\n",
       "        get_runner(idx) returns whether student in row idx is a runner\n",
       "    \n",
+      "    get_section(idx)\n",
+      "        get_lecture(idx) returns the section of the student in row idx\n",
+      "    \n",
       "    get_sleep_habit(idx)\n",
       "        get_sleep_habit(idx) returns the sleep habit of the student in row idx\n",
       "    \n",
+      "    get_song(idx)\n",
+      "        get_procrastinator(idx) returns the student in row idx favorite song\n",
+      "    \n",
       "    get_zip_code(idx)\n",
       "        get_zip_code(idx) returns the residential zip code of the student in row idx\n",
       "\n",
       "DATA\n",
-      "    __student__ = [{'Age': '22', 'Latitude': '43.073051', 'Lecture': 'LEC0...\n",
+      "    __student__ = [{'Age': '', 'Latitude': '22.5726', 'Lecture': 'LEC004',...\n",
       "\n",
       "FILE\n",
-      "    /Users/msyamkumar/Desktop/CS220_Fall_2022/cs220-lecture-material/f22/meena_lec_notes/lec-12/project.py\n",
+      "    c:\\users\\drgsr\\documents\\uw-madison\\spring-2023\\cs220-lecture-material\\s23\\gurmail_lecture_notes\\12_iteration_practice\\project.py\n",
       "\n",
       "\n"
      ]
@@ -163,7 +191,7 @@
     {
      "data": {
       "text/plain": [
-       "992"
+       "789"
       ]
      },
      "execution_count": 4,
@@ -192,7 +220,7 @@
     {
      "data": {
       "text/plain": [
-       "'21'"
+       "'20'"
       ]
      },
      "execution_count": 5,
@@ -241,7 +269,7 @@
     {
      "data": {
       "text/plain": [
-       "'LEC001'"
+       "'LEC003'"
       ]
      },
      "execution_count": 7,
@@ -308,13 +336,13 @@
    "id": "af3d9d8c",
    "metadata": {},
    "source": [
-    "### How many current lecture (example: LEC001) students are in the dataset? \n",
+    "### How many current lecture (example: LEC003) students are in the dataset? \n",
     "\n",
     "- use `for` loop to iterate over the dataset:\n",
     "    - `count` function gives you total number of students\n",
     "    - use `range` built-in function to generate sequence of integers from `0` to `count - 1`\n",
     "- use `get_lecture` to retrieve lecture column value\n",
-    "- use `if` condition, to determine whether current student is part of `LEC001`\n",
+    "- use `if` condition, to determine whether current student is part of `LEC003`\n",
     "    - `True` evaluation: increment count\n",
     "    - `False` evaluation: nothing to do"
    ]
@@ -328,7 +356,7 @@
     {
      "data": {
       "text/plain": [
-       "197"
+       "166"
       ]
      },
      "execution_count": 10,
@@ -340,7 +368,7 @@
     "count = 0\n",
     "for idx in range(project.count()):\n",
     "    lecture = project.get_lecture(idx)\n",
-    "    if lecture == \"LEC002\":\n",
+    "    if lecture == \"LEC003\":\n",
     "        count += 1\n",
     "count"
    ]
@@ -350,14 +378,14 @@
    "id": "b9ff6434",
    "metadata": {},
    "source": [
-    "### What is the age of the oldest student in current lecture (example: LEC001)?\n",
+    "### What is the age of the oldest student in current lecture (example: LEC003)?\n",
     "\n",
     "- use `for` loop to iterate over the dataset just like last problem\n",
     "- use `get_age` to retrieve lecture column value\n",
     "    - if: age is '' (empty), move on to next student using `continue`\n",
     "    - make sure to typecast return value to an integer\n",
     "- use `get_lecture` to retrieve lecture column value\n",
-    "- use `if` condition, to determine whether current student is part of `LEC001`\n",
+    "- use `if` condition, to determine whether current student is part of `LEC003`\n",
     "    - use `if` condition to determine whether current student's age is greater than previously known max age\n",
     "        - `True` evaluation: replace previously known max age with current age\n",
     "        - `False` evaluation: nothing to do"
@@ -372,7 +400,7 @@
     {
      "data": {
       "text/plain": [
-       "42069"
+       "30"
       ]
      },
      "execution_count": 11,
@@ -391,7 +419,7 @@
     "        continue\n",
     "    age = int(age)\n",
     "    \n",
-    "    if lecture == \"LEC002\":\n",
+    "    if lecture == \"LEC003\":\n",
     "        if age > max_age:\n",
     "            max_age = age\n",
     "max_age"
@@ -402,7 +430,7 @@
    "id": "b40a32fb",
    "metadata": {},
    "source": [
-    "### What is the age of the youngest student in current lecture (example: LEC001)?\n",
+    "### What is the age of the youngest student in current lecture (example: LEC003)?\n",
     "- use similar algorithm as above question"
    ]
   },
@@ -434,7 +462,7 @@
     "        continue\n",
     "    age = int(age)\n",
     "    \n",
-    "    if lecture == \"LEC002\":\n",
+    "    if lecture == \"LEC003\":\n",
     "        if min_age == None or age < min_age:\n",
     "            min_age = age\n",
     "min_age"
@@ -460,7 +488,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Average student age is: 64.8225806451613\n"
+      "Average student age is: 19.7063599458728\n"
      ]
     }
    ],
@@ -492,8 +520,7 @@
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Age of some student who likes to have fun :) : 42069\n",
-      "Average student age is: 19.608180839612487\n"
+      "Average student age is: 19.7063599458728\n"
      ]
     }
    ],
@@ -510,7 +537,7 @@
     "        continue\n",
     "    age = int(age)\n",
     "\n",
-    "    if age < 0 or age > 118:\n",
+    "    if age < 0 or age > 125:\n",
     "        print(\"Age of some student who likes to have fun :) :\", age)\n",
     "        continue\n",
     "    total_age += age\n",
@@ -525,7 +552,7 @@
    "id": "48f1c791",
    "metadata": {},
    "source": [
-    "### What major is the youngest student in current lecture (example: LEC001) planning to declare?\n",
+    "### What major is the youngest student in current lecture (example: LEC003) planning to declare?\n",
     "- now, we need to find some other detail about the youngest student\n",
     "- often, you'll have to keep track of ID of the max or min, so that you can retrive other details about that data entry"
    ]
@@ -539,7 +566,7 @@
     {
      "data": {
       "text/plain": [
-       "'Undecided'"
+       "'Engineering: Mechanical'"
       ]
      },
      "execution_count": 15,
@@ -559,12 +586,12 @@
     "        continue\n",
     "    age = int(age)\n",
     "    \n",
-    "    if lecture == \"LEC002\":\n",
+    "    if lecture == \"LEC003\":\n",
     "        if min_age == None or age < min_age:\n",
     "            min_age = age\n",
     "            min_age_idx = idx\n",
     "\n",
-    "project.get_major(min_age_idx)"
+    "project.get_primary_major(min_age_idx)"
    ]
   },
   {
@@ -572,22 +599,22 @@
    "id": "5294702a",
    "metadata": {},
    "source": [
-    "### Considering current lecture students (example: LEC001), what is the age of the first student residing at zip code 53715?"
+    "### Considering current lecture students (example: LEC003), what is the age of the first student residing at zip code 53715?"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 16,
+   "execution_count": 17,
    "id": "fada2a40",
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "19"
+       "21"
       ]
      },
-     "execution_count": 16,
+     "execution_count": 17,
      "metadata": {},
      "output_type": "execute_result"
     }
@@ -604,7 +631,7 @@
     "        continue\n",
     "    age = int(age)\n",
     "    \n",
-    "    if lecture == \"LEC002\" and zipcode == \"53715\":\n",
+    "    if lecture == \"LEC003\" and zipcode == \"53,715\":\n",
     "        search_age = age\n",
     "        break # you found the first such student, so you can terminate the loop execution\n",
     "\n",
@@ -624,7 +651,7 @@
    "id": "2eeed867",
    "metadata": {},
    "source": [
-    "### How many current lecture (example: LEC001) students are runners? "
+    "### How many current lecture (example: LEC003) students are runners? "
    ]
   },
   {
@@ -632,7 +659,7 @@
    "id": "1ea57e12",
    "metadata": {},
    "source": [
-    "### How many current lecture (example: LEC001) students are procrastinators? "
+    "### How many current lecture (example: LEC003) students are procrastinators? "
    ]
   },
   {
@@ -640,7 +667,7 @@
    "id": "cf0ac7c8",
    "metadata": {},
    "source": [
-    "### How many current lecture (example: LEC001) students own or have owned a pet?"
+    "### How many current lecture (example: LEC003) students own or have owned a pet?"
    ]
   },
   {
@@ -648,7 +675,7 @@
    "id": "9aa8fe7b",
    "metadata": {},
    "source": [
-    "### How many current lecture (example: LEC001) students like pineapple on their pizza?"
+    "### How many current lecture (example: LEC003) students like pineapple on their pizza?"
    ]
   },
   {
@@ -656,7 +683,7 @@
    "id": "ffd5e10f",
    "metadata": {},
    "source": [
-    "### What sleep habit does the youngest student in current lecture (example: LEC001) have?\n",
+    "### What sleep habit does the youngest student in current lecture (example: LEC003) have?\n",
     "- try to solve this from scratch, instead of copy-pasting code to find mimimum age"
    ]
   },
@@ -665,7 +692,7 @@
    "id": "f255b95a",
    "metadata": {},
    "source": [
-    "### What sleep habit does the oldest student in current lecture (example: LEC001) have?"
+    "### What sleep habit does the oldest student in current lecture (example: LEC003) have?"
    ]
   },
   {
@@ -673,7 +700,7 @@
    "id": "a46d37b8",
    "metadata": {},
    "source": [
-    "### What is the age of the youngest student residing in zip code 53706?"
+    "### What is the age of the youngest student residing in zip code 53,706?"
    ]
   },
   {
@@ -681,7 +708,7 @@
    "id": "db60812c",
    "metadata": {},
    "source": [
-    "### Considering current lecture students (example: LEC001), is the first student with age 18 a runner?"
+    "### Considering current lecture students (example: LEC003), is the first student with age 18 a runner?"
    ]
   },
   {
@@ -721,12 +748,12 @@
    ]
   },
   {
-   "cell_type": "code",
-   "execution_count": null,
-   "id": "f2eae0bb",
+   "cell_type": "markdown",
+   "id": "9aaf09ba",
    "metadata": {},
-   "outputs": [],
-   "source": []
+   "source": [
+    "### What song is alphabetically last in the data set?"
+   ]
   }
  ],
  "metadata": {
diff --git a/s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_lec001.ipynb b/s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_lec001.ipynb
deleted file mode 100644
index d4ab29c..0000000
--- a/s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_lec001.ipynb
+++ /dev/null
@@ -1,753 +0,0 @@
-{
- "cells": [
-  {
-   "cell_type": "markdown",
-   "id": "6a76ef95",
-   "metadata": {},
-   "source": [
-    "# Iteration Practice"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "103da70b",
-   "metadata": {},
-   "source": [
-    "## Learning Objectives\n",
-    "\n",
-    "- Iterate through a dataset using for idx in range(project.count())\n",
-    "- Compute the frequency of data that meets a certain criteria\n",
-    "- Find the maximum or minimum value of a numeric column in a dataset\n",
-    "    - Handle missing numeric values when computing a maximum / minimum\n",
-    "    - Use the index of a maximum or minimum to access other information about that data item\n",
-    "- Use break and continue in for loops when processing a dataset\n",
-    "- Trace the output of a nested loop algorithm that prints out a game grid"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 1,
-   "id": "28961628",
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "import project"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 2,
-   "id": "c9341253",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "['__builtins__',\n",
-       " '__cached__',\n",
-       " '__doc__',\n",
-       " '__file__',\n",
-       " '__init__',\n",
-       " '__loader__',\n",
-       " '__name__',\n",
-       " '__package__',\n",
-       " '__spec__',\n",
-       " '__student__',\n",
-       " 'count',\n",
-       " 'get_age',\n",
-       " 'get_latitude',\n",
-       " 'get_lecture',\n",
-       " 'get_longitude',\n",
-       " 'get_major',\n",
-       " 'get_pet_owner',\n",
-       " 'get_piazza_topping',\n",
-       " 'get_procrastinator',\n",
-       " 'get_runner',\n",
-       " 'get_sleep_habit',\n",
-       " 'get_zip_code']"
-      ]
-     },
-     "execution_count": 2,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "# TODO: inspect the functions inside project module\n",
-    "dir(project)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 3,
-   "id": "d1dca7ae",
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Help on module project:\n",
-      "\n",
-      "NAME\n",
-      "    project\n",
-      "\n",
-      "FUNCTIONS\n",
-      "    __init__()\n",
-      "    \n",
-      "    count()\n",
-      "        This function will return the number of records in the dataset\n",
-      "    \n",
-      "    get_age(idx)\n",
-      "        get_age(idx) returns the age of the student in row idx\n",
-      "    \n",
-      "    get_latitude(idx)\n",
-      "        get_latitude(idx) returns the latitude of the student's favourite place in row idx\n",
-      "    \n",
-      "    get_lecture(idx)\n",
-      "        get_lecture(idx) returns the lecture of the student in row idx\n",
-      "    \n",
-      "    get_longitude(idx)\n",
-      "        get_longitude(idx) returns the longitude of the student's favourite place in row idx\n",
-      "    \n",
-      "    get_major(idx)\n",
-      "        get_major(idx) returns the major of the student in row idx\n",
-      "    \n",
-      "    get_pet_owner(idx)\n",
-      "        get_pet_owner(idx) returns the pet preference of student in row idx\n",
-      "    \n",
-      "    get_piazza_topping(idx)\n",
-      "        get_piazza_topping(idx) returns the preferred pizza toppings of the student in row idx\n",
-      "    \n",
-      "    get_procrastinator(idx)\n",
-      "        get_procrastinator(idx) returns whether student in row idx is a procrastinator\n",
-      "    \n",
-      "    get_runner(idx)\n",
-      "        get_runner(idx) returns whether student in row idx is a runner\n",
-      "    \n",
-      "    get_sleep_habit(idx)\n",
-      "        get_sleep_habit(idx) returns the sleep habit of the student in row idx\n",
-      "    \n",
-      "    get_zip_code(idx)\n",
-      "        get_zip_code(idx) returns the residential zip code of the student in row idx\n",
-      "\n",
-      "DATA\n",
-      "    __student__ = [{'Age': '22', 'Latitude': '43.073051', 'Lecture': 'LEC0...\n",
-      "\n",
-      "FILE\n",
-      "    /Users/msyamkumar/Desktop/CS220_Fall_2022/cs220-lecture-material/f22/meena_lec_notes/lec-12/project.py\n",
-      "\n",
-      "\n"
-     ]
-    }
-   ],
-   "source": [
-    "# TODO: inspect the project module's documentation\n",
-    "help(project)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "7fb78f6b",
-   "metadata": {},
-   "source": [
-    "### How many students does the dataset have?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 4,
-   "id": "d67a080f",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "992"
-      ]
-     },
-     "execution_count": 4,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "project.count()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "3c97d494",
-   "metadata": {},
-   "source": [
-    "### What is the age of the student at index 10?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 5,
-   "id": "bde8dc35",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "'21'"
-      ]
-     },
-     "execution_count": 5,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "id_10_age = project.get_age(10)\n",
-    "id_10_age"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 6,
-   "id": "b0f87a2c",
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "<class 'str'>\n"
-     ]
-    }
-   ],
-   "source": [
-    "# TODO: inspect return value type of get_age function\n",
-    "print(type(id_10_age))"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "37898141",
-   "metadata": {},
-   "source": [
-    "### What is the lecture number of the student at index 20?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 7,
-   "id": "ba993090",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "'LEC001'"
-      ]
-     },
-     "execution_count": 7,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "project.get_lecture(20)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "60730da8",
-   "metadata": {},
-   "source": [
-    "### What is the sleep habit of the student at the last index?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 8,
-   "id": "1d92e499",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "'night owl'"
-      ]
-     },
-     "execution_count": 8,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "project.get_sleep_habit(-1)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 9,
-   "id": "ef9dc31c",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "'night owl'"
-      ]
-     },
-     "execution_count": 9,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "project.get_sleep_habit(project.count() - 1)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "af3d9d8c",
-   "metadata": {},
-   "source": [
-    "### How many current lecture (example: LEC001) students are in the dataset? \n",
-    "\n",
-    "- use `for` loop to iterate over the dataset:\n",
-    "    - `count` function gives you total number of students\n",
-    "    - use `range` built-in function to generate sequence of integers from `0` to `count - 1`\n",
-    "- use `get_lecture` to retrieve lecture column value\n",
-    "- use `if` condition, to determine whether current student is part of `LEC001`\n",
-    "    - `True` evaluation: increment count\n",
-    "    - `False` evaluation: nothing to do"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 10,
-   "id": "e024c488",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "195"
-      ]
-     },
-     "execution_count": 10,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "count = 0\n",
-    "for idx in range(project.count()):\n",
-    "    lecture = project.get_lecture(idx)\n",
-    "    if lecture == \"LEC001\":\n",
-    "        count += 1\n",
-    "count"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "b9ff6434",
-   "metadata": {},
-   "source": [
-    "### What is the age of the oldest student in current lecture (example: LEC001)?\n",
-    "\n",
-    "- use `for` loop to iterate over the dataset just like last problem\n",
-    "- use `get_age` to retrieve lecture column value\n",
-    "    - if: age is '' (empty), move on to next student using `continue`\n",
-    "    - make sure to typecast return value to an integer\n",
-    "- use `get_lecture` to retrieve lecture column value\n",
-    "- use `if` condition, to determine whether current student is part of `LEC001`\n",
-    "    - use `if` condition to determine whether current student's age is greater than previously known max age\n",
-    "        - `True` evaluation: replace previously known max age with current age\n",
-    "        - `False` evaluation: nothing to do"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 11,
-   "id": "38bd778a",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "37"
-      ]
-     },
-     "execution_count": 11,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "max_age = 0\n",
-    "\n",
-    "for idx in range(project.count()):\n",
-    "    lecture = project.get_lecture(idx)\n",
-    "    age = project.get_age(idx)\n",
-    "    \n",
-    "    if age == '':\n",
-    "        continue\n",
-    "    age = int(age)\n",
-    "    \n",
-    "    if lecture == \"LEC001\":\n",
-    "        if age > max_age:\n",
-    "            max_age = age\n",
-    "max_age"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "b40a32fb",
-   "metadata": {},
-   "source": [
-    "### What is the age of the youngest student in current lecture (example: LEC001)?\n",
-    "- use similar algorithm as above question"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 12,
-   "id": "ea77e0cd",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "17"
-      ]
-     },
-     "execution_count": 12,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "min_age = None\n",
-    "\n",
-    "for idx in range(project.count()):\n",
-    "    lecture = project.get_lecture(idx)\n",
-    "    age = project.get_age(idx)\n",
-    "    \n",
-    "    if age == '':\n",
-    "        continue\n",
-    "    age = int(age)\n",
-    "    \n",
-    "    if lecture == \"LEC001\":\n",
-    "        if min_age == None or age < min_age:\n",
-    "            min_age = age\n",
-    "min_age"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "039ba82a",
-   "metadata": {},
-   "source": [
-    "### What is the average age of students enrolled in CS220 / CS319?\n",
-    "- you will get an interesting answer :)\n",
-    "- how can we ensure that data doesn't skew statistics?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 13,
-   "id": "ebfd7d8e",
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Average student age is: 64.8225806451613\n"
-     ]
-    }
-   ],
-   "source": [
-    "# Incorrect version: skewed statistics\n",
-    "total_age = 0\n",
-    "count = 0\n",
-    "\n",
-    "for idx in range(project.count()):\n",
-    "    age = project.get_age(idx)\n",
-    "    \n",
-    "    if age == '':\n",
-    "        continue\n",
-    "    age = int(age)\n",
-    "    total_age += age\n",
-    "    count += 1 # Be careful here: you cannot use the total count\n",
-    "    # Why? Because some students chose not to mention their age\n",
-    "\n",
-    "print(\"Average student age is:\", total_age / count)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 14,
-   "id": "600c5cf4",
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Age of some student who likes to have fun :) : 42069\n",
-      "Average student age is: 19.608180839612487\n"
-     ]
-    }
-   ],
-   "source": [
-    "# Correct version with bounds check\n",
-    "total_age = 0\n",
-    "count = 0\n",
-    "\n",
-    "for idx in range(project.count()):\n",
-    "    lecture = project.get_lecture(idx)\n",
-    "    age = project.get_age(idx)\n",
-    "    \n",
-    "    if age == '':\n",
-    "        continue\n",
-    "    age = int(age)\n",
-    "\n",
-    "    if age < 0 or age > 118:\n",
-    "        print(\"Age of some student who likes to have fun :) :\", age)\n",
-    "        continue\n",
-    "    total_age += age\n",
-    "    count += 1 # Be careful here: you cannot use the total count\n",
-    "    # Why? Because some students chose not to mention their age\n",
-    "\n",
-    "print(\"Average student age is:\", total_age / count)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "48f1c791",
-   "metadata": {},
-   "source": [
-    "### What major is the youngest student in current lecture (example: LEC001) planning to declare?\n",
-    "- now, we need to find some other detail about the youngest student\n",
-    "- often, you'll have to keep track of ID of the max or min, so that you can retrive other details about that data entry"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 15,
-   "id": "a524873b",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "'Statistics'"
-      ]
-     },
-     "execution_count": 15,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "min_age = None\n",
-    "min_age_idx = None\n",
-    "\n",
-    "for idx in range(project.count()):\n",
-    "    lecture = project.get_lecture(idx)\n",
-    "    age = project.get_age(idx)\n",
-    "    \n",
-    "    if age == '':\n",
-    "        continue\n",
-    "    age = int(age)\n",
-    "    \n",
-    "    if lecture == \"LEC001\":\n",
-    "        if min_age == None or age < min_age:\n",
-    "            min_age = age\n",
-    "            min_age_idx = idx\n",
-    "\n",
-    "project.get_major(min_age_idx)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "5294702a",
-   "metadata": {},
-   "source": [
-    "### Considering current lecture students (example: LEC001), what is the age of the first student residing at zip code 53715?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 16,
-   "id": "fada2a40",
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "21"
-      ]
-     },
-     "execution_count": 16,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "search_age = None\n",
-    "\n",
-    "for idx in range(project.count()):\n",
-    "    lecture = project.get_lecture(idx)\n",
-    "    age = project.get_age(idx)\n",
-    "    zipcode = project.get_zip_code(idx)\n",
-    "    \n",
-    "    if age == '' or zipcode == '':\n",
-    "        continue\n",
-    "    age = int(age)\n",
-    "    \n",
-    "    if lecture == \"LEC001\" and zipcode == \"53715\":\n",
-    "        search_age = age\n",
-    "        break # you found the first such student, so you can terminate the loop execution\n",
-    "\n",
-    "search_age"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "68793d99",
-   "metadata": {},
-   "source": [
-    "## Self-practice"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "2eeed867",
-   "metadata": {},
-   "source": [
-    "### How many current lecture (example: LEC001) students are runners? "
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "1ea57e12",
-   "metadata": {},
-   "source": [
-    "### How many current lecture (example: LEC001) students are procrastinators? "
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "cf0ac7c8",
-   "metadata": {},
-   "source": [
-    "### How many current lecture (example: LEC001) students own or have owned a pet?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "9aa8fe7b",
-   "metadata": {},
-   "source": [
-    "### How many current lecture (example: LEC001) students like pineapple on their pizza?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "ffd5e10f",
-   "metadata": {},
-   "source": [
-    "### What sleep habit does the youngest student in current lecture (example: LEC001) have?\n",
-    "- try to solve this from scratch, instead of copy-pasting code to find mimimum age"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "f255b95a",
-   "metadata": {},
-   "source": [
-    "### What sleep habit does the oldest student in current lecture (example: LEC001) have?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "a46d37b8",
-   "metadata": {},
-   "source": [
-    "### What is the age of the youngest student residing in zip code 53706?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "db60812c",
-   "metadata": {},
-   "source": [
-    "### Considering current lecture students (example: LEC001), is the first student with age 18 a runner?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "ab3de0cd",
-   "metadata": {},
-   "source": [
-    "### What is the minimum latitude (& corresponding longitude) of a student's place of interest? \n",
-    "- What place is this -> try to enter the lat, long on Google maps?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "3fecf449",
-   "metadata": {},
-   "source": [
-    "### What is the maximum latitude (& corresponding longitude) of a student's place of interest? \n",
-    "- What place is this -> try to enter the lat, long on Google maps?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "3907fdf4",
-   "metadata": {},
-   "source": [
-    "### What is the minimum longitude (& corresponding latitude) of a student's place of interest? \n",
-    "- What place is this -> try to enter the lat, long on Google maps?"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "id": "b08978ef",
-   "metadata": {},
-   "source": [
-    "### What is the maximum longitude (& corresponding latitude) of a student's place of interest?\n",
-    "- What place is this -> try to enter the lat, long on Google maps?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": null,
-   "id": "f2eae0bb",
-   "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.9.13"
-  }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_template.ipynb b/s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_template_Gurmail_lec1.ipynb
similarity index 83%
rename from s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_template.ipynb
rename to s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_template_Gurmail_lec1.ipynb
index b20d96f..a295c9a 100644
--- a/s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_template.ipynb
+++ b/s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_template_Gurmail_lec1.ipynb
@@ -1,5 +1,29 @@
 {
  "cells": [
+  {
+   "cell_type": "markdown",
+   "id": "ef218c3f",
+   "metadata": {},
+   "source": [
+    "# Announcements - Iteration Practice\n",
+    "\n",
+    "* Download ALL files for today's lecture\n",
+    "* Exam\n",
+    "  * Number 2 pencil\n",
+    "  * Note sheet\n",
+    "  * Arrive 15 minutes early to scan in\n",
+    "  * Bring ID\n",
+    "  * Room assignment via Canvas Message (before Tuesday)\n",
+    "  * Wednesday February 22 :: 5:45 - 7:15 pm\n",
+    "  * McBurney February 22 :: 5:30 - 8:30 pm\n",
+    "    * Extended Time / Small Group (no need to contact me\n",
+    "    * Anything else - you needed to tell me last week what you need\n",
+    "  * Alternate Thursday February 23 :: 5:45 - 7:15\n",
+    "  * Lab 332 Alternate Wednesday February 22 :: 7:30\n",
+    "  *[Practice Exams](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-lecture-material/-/tree/main/s23/old_exams/exam1)\n",
+    "* No Quiz this week\n"
+   ]
+  },
   {
    "cell_type": "markdown",
    "id": "6a76ef95",
@@ -139,13 +163,13 @@
    "id": "af3d9d8c",
    "metadata": {},
    "source": [
-    "### How many current lecture (example: LEC001) students are in the dataset? \n",
+    "### How many current lecture (example: LEC003) students are in the dataset? \n",
     "\n",
     "- use `for` loop to iterate over the dataset:\n",
     "    - `count` function gives you total number of students\n",
     "    - use `range` built-in function to generate sequence of integers from `0` to `count - 1`\n",
     "- use `get_lecture` to retrieve lecture column value\n",
-    "- use `if` condition, to determine whether current student is part of `LEC001`\n",
+    "- use `if` condition, to determine whether current student is part of `LEC003`\n",
     "    - `True` evaluation: increment count\n",
     "    - `False` evaluation: nothing to do"
    ]
@@ -163,14 +187,14 @@
    "id": "b9ff6434",
    "metadata": {},
    "source": [
-    "### What is the age of the oldest student in current lecture (example: LEC001)?\n",
+    "### What is the age of the oldest student in current lecture (example: LEC003)?\n",
     "\n",
     "- use `for` loop to iterate over the dataset just like last problem\n",
     "- use `get_age` to retrieve lecture column value\n",
     "    - if: age is '' (empty), move on to next student using `continue`\n",
     "    - make sure to typecast return value to an integer\n",
     "- use `get_lecture` to retrieve lecture column value\n",
-    "- use `if` condition, to determine whether current student is part of `LEC001`\n",
+    "- use `if` condition, to determine whether current student is part of `LEC003`\n",
     "    - use `if` condition to determine whether current student's age is greater than previously known max age\n",
     "        - `True` evaluation: replace previously known max age with current age\n",
     "        - `False` evaluation: nothing to do"
@@ -189,7 +213,7 @@
    "id": "b40a32fb",
    "metadata": {},
    "source": [
-    "### What is the age of the youngest student in current lecture (example: LEC001)?\n",
+    "### What is the age of the youngest student in current lecture (example: LEC003)?\n",
     "- use similar algorithm as above question"
    ]
   },
@@ -234,7 +258,7 @@
    "id": "48f1c791",
    "metadata": {},
    "source": [
-    "### What major is the youngest student in current lecture (example: LEC001) planning to declare?\n",
+    "### What major is the youngest student in current lecture (example: LEC003) planning to declare?\n",
     "- now, we need to find some other detail about the youngest student\n",
     "- often, you'll have to keep track of ID of the max or min, so that you can retrive other details about that data entry"
    ]
@@ -252,7 +276,7 @@
    "id": "5294702a",
    "metadata": {},
    "source": [
-    "### Considering current lecture students (example: LEC001), what is the age of the first student residing at zip code 53715?"
+    "### Considering current lecture students (example: LEC003), what is the age of the first student residing at zip code 53,715?"
    ]
   },
   {
@@ -276,7 +300,7 @@
    "id": "2eeed867",
    "metadata": {},
    "source": [
-    "### How many current lecture (example: LEC001) students are runners? "
+    "### How many current lecture (example: LEC003) students are runners? "
    ]
   },
   {
@@ -284,7 +308,7 @@
    "id": "1ea57e12",
    "metadata": {},
    "source": [
-    "### How many current lecture (example: LEC001) students are procrastinators? "
+    "### How many current lecture (example: LEC003) students are procrastinators? "
    ]
   },
   {
@@ -292,7 +316,7 @@
    "id": "cf0ac7c8",
    "metadata": {},
    "source": [
-    "### How many current lecture (example: LEC001) students own or have owned a pet?"
+    "### How many current lecture (example: LEC003) students own or have owned a pet?"
    ]
   },
   {
@@ -300,7 +324,7 @@
    "id": "ffd5e10f",
    "metadata": {},
    "source": [
-    "### What sleep habit does the youngest student in current lecture (example: LEC001) have?\n",
+    "### What sleep habit does the youngest student in current lecture (example: LEC003) have?\n",
     "- try to solve this from scratch, instead of copy-pasting code to find mimimum age"
    ]
   },
@@ -309,7 +333,7 @@
    "id": "f255b95a",
    "metadata": {},
    "source": [
-    "### What sleep habit does the oldest student in current lecture (example: LEC001) have?\n",
+    "### What sleep habit does the oldest student in current lecture (example: LEC003) have?\n",
     "- try to solve this from scratch, instead of copy-pasting code to find mimimum age"
    ]
   },
@@ -318,7 +342,7 @@
    "id": "db60812c",
    "metadata": {},
    "source": [
-    "### Considering current lecture students (example: LEC001), is the first student with age 18 a runner?"
+    "### Considering current lecture students (example: LEC003), is the first student with age 18 a runner?"
    ]
   },
   {
@@ -358,12 +382,12 @@
    ]
   },
   {
-   "cell_type": "code",
-   "execution_count": null,
-   "id": "fcee0994",
+   "cell_type": "markdown",
+   "id": "8076da7c",
    "metadata": {},
-   "outputs": [],
-   "source": []
+   "source": [
+    "### What song is alphabetically last in the data set?"
+   ]
   }
  ],
  "metadata": {
diff --git a/s23/Gurmail_lecture_notes/12_Iteration_Practice/.ipynb_checkpoints/lec_12_Iteration_Practice_template-checkpoint.ipynb b/s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_template_Gurmail_lec2.ipynb
similarity index 68%
rename from s23/Gurmail_lecture_notes/12_Iteration_Practice/.ipynb_checkpoints/lec_12_Iteration_Practice_template-checkpoint.ipynb
rename to s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_template_Gurmail_lec2.ipynb
index 50400f6..8284316 100644
--- a/s23/Gurmail_lecture_notes/12_Iteration_Practice/.ipynb_checkpoints/lec_12_Iteration_Practice_template-checkpoint.ipynb
+++ b/s23/Gurmail_lecture_notes/12_Iteration_Practice/lec_12_Iteration_Practice_template_Gurmail_lec2.ipynb
@@ -1,5 +1,29 @@
 {
  "cells": [
+  {
+   "cell_type": "markdown",
+   "id": "0338ae84",
+   "metadata": {},
+   "source": [
+    "# Announcements - Iteration Practice\n",
+    "\n",
+    "* Download ALL files for today's lecture\n",
+    "* Exam\n",
+    "  * Number 2 pencil\n",
+    "  * Note sheet\n",
+    "  * Arrive 15 minutes early to scan in\n",
+    "  * Bring ID\n",
+    "  * Room assignment via Canvas Message (before Tuesday)\n",
+    "  * Wednesday February 22 :: 5:45 - 7:15 pm\n",
+    "  * McBurney February 22 :: 5:30 - 8:30 pm\n",
+    "    * Extended Time / Small Group (no need to contact me\n",
+    "    * Anything else - you needed to tell me last week what you need\n",
+    "  * Alternate Thursday February 23 :: 5:45 - 7:15\n",
+    "  * Lab 332 Alternate Wednesday February 22 :: 7:30\n",
+    "  *[Practice Exams](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-lecture-material/-/tree/main/s23/old_exams/exam1)\n",
+    "* No Quiz this week\n"
+   ]
+  },
   {
    "cell_type": "markdown",
    "id": "6a76ef95",
@@ -139,13 +163,13 @@
    "id": "af3d9d8c",
    "metadata": {},
    "source": [
-    "### How many current lecture (example: LEC001) students are in the dataset? \n",
+    "### How many current lecture (example: LEC003) students are in the dataset? \n",
     "\n",
     "- use `for` loop to iterate over the dataset:\n",
     "    - `count` function gives you total number of students\n",
     "    - use `range` built-in function to generate sequence of integers from `0` to `count - 1`\n",
     "- use `get_lecture` to retrieve lecture column value\n",
-    "- use `if` condition, to determine whether current student is part of `LEC001`\n",
+    "- use `if` condition, to determine whether current student is part of `LEC003`\n",
     "    - `True` evaluation: increment count\n",
     "    - `False` evaluation: nothing to do"
    ]
@@ -163,14 +187,14 @@
    "id": "b9ff6434",
    "metadata": {},
    "source": [
-    "### What is the age of the oldest student in current lecture (example: LEC001)?\n",
+    "### What is the age of the oldest student in current lecture (example: LEC003)?\n",
     "\n",
     "- use `for` loop to iterate over the dataset just like last problem\n",
     "- use `get_age` to retrieve lecture column value\n",
     "    - if: age is '' (empty), move on to next student using `continue`\n",
     "    - make sure to typecast return value to an integer\n",
     "- use `get_lecture` to retrieve lecture column value\n",
-    "- use `if` condition, to determine whether current student is part of `LEC001`\n",
+    "- use `if` condition, to determine whether current student is part of `LEC003`\n",
     "    - use `if` condition to determine whether current student's age is greater than previously known max age\n",
     "        - `True` evaluation: replace previously known max age with current age\n",
     "        - `False` evaluation: nothing to do"
@@ -189,7 +213,7 @@
    "id": "b40a32fb",
    "metadata": {},
    "source": [
-    "### What is the age of the youngest student in current lecture (example: LEC001)?\n",
+    "### What is the age of the youngest student in current lecture (example: LEC003)?\n",
     "- use similar algorithm as above question"
    ]
   },
@@ -201,12 +225,40 @@
    "outputs": [],
    "source": []
   },
+  {
+   "cell_type": "markdown",
+   "id": "296c2a49",
+   "metadata": {},
+   "source": [
+    "### What is the average age of students enrolled in CS220 / CS319?\n",
+    "- you will get an interesting answer :)\n",
+    "- how can we ensure that data doesn't skew statistics?"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "id": "8b7c8367",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "\n",
+    "\n",
+    "for idx in range(project.count()):\n",
+    "    age = project.get_age(idx)\n",
+    "    \n",
+    "    if age == '':\n",
+    "        continue\n",
+    "    age = int(age)\n",
+    "    print(age)"
+   ]
+  },
   {
    "cell_type": "markdown",
    "id": "48f1c791",
    "metadata": {},
    "source": [
-    "### What major is the youngest student in current lecture (example: LEC001) planning to declare?\n",
+    "### What major is the youngest student in current lecture (example: LEC003) planning to declare?\n",
     "- now, we need to find some other detail about the youngest student\n",
     "- often, you'll have to keep track of ID of the max or min, so that you can retrive other details about that data entry"
    ]
@@ -224,7 +276,7 @@
    "id": "5294702a",
    "metadata": {},
    "source": [
-    "### Considering current lecture students (example: LEC001), what is the age of the first student residing at zip code 53715?"
+    "### Considering current lecture students (example: LEC003), what is the age of the first student residing at zip code 53,715?"
    ]
   },
   {
@@ -248,7 +300,7 @@
    "id": "2eeed867",
    "metadata": {},
    "source": [
-    "### How many current lecture (example: LEC001) students are runners? "
+    "### How many current lecture (example: LEC003) students are runners? "
    ]
   },
   {
@@ -256,7 +308,7 @@
    "id": "1ea57e12",
    "metadata": {},
    "source": [
-    "### How many current lecture (example: LEC001) students are procrastinators? "
+    "### How many current lecture (example: LEC003) students are procrastinators? "
    ]
   },
   {
@@ -264,7 +316,7 @@
    "id": "cf0ac7c8",
    "metadata": {},
    "source": [
-    "### How many current lecture (example: LEC001) students own or have owned a pet?"
+    "### How many current lecture (example: LEC003) students own or have owned a pet?"
    ]
   },
   {
@@ -272,7 +324,7 @@
    "id": "ffd5e10f",
    "metadata": {},
    "source": [
-    "### What sleep habit does the youngest student in current lecture (example: LEC001) have?\n",
+    "### What sleep habit does the youngest student in current lecture (example: LEC003) have?\n",
     "- try to solve this from scratch, instead of copy-pasting code to find mimimum age"
    ]
   },
@@ -281,7 +333,7 @@
    "id": "f255b95a",
    "metadata": {},
    "source": [
-    "### What sleep habit does the oldest student in current lecture (example: LEC001) have?\n",
+    "### What sleep habit does the oldest student in current lecture (example: LEC003) have?\n",
     "- try to solve this from scratch, instead of copy-pasting code to find mimimum age"
    ]
   },
@@ -290,16 +342,52 @@
    "id": "db60812c",
    "metadata": {},
    "source": [
-    "### Considering current lecture students (example: LEC001), is the first student with age 18 a runner?"
+    "### Considering current lecture students (example: LEC003), is the first student with age 18 a runner?"
    ]
   },
   {
-   "cell_type": "code",
-   "execution_count": null,
-   "id": "d55fa983",
+   "cell_type": "markdown",
+   "id": "70a8ac57",
    "metadata": {},
-   "outputs": [],
-   "source": []
+   "source": [
+    "### What is the minimum latitude (& corresponding longitude) of a student's place of interest? \n",
+    "- What place is this -> try to enter the lat, long on Google maps?"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "581ea197",
+   "metadata": {},
+   "source": [
+    "### What is the maximum latitude (& corresponding longitude) of a student's place of interest? \n",
+    "- What place is this -> try to enter the lat, long on Google maps?"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "5f943c98",
+   "metadata": {},
+   "source": [
+    "### What is the minimum longitude (& corresponding latitude) of a student's place of interest? \n",
+    "- What place is this -> try to enter the lat, long on Google maps?"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "9b104a50",
+   "metadata": {},
+   "source": [
+    "### What is the maximum longitude (& corresponding latitude) of a student's place of interest?\n",
+    "- What place is this -> try to enter the lat, long on Google maps?"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "id": "501d422c",
+   "metadata": {},
+   "source": [
+    "### What song is alphabetically last in the data set?"
+   ]
   }
  ],
  "metadata": {
diff --git a/s23/Gurmail_lecture_notes/12_Iteration_Practice/project.py b/s23/Gurmail_lecture_notes/12_Iteration_Practice/project.py
index ad671f7..e2c3096 100644
--- a/s23/Gurmail_lecture_notes/12_Iteration_Practice/project.py
+++ b/s23/Gurmail_lecture_notes/12_Iteration_Practice/project.py
@@ -21,35 +21,38 @@ def get_lecture(idx):
     return __student__[int(idx)]['Lecture']
 
 
+def get_section(idx):
+    """get_lecture(idx) returns the section of the student in row idx"""
+    return __student__[int(idx)]['section']
+
+
 def get_age(idx):
     """get_age(idx) returns the age of the student in row idx"""
     return __student__[int(idx)]['Age']
 
 
-def get_major(idx):
-    """get_major(idx) returns the major of the student in row idx"""
-    return __student__[int(idx)]['Major']
+def get_primary_major(idx):
+    """get_primary_major(idx) returns the primary major of the student in row idx"""
+    return __student__[int(idx)]['Primary major']
+
+
+def get_other_majors(idx):
+    """get_other_majors(idx) returns the secondary major of the student in row idx"""
+    return __student__[int(idx)]['Other majors']
 
 
 def get_zip_code(idx):
     """get_zip_code(idx) returns the residential zip code of the student in row idx"""
     return __student__[int(idx)]['Zip Code']
 
-def get_latitude(idx):
-    """get_latitude(idx) returns the latitude of the student's favourite place in row idx"""
-    return __student__[int(idx)]['Latitude']
 
-def get_longitude(idx):
-    """get_longitude(idx) returns the longitude of the student's favourite place in row idx"""
-    return __student__[int(idx)]['Longitude']
-
-def get_piazza_topping(idx):
-    """get_piazza_topping(idx) returns the preferred pizza toppings of the student in row idx"""
+def get_pizza_topping(idx):
+    """get_pizza_topping(idx) returns the preferred pizza toppings of the student in row idx"""
     return __student__[int(idx)]['Pizza topping']
 
 def get_pet_owner(idx):
-    """get_pet_owner(idx) returns the pet preference of student in row idx"""
-    return __student__[int(idx)]['Pet preference']
+    """get_pet_owner(idx) returns whether student in row idx is a pet owner"""
+    return __student__[int(idx)]['Pet owner']
 
 def get_runner(idx):
     """get_runner(idx) returns whether student in row idx is a runner"""
@@ -64,4 +67,9 @@ def get_procrastinator(idx):
     return __student__[int(idx)]['Procrastinator']
 
 
+def get_song(idx):
+    """get_procrastinator(idx) returns the student in row idx favorite song"""
+    return __student__[int(idx)]['Song']
+
+
 __init__()
-- 
GitLab