diff --git a/s25/Louis_Lecture_Notes/16_List_Practice/Lec_16_List_Practice.ipynb b/s25/Louis_Lecture_Notes/16_List_Practice/Lec_16_List_Practice.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..07a988e3efd1662d1309e60ad4e6b5668c6d61ea --- /dev/null +++ b/s25/Louis_Lecture_Notes/16_List_Practice/Lec_16_List_Practice.ipynb @@ -0,0 +1,740 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Announcements\n", + "\n", + "### CS 220 Enrichment Activities\n", + "Students interested in working on a real-world data set and learning about the full data processing pipeline?\n", + "\n", + "Voluntary working groups will learn about data management, data wrangling/processing, modeling, and reporting/communication skills.\n", + "\n", + "**When: Thursday, March 6th @ 4pm**\n", + "\n", + "**Where: Computer Science Room 1325**\n", + "\n", + "\n", + "### Resources To Improve In The Course\n", + "\n", + "* **CS 220 Office Hours** -- As I'm sure you know, you can go to the [course office hours](https://sites.google.com/wisc.edu/cs220-oh-sp25/) to get help with labs and projects.\n", + "* **CS Learning Center** -- Offer free [small group tutoring](https://www.cs.wisc.edu/computer-sciences-learning-center-cslc/), not for debugging your programs, but to talk about course concepts.\n", + "* **Undergraduate Learning Center** -- Provides tutoring and [academic support](https://engineering.wisc.edu/student-services/undergraduate-learning-center/). They have [drop-in tutoring](https://intranet.engineering.wisc.edu/undergraduate-students/ulc/drop-in-tutoring/)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Warmup" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Warmup 0: Hotkeys\n", + "# We move quickly, it's good to know some hotkeys!\n", + "\n", + "# All-around good-to-knows...\n", + "# Ctrl+A: Select all the text in a cell.\n", + "# Ctrl+C: Copy selected text.\n", + "# Ctrl+X: Cut selected text.\n", + "# Ctrl+V: Paste text from clipboard.\n", + "# Ctrl+S: Save.\n", + "\n", + "# Jupyter-specific good-to-knows...\n", + "# Ctrl+Enter: Run Cell\n", + "# Ctrl+/: Comment/uncomment sections of code.\n", + "# Esc->A: Insert cell above\n", + "# Esc->B: Insert cell below\n", + "# Esc->Shift+L: Toggle line numbers (not working on my machine, but can look under View->Show Line Numbers).\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Warmup 1: Empty List\n", + "\n", + "weekend_plans = [] # I have no weekend plans :(\n", + "print(weekend_plans)\n", + "\n", + "# TODO add three things to your weekend plans using .append\n", + "\n", + "print(weekend_plans)\n", + "\n", + "# TODO add three things to your weekend using .extend\n", + "\n", + "print(weekend_plans)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "# Warmup 2: Tic-Tac-Toe\n", + "\n", + "board = []\n", + "\n", + "# TODO using .append(), add three lists of row data for tic-tac-toe (Noughts and Crosses)\n", + "# make up the placement of X's and O's.\n", + "\n", + "# TODO now use nested loops to print the board\n", + "\n", + "# TODO print out the center value using double indexing\n", + "print(board[1][1])" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "# List Practice\n", + "\n", + "**Readings**\n", + "\n", + "- Optional: [Set Data Type](https://docs.python.org/3.10/library/stdtypes.html#set-types-set-frozenset)\n", + "- Optional: [W3Schools on Set Data Type](https://www.w3schools.com/python/python_sets.asp)\n", + "\n", + "**Objectives**\n", + "\n", + "- Understand and use the `set` data type for removing duplicates\n", + "- Create helper functions for filtering data\n", + "- Use the `sort()` and `sorted()` functions and understand the difference between them.\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "## Set Data Type\n", + "\n", + "Another data type similar to a list is a set. To create a set you use curly braces instead of square brackets. Sets cannot contain duplicate items.\n", + "\n", + "```python\n", + " my_set = {2, 3, 3, 4}\n", + " print(my_set)\n", + "```\n", + "```\n", + " {2,3,4}\n", + "```\n", + "\n", + "One common use for sets is to remove duplicates from a list. You can do this by converting a list to a set and then convert it back again.\n", + "\n", + "```python\n", + " groceries = ['apples','oranges','kiwis','apples']\n", + " groceries = list(set(groceries))\n", + " print(groceries)\n", + "```\n", + "```\n", + " ['apples','oranges','kiwis']\n", + "```\n", + "\n", + "You can read more about sets and the methods that you can use with them at [w3school](https://www.w3schools.com/python/python_sets.asp).\n", + "\n", + "### You Try It\n", + "\n", + "Use the `.add()` and `.discard()` methods to the set below to add at least 4 weekend plans, with one being a duplicate and then removing one of the weekend plans." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "# However, it is unordered and unique.\n", + "# The function names are also a little different!\n", + "weekend_plans = set() # creates an empty set\n", + "\n", + "## TODO: use .add() to add 4 items to weekend_plans with one being a duplicate\n", + "\n", + "\n", + "print(weekend_plans)\n", + "\n", + "# TODO: use .discard() to remove one of the items from the set\n", + "# Unlike a list's remove, this will not throw an error if DNE (does not exist).\n", + "\n", + "print(weekend_plans)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "## Helper Functions\n", + "\n", + "Last class we created the `cell()` function to help with selecting values from the survey data. Let's take this a step further today and create a range of helper functions that we can use to answer more challenging questions. Investing time into creating good helper functions can speed up tackling answering these challenging questions and they provide flexibility so you can use the same helper functions to answer a variety of questions.\n", + "\n", + "First, let's create our `process_csv()` function to help with loading the data and then split the data into the header and data portions. Finish the code in the cells below:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "import csv\n", + "\n", + "# source: Automate the Boring Stuff with Python Ch 12\n", + "def process_csv(filename):\n", + " exampleFile = open(filename, encoding=\"utf-8\") \n", + " exampleReader = csv.reader(exampleFile) \n", + " exampleData = list(exampleReader) \n", + " exampleFile.close() \n", + " return exampleData" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "# TODO: Seperate the data into 2 parts...\n", + "# a header row, and a list of data rows\n", + "cs220_csv = process_csv('cs220_survey_data.csv')\n", + "cs220_header = ...\n", + "cs220_data = ..." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "Let's make the `cell()` function again, but this time let's make it a little more robust. If you recall we filtered empty values and returned the `None` instead of an empty string. We also converted the `Age` column's type to int() (and filtered out if a decimal point was found.\n", + "\n", + "Let's take that a step further and think about every column and what values we would want to filter out and instead return a `None` and what the data types we would want to return. The `Latitude` and `Longitude` columns contain values that would best be treated as a float. Can you think of any other changes to data types or specific values that should be filtered out?\n", + "\n", + "Make those changes to the cell function below:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "# Remember the improved cell function\n", + "\n", + "def cell(row_idx, col_name):\n", + " col_idx = cs220_header.index(col_name)\n", + " val = cs220_data[row_idx][col_idx]\n", + " if val == \"\":\n", + " return None\n", + " elif col_name == \"Age\":\n", + " return int(val)\n", + " ##TODO add an elif for converting latitude and longitude to float\n", + " else:\n", + " return val" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "Let's test our improved `cell()` function and make sure it is working properly.\n", + "\n", + "Since the `Age`, `Latitude` and `Longitude` should now all be numbers, let's loop through the data and check the return type for these columns. Finish the code in the cell below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "for i in range(len(cs220_data)):\n", + " age = cell(i,'Age')\n", + " if age == None or type(age) == int:\n", + " pass\n", + " else:\n", + " print(\"found an age which is the wrong type:\",age)\n", + " ##TODO add checks for latitude and longitude" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "### Helper Function: Getting smallest value in column\n", + "\n", + "Now let's think about functions as tools. What tool would we want to help answer questions we might have. One possible question we might have revolves around find the smallest or largest value in a column.\n", + "\n", + "And if we think for a moment about the design of the function, we can make it very flexible. In other words it might help with multiple possible questions. Some possible questions involving the smallest value in a column might be:\n", + "\n", + "* What is the age of the youngest person who answered the survey?\n", + "* What is the age of the youngest person in your lecture?\n", + "* What song did the youngest person enter?\n", + "\n", + "All of these questions involve a youngest person. But notice two things:\n", + "\n", + "* Knowing the index of this person allows us to find out other properties about the person\n", + "* Working with a subset of the data (e.g. youngest in your lecture) is a common practice\n", + "\n", + "To handle these different ways of looking for the youngest, we can create our function like so:\n", + "\n", + "```python\n", + "def get_smallest(col_name, indexes=None):\n", + " \"\"\"Returns the index of the smallest value\n", + " for the column with col_name, looking only\n", + " at the rows in indexes. If indexes is None\n", + " then looks at all rows.\"\"\"\n", + "```\n", + "\n", + "Notice that the function returns the index, not the value. The function also has an optional `indexes` parameter which can be used if you already have a subset of the rows you want to work with.\n", + "\n", + "Finish writing the function below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "def get_smallest(col_name, indexes=None):\n", + " \"\"\"Returns the index of the smallest value\n", + " for the column with col_name, looking only\n", + " at the rows in indexes. If indexes is None\n", + " then looks at all rows.\"\"\"\n", + " if indexes == None:\n", + " indexes = list(range(0,len(cs220_data)))\n", + " smallest_value = None\n", + " smallest_index = 0\n", + " for i in indexes:\n", + " val = cell(i,col_name)\n", + " if val == None:\n", + " continue\n", + " ##TODO FINISH Function\n", + " return smallest_index" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "Okay, if we have written our function well, we can now use it to answer the questions we have. Use the `get_smallest()` to answer the questions in the cell below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "##TODO What is the age of the youngest person who answered the survey?\n", + "\n", + "\n", + "##TODO What song did the youngest person enter?\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "### Helper Function: Filter rows by a column that matches a value\n", + "Notice we didn't ask one question -- What is the age of the youngest person in your lecture? To answer this we first need to get a list of just the rows that are for your lecture.\n", + "\n", + "Let's create a filter function that will return a list of the indexes that meet some matching criteria. And we can still use the option indexes idea.\n", + "\n", + "```python\n", + "def filter_match(col_name,col_value,indexes=None):\n", + " \"\"\"returns a subset of indexes where the \n", + " col_name has a value of col_value. If indexes\n", + " is None then looks at all rows\"\"\"\n", + "```\n", + "\n", + "Finish the code in the cell below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "def filter_match(col_name,col_value,indexes=None):\n", + " if indexes == None:\n", + " indexes = list(range(len(cs220_data)))\n", + " ret_value = []\n", + " for i in indexes:\n", + " val = cell(i,col_name)\n", + " ##TODO: Finish function\n", + " return ret_value" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "Okay, use this `filter_match()` function, perhaps combined with `get_smallest()`, to answer the questions in the cell below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "## TODO how many people are in your lecture who filled out the survey?\n", + "\n", + "## TODO What is the age of the youngest person in your lecture?\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "### Helper Function: Filter rows by a column that contains a value\n", + "Exact matching is only one way that we might want to filter our data. Another possible way would be if a column contains a particular value as a portion of what was entered. For example, how many primary majors are Engineering majors? Since the field is a string and \"Engineering\" is only a portion of the value, we really want to see of the field contains the value.\n", + "\n", + "Finish the `filter_contains()` function below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "def filter_contains(col_name,col_value,indexes=None):\n", + " \"\"\"returns a subset of indexes where the column\n", + " col_name has values that are strings and col_value is\n", + " a portion of the value (case insensitive)\n", + " \"\"\" \n", + " if indexes == None:\n", + " indexes = list(range(len(cs220_data)))\n", + " ret_value = []\n", + " col_value = col_value.lower()\n", + " for i in indexes:\n", + " val = cell(i,col_name)\n", + " if val == None:\n", + " continue\n", + " val = val.lower()\n", + " ##TODO FINISH FUNCTION\n", + " return ret_value" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "With our functions we can answer some rather challenging questions." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "## TODO: How many people in your lecture are majoring in Engineering?\n", + "\n", + "\n", + "## TODO: What Bruno Mar's songs did people enter?\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "Come up with your own questions where you can use these functions." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "## TODO: What is your question? Write the question then write code to answer it.\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "## Sorting\n", + "\n", + "There are two ways common ways in Python to sort a list. One way modifies the original list and the second creates a new list that is sorted but does not modify the original list.\n", + "\n", + "- The `sorted()` function creates a new sorted list and leaves the original list unmodified.\n", + "- The `.sort()` method sorts the original list, mutating it.\n", + "\n", + "```python\n", + "x = [2, 4, 1]\n", + "y = sorted(x)\n", + "print(x)\n", + "print(y)\n", + "```\n", + "```\n", + "[2,4,1]\n", + "[1,2,4]\n", + "```\n", + "\n", + "```python\n", + "x = [2, 4, 1]\n", + "y = x.sort()\n", + "print(x)\n", + "print(y)\n", + "```\n", + "```\n", + "[1,2,4]\n", + "None\n", + "```\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "# TODO Sort using sorted() function\n", + "\n", + "x = [2, 4, 1]\n", + "y = ...\n", + "print(x)\n", + "print(y)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# TODO Sort using sort() method\n", + "x = [2, 4, 1]\n", + "y = ...\n", + "\n", + "print(x)\n", + "print(y)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## You Try It\n", + "\n", + "Using sorting and the functions above to find:\n", + "\n", + "- A sorted list of songs from those who run and are over 20\n", + "- A sorted list of majors of the procrastinators, removing duplicates" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "##TODO: Sorted list of songs from runners over 20\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "##TODO: Sorted list of majors by procrastinators -- no duplicates\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.12" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/s25/Louis_Lecture_Notes/16_List_Practice/Lec_16_List_Practice_Solution.ipynb b/s25/Louis_Lecture_Notes/16_List_Practice/Lec_16_List_Practice_Solution.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..4756efd7d39f134b186cf5ec3dd71983b8d425be --- /dev/null +++ b/s25/Louis_Lecture_Notes/16_List_Practice/Lec_16_List_Practice_Solution.ipynb @@ -0,0 +1,893 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Resources To Improve In The Course\n", + "\n", + "* **CS 220 Office Hours** -- As I'm sure you know, you can go to the [course office hours](https://cs220.cs.wisc.edu/f24/schedule.html) to get help with labs and projects.\n", + "* **CS Learning Center** -- Offer free [small group tutoring](https://www.cs.wisc.edu/computer-sciences-learning-center-cslc/), not for debugging your programs, but to talk about course concepts.\n", + "* **Undergraduate Learning Center** -- Provides tutoring and [academic support](https://engineering.wisc.edu/student-services/undergraduate-learning-center/). They have [drop-in tutoring](https://intranet.engineering.wisc.edu/undergraduate-students/ulc/drop-in-tutoring/)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Warmup" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Warmup 0: Hotkeys\n", + "# We move quickly, it's good to know some hotkeys!\n", + "\n", + "# All-around good-to-knows...\n", + "# Ctrl+A: Select all the text in a cell.\n", + "# Ctrl+C: Copy selected text.\n", + "# Ctrl+X: Cut selected text.\n", + "# Ctrl+V: Paste text from clipboard.\n", + "# Ctrl+S: Save.\n", + "\n", + "# Jupyter-specific good-to-knows...\n", + "# Ctrl+Enter: Run Cell\n", + "# Ctrl+/: Comment/uncomment sections of code.\n", + "# Esc->A: Insert cell above\n", + "# Esc->B: Insert cell below\n", + "# Esc->Shift+L: Toggle line numbers (not working on my machine, but can look under View->Show Line Numbers).\n" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[]\n", + "['grocery shop', 'read', 'bike ride']\n", + "['grocery shop', 'read', 'bike ride', 'sleep', 'sleep', 'and more sleep']\n" + ] + } + ], + "source": [ + "# Warmup 1: Empty List\n", + "\n", + "weekend_plans = [] # I have no weekend plans :(\n", + "print(weekend_plans)\n", + "\n", + "# TODO add three things to your weekend plans using .append\n", + "weekend_plans.append('grocery shop')\n", + "weekend_plans.append('read')\n", + "weekend_plans.append('bike ride')\n", + "print(weekend_plans)\n", + "\n", + "# TODO add three things to your weekend using .extend\n", + "weekend_plans.extend(['sleep','sleep','and more sleep'])\n", + "print(weekend_plans)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "XO\n", + "OO\n", + "XX\n", + "O\n" + ] + } + ], + "source": [ + "# Warmup 2: Tic-Tac-Toe\n", + "\n", + "board = []\n", + "\n", + "# TODO using .append(), add three lists of row data for tic-tac-toe (Noughts and Crosses)\n", + "# make up the placement of X's and O's.\n", + "board.append(['X','','O'])\n", + "board.append(['','O','O'])\n", + "board.append(['X','','X'])\n", + "\n", + "for row in board:\n", + " for item in row:\n", + " print(item,end='')\n", + " print()\n", + "\n", + "# TODO print out the center value using double indexing\n", + "print(board[1][1])" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "# List Practice\n", + "\n", + "**Readings**\n", + "\n", + "- Optional: [Set Data Type](https://docs.python.org/3.10/library/stdtypes.html#set-types-set-frozenset)\n", + "- Optional: [W3Schools on Set Data Type](https://www.w3schools.com/python/python_sets.asp)\n", + "\n", + "**Objectives**\n", + "\n", + "- Understand and use the `set` data type for removing duplicates\n", + "- Create helper functions for filtering data\n", + "- Use the `sort()` and `sorted()` functions and understand the difference between them.\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "## Set Data Type\n", + "\n", + "Another data type similar to a list is a set. To create a set you use curly braces instead of square brackets. Sets cannot contain duplicate items.\n", + "\n", + "```python\n", + " my_set = {2, 3, 3, 4}\n", + " print(my_set)\n", + "```\n", + "```\n", + " {2,3,4}\n", + "```\n", + "\n", + "One common use for sets is to remove duplicates from a list. You can do this by converting a list to a set and then convert it back again.\n", + "\n", + "```python\n", + " groceries = ['apples','oranges','kiwis','apples']\n", + " groceries = list(set(groceries))\n", + " print(groceries)\n", + "```\n", + "```\n", + " ['apples','oranges','kiwis']\n", + "```\n", + "\n", + "You can read more about sets and the methods that you can use with them at [w3school](https://www.w3schools.com/python/python_sets.asp).\n", + "\n", + "### You Try It\n", + "\n", + "Use the `.add()` and `.discard()` methods to the set below to add at least 4 weekend plans, with one being a duplicate and then removing one of the weekend plans." + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'sleep', 'bike', 'read'}\n", + "{'sleep', 'bike', 'read'}\n" + ] + } + ], + "source": [ + "# However, it is unordered and unique.\n", + "# The function names are also a little different!\n", + "weekend_plans = set() # creates an empty set\n", + "\n", + "## TODO: use .add() to add 4 items to weekend_plans with one being a duplicate\n", + "weekend_plans.add(\"sleep\")\n", + "weekend_plans.add(\"sleep\")\n", + "weekend_plans.add(\"read\")\n", + "weekend_plans.add(\"bike\")\n", + "\n", + "print(weekend_plans)\n", + "\n", + "# TODO: use .discard() to remove one of the items from the set\n", + "# Unlike a list's remove, this will not throw an error if DNE (does not exist).\n", + "weekend_plans.discard(\"work\")\n", + "print(weekend_plans)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "## Helper Functions\n", + "\n", + "Last class we created the `cell()` function to help with selecting values from the survey data. Let's take this a step further today and create a range of helper functions that we can use to answer more challenging questions. Investing time into creating good helper functions can speed up tackling answering these challenging questions and they provide flexibility so you can use the same helper functions to answer a variety of questions.\n", + "\n", + "First, let's create our `process_csv()` function to help with loading the data and then split the data into the header and data portions. Finish the code in the cells below:" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "import csv\n", + "\n", + "# source: Automate the Boring Stuff with Python Ch 12\n", + "def process_csv(filename):\n", + " exampleFile = open(filename, encoding=\"utf-8\") \n", + " exampleReader = csv.reader(exampleFile) \n", + " exampleData = list(exampleReader) \n", + " exampleFile.close() \n", + " return exampleData" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "# TODO: Seperate the data into 2 parts...\n", + "# a header row, and a list of data rows\n", + "cs220_csv = process_csv('cs220_survey_data.csv')\n", + "cs220_header = cs220_csv[0]\n", + "cs220_data = cs220_csv[1:]" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "Let's make the `cell()` function again, but this time let's make it a little more robust. If you recall we filtered empty values and returned the `None` instead of an empty string. We also converted the `Age` column's type to int() (and filtered out if a decimal point was found.\n", + "\n", + "Let's take that a step further and think about every column and what values we would want to filter out and instead return a `None` and what the data types we would want to return. The `Latitude` and `Longitude` columns contain values that would best be treated as a float. Can you think of any other changes to data types or specific values that should be filtered out?\n", + "\n", + "Make those changes to the cell function below:" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "# Remember the improved cell function\n", + "\n", + "def cell(row_idx, col_name):\n", + " col_idx = cs220_header.index(col_name)\n", + " val = cs220_data[row_idx][col_idx]\n", + " if val == \"\":\n", + " return None\n", + " elif col_name == \"Age\":\n", + " if \".\" in val:\n", + " return None\n", + " return int(val)\n", + " elif col_name == 'Latitude' or col_name == 'Longitude':\n", + " return float(val)\n", + " else:\n", + " return val" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "Let's test our improved `cell()` function and make sure it is working properly.\n", + "\n", + "Since the `Age`, `Latitude` and `Longitude` should now all be numbers, let's loop through the data and check the return type for these columns. Finish the code in the cell below." + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "for i in range(len(cs220_data)):\n", + " age = cell(i,'Age')\n", + " if age == None or type(age) == int:\n", + " pass\n", + " else:\n", + " print(\"found an age which is the wrong type:\",age)\n", + " lat = cell(i,'Latitude')\n", + " if lat == None or type(lat) == float:\n", + " pass\n", + " else:\n", + " print(\"found a latitude which is the wrong type:\",lat)\n", + " long = cell(i,'Longitude')\n", + " if long == None or type(long) == float:\n", + " pass\n", + " else:\n", + " print(\"found a longitude which is the wrong type:\",long)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "### Helper Function: Getting smallest value in column\n", + "\n", + "Now let's think about functions as tools. What tool would we want to help answer questions we might have. One possible question we might have revolves around find the smallest or largest value in a column.\n", + "\n", + "And if we think for a moment about the design of the function, we can make it very flexible. In other words it might help with multiple possible questions. Some possible questions involving the smallest value in a column might be:\n", + "\n", + "* What is the age of the youngest person who answered the survey?\n", + "* What is the age of the youngest person in your lecture?\n", + "* What song did the youngest person enter?\n", + "\n", + "All of these questions involve a youngest person. But notice two things:\n", + "\n", + "* Knowing the index of this person allows us to find out other properties about the person\n", + "* Working with a subset of the data (e.g. youngest in your lecture) is a common practice\n", + "\n", + "To handle these different ways of looking for the youngest, we can create our function like so:\n", + "\n", + "```python\n", + "def get_smallest(col_name, indexes=None):\n", + " \"\"\"Returns the index of the smallest value\n", + " for the column with col_name, looking only\n", + " at the rows in indexes. If indexes is None\n", + " then looks at all rows.\"\"\"\n", + "```\n", + "\n", + "Notice that the function returns the index, not the value. The function also has an optional `indexes` parameter which can be used if you already have a subset of the rows you want to work with.\n", + "\n", + "Finish writing the function below." + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "def get_smallest(col_name, indexes=None):\n", + " \"\"\"Returns the index of the smallest value\n", + " for the column with col_name, looking only\n", + " at the rows in indexes. If indexes is None\n", + " then looks at all rows.\"\"\"\n", + " if indexes == None:\n", + " indexes = list(range(0,len(cs220_data)))\n", + " smallest_value = None\n", + " smallest_index = 0\n", + " for i in indexes:\n", + " val = cell(i,col_name)\n", + " if val == None:\n", + " continue\n", + " if smallest_value == None or val < smallest_value:\n", + " smallest_value = val\n", + " smallest_index = i\n", + " return smallest_index" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "Okay, if we have written our function well, we can now use it to answer the questions we have. Use the `get_smallest()` to answer the questions in the cell below." + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "You Should See Me in a Crown by Billie Eilish\n" + ] + } + ], + "source": [ + "##TODO What is the age of the youngest person who answered the survey?\n", + "print(cell(get_smallest('Age'),'Age'))\n", + "\n", + "##TODO What song did the youngest person enter?\n", + "print(cell(get_smallest('Age'),'Song'))" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "### Helper Function: Filter rows by a column that matches a value\n", + "Notice we didn't ask one question -- What is the age of the youngest person in your lecture? To answer this we first need to get a list of just the rows that are for your lecture.\n", + "\n", + "Let's create a filter function that will return a list of the indexes that meet some matching criteria. And we can still use the option indexes idea.\n", + "\n", + "```python\n", + "def filter_match(col_name,col_value,indexes=None):\n", + " \"\"\"returns a subset of indexes where the \n", + " col_name has a value of col_value. If indexes\n", + " is None then looks at all rows\"\"\"\n", + "```\n", + "\n", + "Finish the code in the cell below." + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "def filter_match(col_name,col_value,indexes=None):\n", + " if indexes == None:\n", + " indexes = list(range(len(cs220_data)))\n", + " ret_value = []\n", + " for i in indexes:\n", + " val = cell(i,col_name)\n", + " if col_value == val:\n", + " ret_value.append(i)\n", + " return ret_value" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "Okay, use this `filter_match()` function, perhaps combined with `get_smallest()`, to answer the questions in the cell below." + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "245\n", + "17\n" + ] + } + ], + "source": [ + "## TODO how many people are in your lecture who filled out the survey?\n", + "print(len(filter_match('Lecture','LEC003')))\n", + "## TODO What is the age of the youngest person in your lecture?\n", + "idx=get_smallest('Age',filter_match('Lecture','LEC003'))\n", + "print(cell(idx,'Age'))" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "### Helper Function: Filter rows by a column that contains a value\n", + "Exact matching is only one way that we might want to filter our data. Another possible way would be if a column contains a particular value as a portion of what was entered. For example, how many primary majors are Engineering majors? Since the field is a string and \"Engineering\" is only a portion of the value, we really want to see of the field contains the value.\n", + "\n", + "Finish the `filter_contains()` function below." + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "def filter_contains(col_name,col_value,indexes=None):\n", + " \"\"\"returns a subset of indexes where the column\n", + " col_name has values that are strings and col_value is\n", + " a portion of the value (case insensitive)\n", + " \"\"\" \n", + " if indexes == None:\n", + " indexes = list(range(len(cs220_data)))\n", + " ret_value = []\n", + " col_value = col_value.lower()\n", + " for i in indexes:\n", + " val = cell(i,col_name)\n", + " if val == None:\n", + " continue\n", + " val = val.lower()\n", + " if val.find(col_value) > -1:\n", + " ret_value.append(i)\n", + " return ret_value" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "With our functions we can answer some rather challenging questions." + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "245 99\n", + "['Runaway Baby - Bruno Mars', 'If I knew - Bruno Mars\\n\\n\\xa0', 'But Me - Ty Myers\\n\\nSomewhere in Brooklyn - Bruno Mars', 'Just the Way You Are by Bruno Mars', 'Talking to the moon -Bruno Mars']\n" + ] + } + ], + "source": [ + "## TODO: How many people in your lecture are majoring in Engineering?\n", + "my_lec_idx = filter_match('Lecture','LEC003')\n", + "engineers_in_my_lec = filter_contains('Primary Major','Engineering',my_lec_idx)\n", + "print(len(my_lec_idx),len(engineers_in_my_lec))\n", + "\n", + "## TODO: What Bruno Mar's songs did people enter?\n", + "idxs = filter_contains('Song','Mars')\n", + "songs = []\n", + "for i in idxs:\n", + " val = cell(i,'Song')\n", + " if val != None:\n", + " songs.append(val)\n", + "songs=list(set(songs))\n", + "print(songs)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "Come up with your own questions where you can use these functions." + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Singer: Haruno\\n\\nSong: Like a seraph', 'im fine with any song', 'Bohemian Rhapsody by Queen', '夏夜最后的烟火 -Ele Yan', 'Island in the Sun by Weezer', \"Life's Been Good -Joe Walsh\", 'How You Like That by Blackpink', 'De Carolina by Rauw Alejandro', 'I Had Some Help - Morgan Wallen and Post Malone', 'kenye west', 'Blondie - Current Joys', 'Epitaph-king crimson', 'Hotel California', 'Useless by Omar Apollo', 'Blue Notes by Meek Mill', 'The Ballad of Jane Doe by Emily Rohm & Ride the Cyclone World Premiere Cast Recording Ensemble', 'Video Killed The Radio Star --- The Buggles', 'The Groovy Cat - PAWSA', 'the prophecy by taylor swift', \"I Didn't Know- Skinshape\\n\\n\\xa0\\n\\nDefinitely a song to play for class.\", 'I Know You Want Me by Pitbull', 'One of my favorite songs is \"Creep,\" by Radio Head.', 'Flashing Lights - Kanye West\\xa0', 'But Me - Ty Myers\\n\\nSomewhere in Brooklyn - Bruno Mars', 'Good Time - Collab by Carly Rae Jepsen and Owl City', 'Just the Way You Are by Bruno Mars', 'Lose Yourself by Eminem\\xa0', 'I love you I hate you - Playboycarti', 'Get Free by Lana Del Ray', '\"On, Wisconsin!\" by William T. Purdy', 'Wishlist, Denzel Curry', 'ed sheeran\\n\\n\\xa0', 'Test Drive (From How To Train Your Dragon) - John Powell', 'Poker Face - Lucki', 'Asareje - Spanish version', 'Guess by Charli XCX', 'Born to Run - Bruce Springsteen', 'Good days by sza', 'American Nights - Zach Bryan', 'Radio\\n\\nLana Del Ray', 'Scenario by A Tribe Called Quest.', 'What you know, Two Door Cinema Club', 'Circle\\n\\n\\xa0\\n\\n\\xa0', 'Dress Code - Mau p', \"If I Ain't Got You\\n\\n- Alicia Keys\", 'I like listening to quran, Al mumminun by yasser al dosari, al haqqah by yousef soqier and by naser al qatmi are also very good surahs', 'My favorite singer is Jay chou. I like all of songs of him', 'double take - Dhruv', 'pushing 21', 'Birds of a Feather Billie Eilish', 'Dang! - Mac Miller, Anderson .Paak', 'Slide - Calvin Harris, Frank Ocean, Migos', 'Vienna by Billy Joel', 'Pretty Slowly By Benson Boone', 'Broken Halos by For King and Country', 'Life is a Highway, Rascal Flatts', 'smells like teen spirit by Nirvana', 'betty taylor swift', 'n/a', 'Middle of the Night - loveless', 'Rich Girl by Hall And Oates', 'Dusk Till Dawn by Sia and Zayn', 'Wo Men De Ge - Wang Leehom', 'Springsteen - Eric Church', 'Feel it - D4vd', 'Feeling good, Michael Buble', 'Thunder struck-AC/DC', 'Aja by Steely Dan', 'Feel Like That - Stick Figure featuring Sublime', 'Someone New - Hozier', 'Tie Up-Zac Brown Band', 'Everybody wants to rule the world, Tears For Fears\\xa0', 'Virginia Beach-Drake', 'Is there still a light on by Adam Melchor, or There is a light and it never goes out by the Smiths', 'I really like Big Dawgs right now by Hanumankind and Kalmi', 'From the Start, Good Kid', 'Mercy Mercy By Marvi Gaye', 'The Heart Part 5 - Kendrick Lamar.', 'Nights by Frank Ocean', 'No Sleep Till Brooklyn by Beastie Boys', 'Fast Car by Luke Combs', 'Electric Feel - MGMT', 'Title: Black eye\\xa0\\n\\nArtist: VERNON', 'Thinking Bout You- Frank Ocean', 'When the sun hits, slowdive', 'Greedy- Tate McRae', 'classical music.', 'My Love Westlife', 'Us Without Me - Grentperez', 'Get By- Jelly Roll', 'Touch Me - Rui Da Silva', 'Passionfruit - Drake', 'Just Like Heaven by The Cure', 'Innerbloom by Rufus du Sol', '\"Where the wild things are\" - Luke Combs\\xa0', 'The Thief in Marrakesh by Arc De Soleil', 'fine Noah Kahan\\xa0', 'Frank Ocean:: All his songs in the albums :\"BLOND, CHANNEL ORANGE and Nostalgia/Ultra\\n\\n(My most favorite is BLOND)', 'Look Back At It - A Boogie Wit da Hoodie', 'Fantasy -Earth, Wind, & Fire', 'Better Together by Jack Johnson', 'High School in Jakarta by Niki Zenfaya', 'Satellite by Harry Styles.', 'Hotel by Claire Rosinkranz', 'Two Princes- Spin Doctors', 'Find a Way - A Tribe Called Quest', 'Brown Eyed Girl - Van Morrison', 'Dancing in the Dark by Bruce Springsteen', 'Everybody Wants to Rule the World\\n\\nTears for Fears', 'Mad Man Moon - Genesis', 'leavemealone by Fred Again', 'Please, Please, Please by Sabrina Carpenter', 'BSW -Mokambo Gang', 'Fluorescent Adolescent - Arctic Monkeys', 'Hacker by Death Grips', 'Black Smoke Rising by Greta Van Fleet', 'Kya Yahi Pyaar Hai\\n\\nKishore Kumar, Asha Bhosle', 'Jesus Walks, by Kanye West', 'Mr. red white and blue\\xa0\\n\\nby: Cofey Anderson', 'JAUH by Aziz Harun', 'You Are Not Alone - Michael Jackson', 'Right now - van halen', 'Otro atardecer by Bad Bunny', 'Northern Attitude by Noah Kahn & Hozier\\xa0', 'Someone you loved by Lewis Capaldi.', '\"The Chain\" by Fleetwood Mac', 'Earth by ClownCore', 'Turn my Swag On, Soulja Boy', 'Animal Spirits by Vulfpeck', 'Burn, Burn, Burn,\\xa0\\n\\n-Zach Bryan', 'System of a Down - B.Y.O.B.', 'Nirvana by INNA', 'MESSEY- Tommy Richman', 'Torey Lanez - Pink Dolphin Sunset', \"Sarah's Place By: Zach Bryan\\xa0\", 'Crash Into Me by Dave Matthews', 'Something in the Orange - Zach Bryan', 'Mercedes - Brent Faiyaz', 'SHAUN feat. Conor Maynard - Way Back Home', 'Flapper Girl - The Lumineers', '\"When You Were Mine\" - Joy Crookes', 'Heart shaped box - by Nirvana', 'Feathered Indians - Tyler Childers', 'Time in a Bottle by Jim Croce', \"I Don't Care by Ed Sheeran and Justin Bieber\", \"I'm Goin' Down by Bruce Springsteen\", 'Pink Pony Club by Chapel Roan', 'Stick Season', 'La Santa by Bad Bunny', '\"Ophelia\" by the Lumineers', 'Can I Kick It? by A Tribe Called Quest', 'Youngblood by 5 Seconds of Summer', 'Drew Barrymore by SZA', 'Jackie and Wilson, Hozier', 'Sun to Me by Zach Bryan', 'Fatal Trouble by ENHYPEN', 'Rock and Roll by Ken Carson', 'Funny Thing by Thundercat', 'Pyramid - ALYSS', 'Rather Be - Clean Bandit', 'thats life by frank sinatra', 'Breakdown by Jack Johnson', 'Ring of Fire - Johnny Cash', 'Brandy, Looking Glass', 'Astrothunder by Travis Scott', 'Jigsaw Falling Into Place by Radiohead', 'The Cave by Mumford and Sons', \"Ain't no love in Oklahoma by Luke Combs\", 'American pie by Don Mclean', '\"Follow God\" - Kanye West', 'Taylor Swift', 'baby birkin - gunna\\xa0', 'International Love by Pitbull', 'Springsteen by Eric Church\\xa0', 'The Ballad of Sir Frankie Crisp - George Harrison', 'Lady Killers II by G-Eazy', 'I Will Survive by Gloria Gaynor', 'this is how we roll flordia georgia line', 'This is me- Keala Settle', 'Style by Taylor Swift!!', 'Running up that hill, by Marc Canham & Candy Says', '\"okayy\" - Koi', 'Confident Demi Lovato', \"Fats Domino- Ain't That a Shame\", 'Falling by Trevor Daniel', \"Devil's Advocate by The Neighbourhood\", 'anything by Beyonce', 'Marigold by Aimyon', 'Where the Wild Things Are -Luke Combs\\xa0', 'Birds of a Feather by Billie Eilish', 'Chaleya by Arijit Singh and Shilpa Rao', 'Running out of time- Tyler the creator', 'Moonlight Sonata by Beethoven', 'Everywhere, Everything by Noah Kahan', 'Rumor Has It- Adele', 'February Seven by The Avett Brothers', 'Sail Away - David Gray', 'I did something bad - Taylor Swift', 'Creed - One Last Breath', 'Seryoga - Chernyi Bumer', 'Things you said\\n\\nCody fry', 'Burn Burn Burn by Zach Bryan', 'Get It Together by Drake', 'Dirty Deeds Done Dirt Cheap----AC/DC', 'Jersey Giant by Evan Honer', 'Follow Me - Uncle kracker', 'Takin it to the Streets - The Doobie Brothers', 'Mozzarella, Yung Gravy and Lil Keed', 'Simple Man by Shinedown', 'Salad Days - Mac Demarco', 'Till It Shines - Bob Segar', 'Miserere Mei- Gregorio Allegri\\n\\n\\xa0', 'Mr. Blue Sky,\\xa0 by Electric Light Orchestra', 'overwhelmed by Ryan mack', 'La Belle Fleur Sauvage - Lord Huron', 'The Sweet Escape by Gwen Stefani, Akon', 'varnish-African American sound recordings', 'Jesus Walks by Kanye West\\xa0', 'We Are the People - Empire of the Sun', 'Stars - HUM', 'Scar Tissue - Red Hot Chili Peppers', '\"Tattoo\" by Jordan Sparks', 'Sunflower - By: Post Malone\\xa0', 'Everlong - Foo Fighters', 'Wonderwall, Oasis\\xa0', 'Me and My Guitar, A Boogie wit da Hoodie', 'Friendly Pressure - jhelisa, sunship', 'Brandy - Looking Glass\\n\\n\\xa0', 'Juna - Clairo', 'Perfect Pair by beabadoobee', \"There's nothin' holdin' me back - shawn mendes\", 'Boys of Faith -Zach Bryan', 'arabella by arctic monkeys', 'If I knew - Bruno Mars\\n\\n\\xa0', 'circadian rhythm - Drake', '\"It was a good day\" Ice Cube', 'Lost in Japan', 'Bless the Telephone by Labi Siffre', 'You make my dreams come true', 'The Chain - Fleetwood Mac', 'black hole sun- soundgarden\\xa0', 'Close to you - Gracie Abrams\\xa0', 'Run out of Tears by Riley green.\\xa0', 'too fast by sonder', 'Booster Seat by Spacey Jane', 'Party!! Ryokuoushoku Shakai', 'Cleaning windows by van morrison', 'Heartbreaker, Justin Bieber\\xa0', 'Monster\\n\\nJustin Bieber', 'Ballade pour Adeline', 'We Are (One Piece) by Miura Jam', 'Springsteen - Eric Church', 'Skater Boi - Avril Lavigne', '\"Earfquake\" by Tyler, the Creator\\xa0', 'Alchemy by Taylor Swift', 'Any song by Zach Bryan.', 'Sandpaper by Zach Bryan(feat. Bruce Springsteen)', 'Everywhere Everything by Noah Kahan', 'Ordinary People by John Legend\\xa0', 'Disciples by Tame Impala', 'Stick season by Noah Kahn', 'Any songs :)', 'Free Now by Gracie Abrams', 'What goes around comes back around ,Justin Timberlake\\xa0\\n\\nthe last great American dynasty,Taylor swift\\n\\nwillow,Taylor swift\\n\\nSatellite,Lena(German singer)\\n\\n\\xa0', '360 by Charli xcx', 'Borderline by Tame Impala', '28 by Zach Bryan - maybe recency bias but I love that song', 'Hardwood Floors, Charles Wesley Godwin', 'Untitled 06 by Kendrick Lamar', 'Rock with You by Michael Jackson', 'minimal by ROLE MODEL', 'belong together- Mark Ambor', 'Amsterdam - Guster', 'A.M. Radio- The Lumineers', 'Flags by Coldplay', '\"hey, honey\"\\n\\nBy The 502\\'s', 'NO preferences, will listen to anything that is not country music and taylor swift', 'September - Earth Wind and Fire', 'Call Me - Luke Combs', 'I will not bow - breaking benjamin', 'You are the best thing - ray lamontagne', 'Fearless - Taylor Swift', 'Francis Forever, Mitski\\n\\n505, Arctic Monkeys\\n\\nHotel California, Eagles', '28 Zach Bryan', 'springsteen eric church', 'August - Taylor Swift', 'Silver Lining by Mt Joy', 'Good Morning - Kanye West', 'All of the Lights - Kanye West', 'Margaritaville by Jimmy Buffett\\xa0', 'Julia by Mt. Joy', \"I'd Rather Be With You - Bootsy Collins\", 'Fever Dua Lipa and Angele', 'PRIDE, kendrick lamar', 'Impurities by LE SSERAFIM', 'Redrum\\xa0\\n\\n21 Savage', '\"My Favorite Part\" Mac Miller', 'Butterfly by Crazy Town', 'Summer Days by Anri', 'Got Me Started by Troye Sivan', 'dreams fleetwood mac', 'Classical music.', 'Good Days by SZA', 'Three Little Birds, Bob Marley', 'See You Again by Kali Uchis and Tyler the Creator', 'California dreaming', 'East Side of Sorrow by Zach Bryan', 'Sultans of Swing, Dire Straits', 'Free Now- Gracie Abrams', 'Wake Up Call - Maroon 5', 'Blue Aint Your Color - Keith Urban', 'Mr Blue Sky - Electric Light Orchestra', 'Black by Pearl Jam', 'Small Worlds Mac Miller', 'Black Moon Rising - Black Pumas', 'Slow Dance in A Parking Lot - Thomas Rhett\\xa0', 'Cherub Rock by The Smashing Pumpkins', 'Second Hand News - Fleetwood Mac', 'Two Dozen Roses - Shenandoah', 'Battle symphony Linkin Park', 'Speaking Terms by Snail Mail', 'Black Star- Radiohead', 'Here comes the sun - Beatles', 'I don’t really have a favorite song in particular but I have been listening to a lot of J. Cole.', 'Holiday by Green Day', 'Let it Happen, tame Impala', 'Snow by Zach Bryan', 'Hell of a Way to Go by Riley Green\\xa0', 'Brandy (Through the Looking Glass)', 'Electric Feel - MGMT', '\"Ain\\'t No Rest for the Wicked\" by Cage The Elephant', 'Missing You - The Vamps\\xa0', 'Let it Happen, Tame Impala', 'The Calendar by Panic At The Disco', 'By and By - Caamp', 'Blowing Smoke by Gracie Abrams', 'Wake Up Alone by Amy Winehouse', 'Castle on the hill, Ed Sheeran\\xa0', 'Everywhere by Fleetwood Mac', '\"Prom\" by SZA', 'Hey Ya by Outkast', 'Actual Favorite Songs:\\n\\nEnter the Mirror - Les Rallizes Denudes or The Art of Fugue Contrapunctus IX - Evgeni Koroliov\\n\\nLecture Friendly (?):\\n\\nLove Will Tear Us Apart - Joy Division', 'A Bar Song-Shaboozey', 'Runaway By Kanye West', 'Virtual Insanity by Jamiroquai', 'You Can Call Me Al - Paul Simon\\xa0', \"What once was, Her's\\xa0\", 'Daylight Harry Styles', 'Spice up your life by the Spice Girls\\xa0', 'Viva La Vida by Coldplay', '28 by Zach Bryan', 'Killer Queen- Queen', 'Dreams by Fleetwood Mac', 'I do not have the character to type it but it is by Masayoshi Takanaka.', 'Becky G- Shower', 'Dont Stop Believin - Journey', 'Runaway Baby - Bruno Mars', 'Casualty by Lawrence', 'Magic in the Hamptons, Social House', 'Instagram by DEAN', 'Pain is inevitable - Daniel Ceaser\\n\\nStronger - Kanye West', '\"Sex, Drugs, Etc.\" by Beach Weather', 'Views- Drake', 'if only - the marias', 'Tera hone laga hoon - Atif Aslam', 'Here is Gone-Goo Goo Dolls', 'Starting Over by Chris Stapleton', 'Panama by Sports', 'Brazil by Declan McKenna', 'trouble, cage the elephant', 'Clarity - John Summit', 'Here is Gone-Goo Goo Dolls', 'Pompeii', 'Without Me by Eminem', 'One last time', 'Sky full of Stars by Coldplay\\xa0', 'Alaska, Maggie Rogers', 'Mary on a Cross- Ghost', 'U - Kendrick Lamar', 'Not Likes Us - Kendrick Lamar', 'Taylor Swift\\n\\nAll too Well', 'One Dance - Drake\\xa0', 'Mr. Brightside by the Killers\\n\\n\\xa0', 'I bet on losing dogs by Mitski.', 'G.O.A.T. by Diljit Dosanjh', 'Dog Days Are Over, Florence + The Machine']\n" + ] + } + ], + "source": [ + "## TODO: What is the list of songs by runners\n", + "\n", + "runners_idx = filter_match('Runner','Yes')\n", + "songs = []\n", + "for i in runners_idx:\n", + " song = cell(i,'Song')\n", + " if song != None:\n", + " songs.append(song)\n", + "print(songs)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "source": [ + "## Sorting\n", + "\n", + "There are two ways common ways in Python to sort a list. One way modifies the original list and the second creates a new list that is sorted but does not modify the original list.\n", + "\n", + "- The `sorted()` function creates a new sorted list and leaves the original list unmodified.\n", + "- The `.sort()` method sorts the original list, mutating it.\n", + "\n", + "```python\n", + "x = [2, 4, 1]\n", + "y = sorted(x)\n", + "print(x)\n", + "print(y)\n", + "```\n", + "```\n", + "[2,4,1]\n", + "[1,2,4]\n", + "```\n", + "\n", + "```python\n", + "x = [2, 4, 1]\n", + "y = x.sort()\n", + "print(x)\n", + "print(y)\n", + "```\n", + "```\n", + "[1,2,4]\n", + "None\n", + "```\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": { + "editable": true, + "slideshow": { + "slide_type": "" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2, 4, 1]\n", + "[1, 2, 4]\n" + ] + } + ], + "source": [ + "# TODO Sort using sorted() function\n", + "\n", + "x = [2, 4, 1]\n", + "y = sorted(x)\n", + "print(x)\n", + "print(y)" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1, 2, 4]\n", + "None\n" + ] + } + ], + "source": [ + "# TODO Sort using sort() method\n", + "x = [2, 4, 1]\n", + "y = x.sort()\n", + "\n", + "print(x)\n", + "print(y)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## You Try It\n", + "\n", + "Using sorting and the functions above to find:\n", + "\n", + "- A sorted list of songs from those who run and are over 20\n", + "- A sorted list of majors of the procrastinators, removing duplicates" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['\"My Favorite Part\" Mac Miller', '\"On, Wisconsin!\" by William T. Purdy', '\"Tattoo\" by Jordan Sparks', '360 by Charli xcx', 'Any songs :)', 'Asareje - Spanish version', 'BSW -Mokambo Gang', 'Ballade pour Adeline', 'Bless the Telephone by Labi Siffre', 'Booster Seat by Spacey Jane', 'De Carolina by Rauw Alejandro', \"Devil's Advocate by The Neighbourhood\", 'Disciples by Tame Impala', 'Dog Days Are Over, Florence + The Machine', 'Everlong - Foo Fighters', 'Everybody Wants to Rule the World\\n\\nTears for Fears', 'Everybody wants to rule the world, Tears For Fears\\xa0', 'February Seven by The Avett Brothers', 'Good Morning - Kanye West', 'Good Time - Collab by Carly Rae Jepsen and Owl City', 'Guess by Charli XCX', 'Hotel California', 'I Had Some Help - Morgan Wallen and Post Malone', \"If I Ain't Got You\\n\\n- Alicia Keys\", 'Jackie and Wilson, Hozier', 'Let it Happen, Tame Impala', 'Marigold by Aimyon', 'Missing You - The Vamps\\xa0', 'Mr Blue Sky - Electric Light Orchestra', 'Otro atardecer by Bad Bunny', 'Panama by Sports', 'Please, Please, Please by Sabrina Carpenter', 'Rock with You by Michael Jackson', 'Running up that hill, by Marc Canham & Candy Says', 'SHAUN feat. Conor Maynard - Way Back Home', 'Salad Days - Mac Demarco', 'Satellite by Harry Styles.', 'Spice up your life by the Spice Girls\\xa0', 'The Heart Part 5 - Kendrick Lamar.', 'The Thief in Marrakesh by Arc De Soleil', 'Two Princes- Spin Doctors', 'Wake Up Alone by Amy Winehouse', 'Wo Men De Ge - Wang Leehom', 'You Are Not Alone - Michael Jackson', 'You are the best thing - ray lamontagne', 'kenye west', 'n/a', 'pushing 21']\n" + ] + } + ], + "source": [ + "runners_idx = filter_match('Runner','Yes')\n", + "older_runners_idx = []\n", + "songs = []\n", + "for i in runners_idx:\n", + " age = cell(i,'Age')\n", + " song = cell(i,'Song')\n", + " if age == None or song == None:\n", + " continue\n", + " if age > 20:\n", + " songs.append(song)\n", + "print(sorted(songs))" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Business: Actuarial', 'Business: Finance', 'Business: Information Systems', 'Business: Other', 'Computer Science', 'Data Science', 'Engineering: Biomedical', 'Engineering: Industrial', 'Engineering: Mechanical', 'Engineering: Other', 'Languages', 'Mathematics/AMEP', 'Other (please provide details below).', 'Science: Biology/Life', 'Science: Chemistry', 'Science: Other', 'Science: Physics', 'Statistics']\n" + ] + } + ], + "source": [ + "proc_idx = filter_match('Procrastinator','Yes')\n", + "majors = []\n", + "for i in proc_idx:\n", + " major = cell(i,'Primary Major')\n", + " if major == None:\n", + " continue\n", + " majors.append(major)\n", + "majors=sorted(list(set(majors)))\n", + "print(majors)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.6" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/s25/Louis_Lecture_Notes/16_List_Practice/Lec_16_Worksheet_Solution.ipynb b/s25/Louis_Lecture_Notes/16_List_Practice/Lec_16_Worksheet_Solution.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..40346f843c426b2061e6b6fee2d0349ebdd670f4 --- /dev/null +++ b/s25/Louis_Lecture_Notes/16_List_Practice/Lec_16_Worksheet_Solution.ipynb @@ -0,0 +1,256 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "# Lecture 16 worksheet answers\n", + "# https://www.msyamkumar.com/cs220/s22/materials/lec-16-worksheet.pdf\n", + "# The purpose of this worksheet is to prepare you for exam questions.\n", + "# You should do the worksheet by hand, then check your work.\n", + "\n", + "# If you have questions please make a public post on Piazza and include the Given\n", + "# Students, feel free to answer each other's questions" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# Problem 1 Given:\n", + "nums = [100, 2, 3, 40, 99]\n", + "words = [\"three\", \"two\", \"one\"]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "99\n", + "[2, 3]\n", + "two\n", + "w\n", + "www\n", + "\n", + "1\n", + "2\n", + "[100, 'three']\n", + "three,two,one\n", + "e,t\n" + ] + } + ], + "source": [ + "# Problem 1 answers\n", + "print(nums[-1])\n", + "print(nums[1:3])\n", + "print(words[1])\n", + "print(words[1][1])\n", + "print(words[1][-2] * nums[2])\n", + "print()\n", + "print(words.index(\"two\"))\n", + "print(nums[words.index(\"two\")])\n", + "print(nums[:1] + words[:1])\n", + "print(\",\".join(words))\n", + "print((\",\".join(words))[4:7])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# Problem 2 Given:\n", + "rows = [[\"x\", \"y\",\"name\"], [3,4,\"Alice\"], [9,1,\"Bob\"], [-3,4,\"Cindy\"]]\n", + "header = rows[0]\n", + "data = rows[1:]\n", + "X = 0\n", + "Y = 1\n", + "NAME = 2\n" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4\n", + "3\n", + "3\n", + "Alice\n", + "Bob\n", + "\n", + "2\n", + "Cindy\n", + "3.0\n", + "5.0\n", + "Alice\n" + ] + } + ], + "source": [ + "# Problem 2 answers\n", + "print(len(rows))\n", + "print(len(data))\n", + "print(len(header))\n", + "print(rows[1][-1])\n", + "print(data[1][-1])\n", + "print()\n", + "print(header.index(\"name\"))\n", + "print(data[-1][header.index(\"name\")])\n", + "print((data[0][X] + data[1][X] + data[2][X]) / 3)\n", + "print((data[-1][X] ** 2 + data[-1][Y] ** 2) ** 0.5)\n", + "print(min(data[0][NAME], data[1][NAME], data[2][NAME]))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# Problem 3 Given:\n", + "rows = [ [\"Food Science\", \"24000\", \"0.049188446\", \"62000\"],\n", + " [\"CS\", \"783000\", \"0.049518657\", \"78000\"],\n", + " [\"Microbiology\", \"70000\", \"0.050880749\", \"60000\"],\n", + " [\"Math\", \"433000\", \"0.05293608\", \"66000\"] ]\n", + "hd = [\"major\", \"students\", \"unemployed\", \"salary\"]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CS\n", + "433000\n", + "True\n", + "2400070000\n" + ] + } + ], + "source": [ + "# Problem 3 answers\n", + "print(rows[1][0])\n", + "print(rows[3][hd.index(\"students\")])\n", + "print(len(hd) == len(rows[1]))\n", + "print(rows[0][1] + rows[2][1])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "# Problem 4 Given:\n", + "rows = [ [\"city\", \"state\", \"y14\", \"y15\"],\n", + " [\"Chicago\", \"Illinois\", \"411\", \"478\"],\n", + " [\"Milwaukee\", \"Wisconsin\", \"90\", \"145\"],\n", + " [\"Detroit\", \"Michigan\", \"298\", \"295\"] ]\n", + "hd = rows[0]\n", + "rows = rows[1:] #this removes the header and stores the result in rows\n" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Chicago\n", + "411\n", + "False\n", + "Detroit, Michigan\n" + ] + } + ], + "source": [ + "# Problem 4 answers:\n", + "print(rows[0][hd.index(\"city\")])\n", + "print(rows[0][hd.index(\"y14\")])\n", + "print(rows[2][hd.index(\"y14\")] < rows[2][hd.index(\"y15\")])\n", + "print(\", \".join(rows[-1][:2]))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Problem 5 Given:\n" + ] + } + ], + "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.11.4" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/s25/Louis_Lecture_Notes/16_List_Practice/cs220_survey_data.csv b/s25/Louis_Lecture_Notes/16_List_Practice/cs220_survey_data.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a0eb3c095988961ecdaba302d3afc56ac5704d5 --- /dev/null +++ b/s25/Louis_Lecture_Notes/16_List_Practice/cs220_survey_data.csv @@ -0,0 +1,979 @@ +Section,Lecture,Printed Copy,Age,Primary Major,Other Majors,Secondary Majors,Zip Code,Latitude,Longitude,Data Science Major,Pizza Topping,Cats or Dogs,Runner,Sleep Habit,Procrastinator,Song +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",,,,,,,,,,,,,,,, +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,20,Science: Physics,,,53726,43.0762,-89.409,No,sausage,cat,No,night owl,Maybe,The +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,18,Science: Chemistry,,Physics,53703,,,Maybe,mushroom,dog,No,no preference,Yes, +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,20,Science: Other,,,53717,40.7128,-74.006,Maybe,sausage,cat,No,night owl,Yes,The Score - Money Run Low +COMP SCI 319:LEC003,LEC003,Yes,24,Other (please provide details below).,Economics,,53703,30.5728,104.0668,No,pineapple,dog,Yes,early bird,Yes,Piano man Billy Joel +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Industrial,,,53706,40.71,-74,No,mushroom,dog,No,night owl,Yes,L.A. by Brent Faiyaz +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Biomedical,,,53706,38.9022,-77.0381,No,none (just cheese),dog,Yes,night owl,Yes,Risk - Gracie Abrams +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,22,Mathematics/AMEP,,,53703,43.2965,5.3698,No,mushroom,cat,No,night owl,Yes,false self - willow +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,20,Computer Science,,,53718,43.0734,89.3865,Yes,sausage,dog,Yes,no preference,Yes,Fly Me to the Moon by Frank Sinatra +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Other (please provide details below).,Undecided,,53706,38.5849,-90.3762,No,none (just cheese),dog,No,night owl,Yes,Tequila Sunrise - The Eagles +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Biomedical,,,53706,44.5133,-88.0133,No,sausage,dog,No,early bird,Maybe,"Pursuit of Happiness, Kid Cudi" +"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,19,Statistics,,,,,,Yes,mushroom,,No,night owl,No, +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,18,Data Science,.,.,53703,40.7128,-74.006,Yes,basil/spinach,cat,No,night owl,Yes,justin bieber or ken carson +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Business: Finance,,Operations and Technology Management ,53706,41.8781,-87.6298,No,pepperoni,dog,Yes,night owl,Yes,Don’t have one +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",,,,,,,,,,,,,,,, +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,20,Business: Finance,,,53703,39.9042,116.4074,Maybe,mushroom,cat,Yes,early bird,Maybe,Country road +"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,20,Computer Science,,,53726,37.5667,126.9783,Maybe,pepperoni,cat,No,night owl,Yes,Air - Ce matin-là +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,19,Data Science,,,53703,22.3964,114.1095,Yes,mushroom,neither,Yes,no preference,Maybe,just Friend +"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,,Science: Physics,,,53715,43.0739,-89.3852,No,pepperoni,cat,Yes,night owl,Yes,"People Change, by Little Hurt" +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,20,Data Science,,,53703,42.359,-71.0586,Maybe,pineapple,dog,No,night owl,Yes,"tyler, the creator" +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Science: Biology/Life,Neurobiology,Psychology,53715,40.7128,-74.006,Yes,sausage,dog,No,night owl,No,"Cold Summer, Fabulous " +"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,19,Engineering: Biomedical,N/A,considering neurobiology,53706,43.3178,88.379,No,sausage,dog,No,night owl,Yes,Big iron by Marty Robbins +COMP SCI 319:LEC001,LEC001,Yes,24,Computer Science,,,53726,40.7128,-74.006,No,macaroni/pasta,cat,No,early bird,Yes,Yellow Submarine by the Beatles +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Engineering: Biomedical,,,53705,21.1619,-86.8515,No,sausage,dog,Yes,night owl,Yes,dreams by fleetwood mac +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,,Engineering: Mechanical,,,53715,28.5383,-81.3792,No,sausage,cat,Yes,night owl,Yes,Ain't It Fun - Paramore +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,21,Data Science,economics,,,,,Yes,sausage,dog,Yes,night owl,Maybe, +"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Data Science,Psychology,Data science,53715,41,120,Yes,pepperoni,dog,No,night owl,Yes,I like you ---Doja Cat +COMP SCI 319:LEC004,LEC004,No,26,Data Science,,,53715,40.7128,-74.006,Yes,mushroom,dog,Yes,night owl,Yes,Young and Beautiful-- Lana Del Rey song +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Other,,,53706,13.7563,100.5018,No,pepperoni,cat,No,night owl,Yes,Again - Fetty Wap (clean version) +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,18,Engineering: Mechanical,,,53715,34.0126,-118.4371,No,none (just cheese),dog,No,night owl,Yes,Young Free and Single - Frank Jade +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,19,Statistics,,Economics,53706,40.7128,-74.006,No,none (just cheese),cat,No,no preference,Yes,"Song: Fly Me To The Moon + +By: Frank Sinatra" +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,22,Other (please provide details below).,information science,I have a certificate from the university in computer science,53175,26.642,409.9576,No,none (just cheese),cat,No,night owl,Yes,She Burns away - Briscoe EP +"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,19,Data Science,,,,43.0945,-87.8975,Yes,green pepper,dog,No,night owl,Yes,No Pole by Don Toliver +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,20,Other (please provide details below).,Information Systems,,53726,46.5935,7.9091,Yes,green pepper,cat,No,night owl,Maybe,Feel Good Inc. by Gorillaz +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,21,Other (please provide details below).,Information Science,,53703,43.0389,-87.9065,No,sausage,neither,No,night owl,Yes,D4VD +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Biomedical,,,53706,42.3314,-83.0458,No,pepperoni,dog,Yes,night owl,Maybe,fortnite lobby music +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,20,Science: Biology/Life,,Statistics,53703,31,121,No,sausage,neither,No,night owl,Yes,love story taylor swift +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,20,Data Science,,Pre-Business planning on doing Operation and Technology Management.,53715,38.9072,-77.0369,Yes,sausage,dog,No,no preference,Maybe,Taste by Sabrina Carpenter +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,19,Data Science,,,53706,23.3,113.8,Yes,pineapple,cat,Yes,night owl,Maybe,"---------------------- +Kehlani, “After Hours” +----------------------" +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,19,Engineering: Mechanical,,,53706,37.1,25.4,No,sausage,cat,Yes,night owl,Yes,"We Major + +Kanye West" +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,,,53706,41.8781,-87.6298,No,pepperoni,cat,No,early bird,Yes,Will I See You Again? - Thee Sacred Souls +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,21,Science: Other,N/A,I intend to declare a Data Sciences major as my second major. ,53706,39.9042,116.4074,Yes,pineapple,dog,No,night owl,Yes,I Love You - Riopy +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,No,pepperoni,dog,No,night owl,Yes,Learning to Flt - Tom Petty +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,20,Computer Science,,Data Science,53706,-1.2921,36.8219,Yes,pepperoni,cat,Yes,no preference,Yes,"Verdansk, Dave" +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,21,Other (please provide details below).,Economics,Data Science Certificate,53703,37.2489,-121.9452,No,pepperoni,dog,Yes,night owl,Yes,One of my favorite songs of all time is Hotel California by The Eagles. +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,18,Engineering: Mechanical,,,53706,43.0712,-89.3981,Maybe,basil/spinach,dog,No,night owl,Yes, +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,20,Other (please provide details below).,,"Economics, data science",53703,40.7128,-74.006,Maybe,green pepper,dog,No,early bird,No,lil tjay +"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,,Other (please provide details below).,,,53703,39,116,Yes,pineapple,dog,Yes,no preference,Yes,Taylor Swift +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,19,Engineering: Other,N/A,N/A,53706,41.3851,2.1734,No,sausage,dog,No,night owl,Yes,Broken Window Serenade +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,19,Business: Information Systems,,,53703,,,No,basil/spinach,dog,Yes,night owl,Yes,Weston estate -water +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,,,53706,40.7,74,No,sausage,cat,No,night owl,Yes,She Will lil wayne +"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,20,Data Science,,,53703,-34.6037,-58.3816,Yes,mushroom,dog,No,night owl,Yes,Christ Is Enough - Hillsong Worship +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,19,Engineering: Biomedical,,,,,,,,,,,,Any SZA song or country song ever +"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,21,Mathematics/AMEP,,I do have data science and stats in minors.,53703,48.8566,2.3522,Yes,pepperoni,dog,Yes,night owl,Yes,"Recently, it would be 'Always' by Yoon Mi-rae. It's a Korean song." +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,18,Other (please provide details below).,,,,53706,-89.3852,Yes,pineapple,cat,Yes,night owl,Yes,love story +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC002,Yes,18,Engineering: Mechanical,,Philosophy,53706,,-89.4012,No,macaroni/pasta,dog,Yes,no preference,Yes,Bob Marley!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,19,Engineering: Mechanical,,,53726,41.8781,-87.6298,No,pepperoni,dog,Yes,early bird,Yes,Can't Tell Me Nothing by Kanye West +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,20,Data Science,,Possibly neurobiology,53715,41.8781,-87.6298,Yes,sausage,cat,No,night owl,Yes,Walk This Way by Aerosmith +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,18,Data Science,didn't select,I'm also majoring in Economics. ,53706,41.881,-87.623,Yes,none (just cheese),dog,Yes,night owl,Maybe,Hey Driver By Zach Bryan +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Engineering: Biomedical,n/a,n/a,53706,41.4979,-88.2313,No,sausage,dog,Yes,early bird,Maybe,NISSAN ALTIMA by Doechii +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,21,Science: Other,,,53702,43.0722,89.4008,No,pepperoni,dog,Yes,early bird,Yes,Some Nights by FUN +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,21,Statistics,,,53706,30.0023,120.5681,Maybe,pepperoni,neither,Yes,night owl,Yes,"The First Snow + +by EXO" +"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Other,Materials Science and Engineering,no,53703,59.321,18.072,No,pepperoni,dog,Yes,night owl,Yes,Kingslayer (Feat. BABYMETAL) this ain't never getting played +"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,21,Business: Finance,,,53715,51.5074,-0.1278,No,basil/spinach,cat,Yes,night owl,Yes,Hotel California by the Eagles +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,19,Engineering: Mechanical,,,57303,10,20,No,pepperoni,cat,No,night owl,No,Born in the USA - Bruce Springsteen +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,20,Computer Science,,,53705,37.5,121.4737,Maybe,pepperoni,cat,Yes,early bird,Yes,"Der Hexenkönig + +HyperGryph · 2023" +COMP SCI 319:LEC003,LEC003,No,23,Other (please provide details below).,Agricultural and Applied Economics.,,53713,39.9042,116.4074,No,pepperoni,cat,No,night owl,Yes,"Hotel California + +Eagles" +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,21,Computer Science,,Data Science,53703,37.7749,-122.4194,Yes,pineapple,cat,Yes,night owl,Yes,rookie by knock2 +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,43.0798,-89.5482,No,sausage,dog,Yes,early bird,No,Welcome to the Jungle by Guns n' Roses +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,21,Other (please provide details below).,Personal Finance,,53703,40.7536,-73.9992,Yes,pepperoni,dog,No,night owl,Yes,That's so True by Gracie Abrams +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC001,Yes,20,Other (please provide details below).,Information Science,Data Science (possibly),53706,25.7617,-80.1918,Yes,macaroni/pasta,dog,Yes,night owl,Yes,august by Taylor Swift +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,19,Other (please provide details below).,I am majoring in Economics and Statistics.,"Economics, Statistics",53715,59.3293,18.0686,Maybe,pepperoni,cat,No,night owl,Yes,Snowman by Sia +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,20,Other (please provide details below).,Information Science ,,53703,41.8781,-87.6298,No,none (just cheese),dog,No,no preference,Yes,"Cold Damn Vampires, Zach Bryan " +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,21,Other (please provide details below).,Information Science,N/A,53713,41.8781,-87.6298,Maybe,pepperoni,dog,Yes,early bird,Yes,"I do not have a favorite song, but favorite artist would probably be Travis Scott" +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,19,Computer Science,,,53715,31.14,121.29,Maybe,mushroom,cat,Yes,night owl,Yes,if looks could kill by chrissy costanza +"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,22,Computer Science,"My primary major is Information Science, however, I am doing a Computer Science Certificate. ",,53711,25.2048,55.2708,No,pineapple,dog,No,early bird,Yes,Til Further Notice - Travis Scott & 21 Savage +"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,21,Business: Other,,,53715,40.9807,-73.6838,No,pepperoni,dog,No,early bird,No,Everywhere Fleetwood Mac +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,22,Computer Science,.,.,53715,35.8687,128.605,Maybe,none (just cheese),neither,No,night owl,Maybe,Hello - Luther Vandross +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,18,Engineering: Industrial,,,53706,56.3217,-2.716,No,none (just cheese),dog,Yes,night owl,Yes,Guy for That by Post Malone and Luke Combs +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Other,,,53706,44.7316,-73.3937,No,pineapple,dog,No,night owl,Yes,Maine - Noah Kahan +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,22,Data Science,,,53706,37.5665,126.978,Maybe,pepperoni,dog,No,night owl,Yes,Smells like teen spirit - nirvana +"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,18,Engineering: Biomedical,,,53706,43.3209,-1.9845,Maybe,basil/spinach,dog,No,night owl,Yes,Stick Season by Noah Kahan +"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,18,Other (please provide details below).,undecided,,53706,48.8566,2.3522,Yes,none (just cheese),neither,No,night owl,Maybe,"Typa girl, by BLACKPINK" +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,-43.5321,172.6362,No,pepperoni,cat,No,night owl,Yes,You Got Me by The Roots & Erykah Badu +"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,No,20,Business: Finance,N/A,"Mathematics, Finance",53703,44.8511,-93.4773,No,sausage,dog,Yes,night owl,Maybe,SUPERPOSITION - Daniel Caesar +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,20,Other (please provide details below).,Econ,,53703,36.7783,-119.4179,Maybe,pepperoni,cat,No,night owl,Yes,Gracie Abrams - That's so True +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Mathematics/AMEP,,,53703,-2.9001,-79.0059,Yes,green pepper,dog,Yes,night owl,Yes,I will Survive Gloria Gainor +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,20,Business: Finance,N/A,Data Science Certificate,53706,32.7765,-79.9311,No,sausage,dog,Yes,early bird,Yes,Race My Mind-Drake +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,,Computer Science,,,63706,0,0,Maybe,mushroom,dog,Yes,night owl,Yes,jump around +"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Data Science,,"Math, Stats",53706,38.6083,-90.1813,Yes,pepperoni,dog,Yes,night owl,Yes,"Search & Rescue + +By:Drake" +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,21,Business: Finance,,,53703,27.6233,-80.3893,No,pepperoni,dog,No,night owl,Yes,"FourFiveSeconds, Rihanna, Kanye West" +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,21,Other (please provide details below).,Information Science ,,53703,35.0116,135.768,Maybe,Other,cat,Yes,early bird,No,"Say It Right, Nelly Furtado " +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,19,Engineering: Mechanical,,,53703,21.4055,-157.7402,No,pepperoni,dog,Yes,early bird,Yes,"More - Bobby Darin + + " +"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,21,Computer Science,,,53715,34.0522,-118.2437,No,sausage,dog,No,night owl,No,Dehors +"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,21,Mathematics/AMEP,,,53715,30,120,Yes,none (just cheese),cat,No,night owl,Yes,Clean by Taylor Swift +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,No,pineapple,cat,No,no preference,Maybe,dtmf by Bad Bunny +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,18,Engineering: Other,,"Data science, computer science",53706,44.3154,-89.902,Maybe,pepperoni,dog,No,night owl,Yes,Hozier -> From Eden +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,19,Other (please provide details below).,Political Science,,53706,41.8818,87.6298,No,none (just cheese),neither,No,night owl,Yes,"Sprinter, Dave & Central Cee" +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,25,Data Science,,,53703,41.8781,-87.6298,Yes,pepperoni,neither,No,early bird,No,REBEL HEART - IVE +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,21,Data Science,,,53703,18.4562,-67.1221,Yes,pepperoni,cat,No,night owl,Yes,NuevaYol - Bad Bunny +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,,,53706,20.6296,-87.0739,No,pepperoni,cat,Yes,night owl,Yes,Yellow by coldplay +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,18,Engineering: Biomedical,,,53706,40.7128,-74.006,Maybe,sausage,cat,No,night owl,Yes,Art House by Malcolm Todd +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Mechanical,,,53589,31.7684,35.2137,No,pepperoni,dog,Yes,night owl,Yes,"Rompe la Piñata, Voces Infantiles" +"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,20,Mathematics/AMEP,,,53703,30.2741,120.1551,No,pineapple,cat,No,night owl,Maybe,"Coming Home + +Peter Jeremias" +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,18,Business: Finance,,,63117,51.1785,-115.5743,Yes,pepperoni,dog,No,night owl,Yes,Iris - The Goo Goo Dolls +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,19,Engineering: Mechanical,,,53706,43.7401,7.4266,No,none (just cheese),dog,No,night owl,Yes,Crooked Smile - J Cole +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,18,Other (please provide details below).,I am not sure. ,,53706,22.1987,113.5439,Maybe,sausage,cat,No,night owl,Yes,Happiness is a butterfly - Lana Del Rey +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,20,Other (please provide details below).,Economics,,53703,39.4698,-106.0492,Yes,sausage,dog,No,night owl,Yes,Sundream by Rufus Du Sol +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,21,Data Science,Data Science,,53703,30,,Yes,sausage,dog,No,early bird,Yes,Justin Biber +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,19,Computer Science,,,53715,40.0384,-76.1078,No,mushroom,cat,No,night owl,Yes,エータ・ベータ・イータ - ルゼ (Eta Beta Eta - LUZE) +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,20,Science: Biology/Life,,Data Science,53706,43.0775,-89.4122,Maybe,pineapple,cat,No,night owl,Yes,Redbone - Childish Gambino +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,21,Data Science,,,53703,18.3381,-64.8941,Yes,pepperoni,dog,No,no preference,Yes,"I like It, by Debarge" +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Other,,,53718,45.9409,89.4957,No,pepperoni,dog,No,night owl,Yes, +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,21,Other (please provide details below).,Personal finance ,,53703,43.0722,89.4008,No,pineapple,dog,No,night owl,Yes,"Fast car, Luke combs" +"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,21,Science: Other,,Classical humanities,53703,44.9291,-87.1967,No,none (just cheese),cat,No,no preference,No,Avalyn I by Slowdive +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC004,No,19,Computer Science,,,53703,26.2146,78.1827,Maybe,mushroom,dog,No,night owl,Yes,"MOCKINGBIRD , eminem" +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,20,Data Science,,I am also an Economics major. ,53703,41.8781,-87.6298,Yes,pepperoni,cat,Yes,night owl,Yes,"""Me and Your Mamma"" by Childish Gambino " +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,21,Data Science,,,53715,23.1291,113.2644,Yes,pepperoni,dog,No,night owl,Yes,luther - Kendrick Lamar & SZA +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,20,Business: Finance,,Information systems,53711,-6.1751,106,No,pineapple,dog,Yes,night owl,Yes,Kelis +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,18,Engineering: Biomedical,,no,53706,43.0731,-89.4012,No,pineapple,cat,Yes,no preference,Yes,Any bonjovi music +"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,20,Engineering: Mechanical,,,53715,41.8781,-87.6298,No,sausage,dog,No,night owl,Yes,"Hypnotize, System of a Down" +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,17,Data Science,None,Data Sciemce,53715,35.4532,-82.2871,Yes,green pepper,dog,Yes,night owl,Yes,Astronomy +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,20,Engineering: Mechanical,,,53715,110.7624,43.4799,No,pineapple,dog,Yes,night owl,No, +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,Yes,18,Engineering: Biomedical,,,53706,44.9778,-93.265,No,sausage,dog,Yes,no preference,Yes,Linger by The Cranberries +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,18,Science: Chemistry,,Possibly data science?,53706,32.7157,-117.1611,Yes,basil/spinach,dog,Yes,early bird,Yes,Vienna by Billy Joel +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,18,Business: Finance,,Data Science Certificate,53706,34.0736,-118.4004,Maybe,pepperoni,dog,Yes,night owl,Yes,We are young - by fun. +"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,20,Computer Science,,"I am double majoring, and Data Science is my other major",53715,36.3932,25.4615,Yes,sausage,cat,Yes,early bird,No,Lovesick by Laufey +COMP SCI 319:LEC003,LEC003,No,26,Data Science,,,53703,30.5728,104.0668,No,basil/spinach,dog,Yes,early bird,Maybe,"Billy Joe + +Piano man" +"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Biomedical,,,53706,45.4408,12.3155,No,pepperoni,dog,Yes,no preference,No,Luther by SZA and Kendrick Lamar +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,18,Other (please provide details below).,Computer Science,Data Science ,53706,35.6762,139.7636,Yes,pepperoni,dog,Yes,night owl,Yes,Who Knows Who Cares - Local Natives +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53706,48.8566,2.3522,Maybe,pepperoni,dog,No,no preference,Yes,"""That's What I Like"" - Bruno Mars" +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,18,Science: Physics,,Astrophysics,53706,42.9665,-88.0032,No,sausage,dog,Yes,early bird,No,Where the Wild Things Are by Luke Combs +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,22,Statistics,Statistics ,Economics,53715,31.299,120.5853,Maybe,tater tots,cat,No,night owl,Maybe,Someone like you - Adele +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53706,41.9028,12.4964,Maybe,pepperoni,cat,No,night owl,Yes,"The Marías-Cariño + +The Killers-Jenny was a friend of mine" +COMP SCI 319:LEC004,LEC004,Yes,24,Business: Information Systems,,,53705,22.9995,120.2293,Yes,macaroni/pasta,dog,No,night owl,Yes,None +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,20,Data Science,,Economic,53703,22.3964,114.1095,Yes,pineapple,neither,No,night owl,Yes,Love yourself- Justin Bieber +"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,19,Mathematics/AMEP,,,53715,44.7439,-93.2171,No,sausage,dog,Yes,night owl,Yes,Viva La Vida by Coldplay +"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,20,Other (please provide details below).,Undecided major,N/A,53703,37.5665,126.978,Maybe,Other,dog,No,early bird,No,Luther by Kendrick Lamar +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,20,Business: Finance,N/A,Data Science,53703,37.5665,37.5665,Maybe,pepperoni,cat,No,night owl,Yes,I had some help - Post Malone +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,18,Computer Science,,,53706,48.8566,2.3522,Yes,pepperoni,cat,Yes,early bird,Maybe,The Unforgiven by Metallica +"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,19,Business: Finance,,Statistics,53703,32.0853,34.7818,Maybe,none (just cheese),dog,Yes,night owl,Yes,Phoenix by A$AP Rocky +"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Biomedical,,,53706,36.1699,-115.1398,No,sausage,dog,No,no preference,Maybe,My favorite song is What I've Done by Linkin Park. +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,18,Engineering: Biomedical,,,53706,48.8566,2.3522,No,sausage,dog,No,no preference,Maybe,Sunday Morning - Maroon 5 +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,20,Other (please provide details below).,"Design, Innovation, and Society",,53706,40.7128,-74.006,Maybe,none (just cheese),dog,No,no preference,Maybe,You Are Enough - Sleeping At Last +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Biomedical,,,53706,41.8988,12.5024,No,sausage,dog,No,no preference,No,Nine Ball by Zach Bryan +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,20,Business: Finance,,,53703,37.9838,23.7275,Maybe,pepperoni,neither,No,early bird,Yes,Redbone- Childish Gambino +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,18,Engineering: Biomedical,,,53706,39.6635,-106.6218,No,pepperoni,dog,No,night owl,No,One of These Mornings - Zeds Dead +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,18,Business: Actuarial,,,53706,48.8647,2.349,Maybe,none (just cheese),dog,Yes,night owl,Maybe,I remember everything by Zach Bryan +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,,Engineering: Mechanical,,,53706,44.86,-92.63,No,pepperoni,dog,Yes,night owl,Yes,"still standing, Elton john" +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,20,Other (please provide details below).,Economics,Personal Finance,53715,60.8608,7.1118,No,pineapple,dog,No,night owl,No,"""Sultans of Swing"" - Dire Straits" +"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,19,Statistics,,,53715,42.3601,-71.0589,No,pepperoni,dog,No,no preference,Maybe,Colder Weather - Zac Brown Band +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,19,Other (please provide details below).,My primary major is Economics. ,data sciences,53703,33,107,Yes,pineapple,neither,No,night owl,Yes,《BYE BYE BYE》lovestoned +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,19,Engineering: Industrial,,,53703,51.5074,-0.1278,No,pineapple,dog,Yes,early bird,Yes,Julia - SZA +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Mechanical,,,53706,44.1874,-89.8742,No,sausage,dog,No,night owl,Yes,"We Are Young (feat. Janelle Monae), by Fun." +"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,18,Engineering: Mechanical,,,53706,-25.4075,-49.2825,No,Other,dog,No,no preference,No,Xtal by Aphex Twin +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Industrial,,,53715,43.3328,-88.0074,No,sausage,cat,Yes,early bird,No,Any song by the eagles +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,19,Engineering: Mechanical,,,53703,38.5394,-0.1912,Maybe,pepperoni,dog,No,night owl,Yes,Beautiful Things Benson Boone +"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,20,Data Science,,,53703,41.8781,87.6298,Yes,pepperoni,dog,No,night owl,Yes,More Than My Hometown by Morgan Wallen +"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,19,Statistics,,Music,53715,44.9778,-93.265,Maybe,pepperoni,cat,No,night owl,Yes,"Texas Blue, Quadeca" +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,19,Other (please provide details below).,Economics,N/A,53703,44.8897,93.3499,Maybe,none (just cheese),dog,No,night owl,Maybe,Erase Me - Kid Cudi +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,21,Engineering: Other,Materials Science and Engineering ,none,53703,-23.01,-44.31,No,basil/spinach,dog,No,early bird,Maybe,halo - beyonce +COMP SCI 319:LEC001,LEC001,No,25,Engineering: Biomedical,no,no,53705,30,30,Maybe,pineapple,dog,Yes,no preference,Yes,SULONG WANG +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,18,Other (please provide details below).,Economics ,Data Science,53706,12.9716,77.5946,Yes,pepperoni,dog,No,night owl,Maybe,Where is my mind-pixies +COMP SCI 319:LEC002,LEC002,Yes,26,Data Science,INTERNATIONAL PUBLIC AFFAIRS,,53593,43.7696,11.2558,Maybe,mushroom,dog,Yes,night owl,Yes,"Sam Smith Say it first + +Sam Smith Too Good At GoodByes" +"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Computer Science,,,53703,43.0718,-89.3949,No,Other,dog,Yes,night owl,Yes,DragonForce - Ashes of the Dawn +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,19,Business: Finance,Don‘t make sure,nope,53707,1,1,Maybe,macaroni/pasta,dog,No,no preference,No,Girls Want Girls +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,18,Engineering: Biomedical,,,53706,42.3601,-71.0589,No,pepperoni,cat,Yes,early bird,Yes,"Walking on Sunshine, katrina and the waves " +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,24,Computer Science,,Psychology,53715,42.3601,-71.0589,Maybe,pepperoni,cat,No,night owl,Yes,"Pink Pony Club, Chappel Roan (but specifically the Plankton version)" +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,18,Science: Physics,,,53706,41.9028,12.4964,Maybe,sausage,cat,No,no preference,Yes,Don't Stop Believin' - Journey +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,19,Engineering: Mechanical,,,53703,53.23,-9.71,No,pepperoni,dog,No,night owl,Yes,"Here Today, The Chameleons" +"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,35,Other (please provide details below).,Genetics and Genomics,Data Science,53706,8.815,108.4755,Yes,Other,neither,No,night owl,Yes,The Final Countdown +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,21,Other (please provide details below).,其实我到现在还没决定我的专业。但我可能会选择信息科学。,,53706,-37.8136,144.9631,Maybe,pineapple,cat,Yes,no preference,Maybe,Anyone Crystal_Bats +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,22,Computer Science,,Data Science,53703,40.7128,151.2093,Yes,Other,dog,No,early bird,No,"Mozart, Don Giovanni. + + " +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,,Data Science,,,53706,37,126,Yes,pineapple,dog,No,night owl,Yes,"I like K-pop. And Enhypen is my favorite group. My favorite song is ""No Doubt"" from Enhypen. I will be so excited if this song is played before class starts!" +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,22,Engineering: Mechanical,,,53726,45.6927,-90.4011,No,sausage,cat,No,night owl,Yes,Ten Years Gone - Led Zeppelin +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Other,,,53706,41.0082,28.9784,No,basil/spinach,cat,Yes,early bird,Yes,5 dollar pony rides - Mac Miller +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,,Other (please provide details below).,Economics,Data Science,53706,10.8231,106.6297,Yes,sausage,dog,No,night owl,Yes,Girl with the tattoo enter - Miguel +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,22,Other (please provide details below).,Economics,Data science,53703,37.5665,126.978,Yes,mushroom,cat,No,early bird,Maybe,Sting - shape of my heart +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Biomedical,,,53706,39.0742,21.8243,No,mushroom,dog,No,night owl,Yes,CHIHIRO - Billie Eilish +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,19,Other (please provide details below).,Astronomy-Physics,,53706,48.1771,16.3806,Maybe,green pepper,dog,No,night owl,Yes,Speed the Collapse - Metric +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,,Science: Other,,,53715,48.8566,2.3522,No,basil/spinach,dog,No,no preference,Maybe,Delicate by Taylor Swift +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,24,Computer Science,,,53703,41.8,-87.6298,No,pepperoni,neither,No,no preference,No,Babymonster - Drip +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,18,Other (please provide details below).,Economics,,53706,34.6937,135.5022,No,basil/spinach,cat,No,night owl,Yes,Brazil by Declan McKenna +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,19,Engineering: Mechanical,,,53706,41.3851,2.1734,No,pepperoni,dog,No,night owl,Yes,Summertime Sadness (Lana Del Rey Vs. Cedric Gervais) - Cedric Gervais Remix +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,21,Statistics,Statistics ,Mathematics,53703,30,121,Maybe,sausage,neither,No,night owl,Yes,"Risk It All, Jason Zhang" +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,18,Other (please provide details below).,Currently a pre business student but looking to apply to the engineering school,,53706,51.1802,-115.5657,Maybe,macaroni/pasta,dog,Yes,no preference,Yes,"Younger Years Zach Bryan + +Chase Her Baily Zimmerman + +Big Country music guy" +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,18,Science: Physics,,,53706,46.7828,-92.1055,Maybe,none (just cheese),cat,No,night owl,No,"Love’s Train + +Bruno Mars, Anderson .Paak, Silk Sonic" +COMP SCI 319:LEC002,LEC002,Yes,22,Science: Other,,,53726,47.6062,-122.3321,No,Other,dog,Yes,no preference,Maybe,"Fast Car - Luke Combs cover + +Blinding Lights - The Weeknd + +Alley Rose - Conan Grey + +Iris - Goo Goo Dolls, preferably Live Buffalo version + +Highwayman - the Highwaymen (Johnny Cash, Willie Nelson, Kris Kristoferson, Waylon Jennings) + +Dream Lantern - RADWIMPS <English version, not Japanese + +Help! - The Beatles + +Crimson and Clover - Joan Jett + +Tiny Dancer - Elton John" +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC001,Yes,19,Science: Physics,physics ,,53717,28.2199,112.9175,No,sausage,neither,Yes,night owl,Yes,春雷 Yonezu Kenshi +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,21,Engineering: Industrial,,,53703,40.7128,-74.006,No,basil/spinach,dog,No,night owl,Yes,Favourite by Fontaines D.C. +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,19,Other (please provide details below).,Economics,Nope,53706,39.93,116.38,Maybe,sausage,dog,No,no preference,Maybe,Blank Space by Taylor Swift +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Business: Actuarial,,,53711,43.0389,-87.9065,No,pepperoni,cat,Yes,early bird,Yes,Counting Stars- One Republic +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,,Other (please provide details below).,neurobiology,,53715,23.1291,113.2644,No,none (just cheese),dog,Yes,no preference,Maybe,head in the clound by hayd +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,20,Other (please provide details below).,History,Biology,53706,39.9524,-75.1636,No,pepperoni,dog,No,night owl,Yes,"""Man on the Moon"" - Zella Day" +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,20,Computer Science,,,53715,45.4408,12.3155,No,Other,cat,No,night owl,Yes,The Fine Print by The Stupendium +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,19,Data Science,,,53706,39.3377,-83.3528,Yes,none (just cheese),dog,No,no preference,Yes,You're So Vain by Carly Simon +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,18,Other (please provide details below).,Undecided major - just exploring some areas of possible interest. ,n/a,53706,39.0699,-77.1847,Maybe,pepperoni,dog,Yes,night owl,Yes,Something in the way you move - Ellie Goulding +"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,18,Engineering: Biomedical,,,53706,39.0742,21.8243,No,pepperoni,dog,No,night owl,Yes,Shirt by SZA +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,19,Business: Actuarial,,Risk Management & Insurance,53703,34.8697,-111.7609,No,pepperoni,dog,Yes,no preference,Yes,"All Star, Smash Mouth" +"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,20,Business: Finance,,,53703,42.3601,-71.0589,No,Other,dog,No,no preference,Maybe,(Don't Fear) The Reaper - Blue Oyster Cult +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,20,Engineering: Mechanical,n/a,n/a,53726,43.6275,89.7661,Yes,Other,cat,No,early bird,No,Why Georgia - John Mayer +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,22,Business: Other,,Political science,53715,25.033,121.5654,Maybe,none (just cheese),cat,Yes,early bird,Maybe,Everything Sucks / Vaultboy +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,19,Other (please provide details below).,Political Science ,,53706,41.8781,87.6298,Maybe,none (just cheese),dog,Yes,night owl,Yes,Pyramids by Frank Ocean +COMP SCI 319:LEC003,LEC003,No,24,Computer Science,,,53705,-3.846,-32.412,Yes,pepperoni,dog,No,early bird,No, +"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,20,Data Science,,,53715,31.2304,121.4737,Yes,mushroom,cat,No,night owl,Yes,Exhale +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,20,Engineering: Industrial,,,53703,41.8781,-87.6298,No,pepperoni,dog,Yes,early bird,Yes,Sunflower - Post Malone (feat. Swae Lee) +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,18,Data Science,,,53706,44.8653,-93.367,Yes,pineapple,dog,No,night owl,Yes,When the sun goes down - Arctic Monkeys +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,19,Computer Science,,,53706,28.7041,77.1025,Maybe,Other,dog,No,no preference,Yes,Sailor Song by Gigi Perez +"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,20,Computer Science,,,53703,57.697,11.9865,No,mushroom,cat,No,no preference,No,Julia - Yellow Ostrich +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,19,Computer Science,,Information Systems,53703,41.8781,-87.6298,No,Other,dog,No,no preference,Maybe,"Hey Jude, The Beatles" +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,22,Other (please provide details below).,Psychology,Information Science,53703,32.0603,118.7969,No,mushroom,neither,No,night owl,Yes,Wasteland - Royal & The Serpent +"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,23,Science: Physics,Not applicable,Not applicable,53706,43.07,-89.4,No,pepperoni,dog,No,night owl,Yes,"Deference for Darkness, Marty O'Donnell" +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,20,Computer Science,,,53715,46.1129,-89.6445,Maybe,pepperoni,dog,No,night owl,Yes,Mr.Brightside by The Killers +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,19,Business: Actuarial,,,53715,3.1279,101.5945,Maybe,none (just cheese),cat,Yes,early bird,Yes,'lock/unlock' by jhope (ft. benny blanco) +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Science: Physics,Physics,Astronomy,2420,42,71,Maybe,basil/spinach,dog,No,night owl,Maybe,Somebody Else by 1975 +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53706,23.032,113.1181,No,none (just cheese),dog,Yes,no preference,Maybe,富士山下-陈奕迅 +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Biomedical,N/A (I can't submit the quiz unless there is an answer in this field),N/A (I can't submit the quiz unless there is an answer in this field),53706,40.7128,-74.006,No,Other,dog,No,night owl,No,"""Biking"" - Frank Ocean, JAY-Z, Tyler, The Creator" +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,20,Other (please provide details below).,Global Health,,53715,50.5486,-4.586,No,green pepper,cat,No,no preference,Yes,Jackie and Wilson by Hozier +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,21,Other (please provide details below).,Economics,Political Science,53703,3.1409,101.6932,Maybe,sausage,cat,No,early bird,Yes,Selfless by The Strokes +"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,21,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53703,41.8781,-87.6298,No,pepperoni,dog,No,early bird,No,This is the life by Amy Macdonald +"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,19,Statistics,,psychology,53706,48.8566,2.3522,No,sausage,neither,No,night owl,Yes,"The other side of paradise + +Glass animals" +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC002,Yes,20,Data Science,,"Math,Computer science,Statistic",53706,30.2741,120.1551,Yes,sausage,dog,No,early bird,Maybe,Divina Commedia by GD +COMP SCI 319:LEC003,LEC003,Yes,24,Engineering: Biomedical,,,53705,44.8113,-91.4985,No,sausage,dog,No,early bird,Yes,"Summer, Highland Falls - Billy Joel" +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,20,Business: Other,,,53716,49.0835,19.2818,No,pepperoni,cat,No,no preference,Yes,Ides of March by Silverstein +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,18,Other (please provide details below).,information science,Fashion Design,53706,35.0077,135.7471,Maybe,pepperoni,dog,No,night owl,Maybe,Apple Cider by Beabadoobee +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,20,Engineering: Other,Civil Engineering,N/A,53218,35.2271,-80.8431,No,mushroom,dog,No,early bird,Maybe,One of my favorite songs at the moment is Oscar winning tears by Raye. +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,20,Business: Finance,,Risk Managment and Insurance,53703,46.4676,10.3782,No,pineapple,dog,Yes,night owl,Yes,"Title: Stargazing + +Artist: Myles Smith + + " +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,19,Engineering: Biomedical,N/A,N/A,53715,39.7392,-104.9903,No,pineapple,dog,No,night owl,Yes,Why Why Why - Shawn Mendes +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,Yes,19,Engineering: Mechanical,,,53562,35.7242,139.7976,No,mushroom,neither,No,night owl,Maybe,Flashback by Miyavi +"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,19,Science: Other,Pharmacy -toxicology ,,53706,48.1351,11.582,No,pepperoni,dog,No,night owl,Yes,toosii - favorite song +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,19,Other (please provide details below).,Undecided now,,53703,31.299,120.5853,Yes,pineapple,cat,No,night owl,Yes,Love story +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,19,Science: Physics,,,53706,24.8801,102.8329,No,pineapple,neither,Yes,early bird,Yes,Cello Concerto in E Minor by Jacqueline du Pre +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,20,Science: Other,Astrophysics,,53715,36.3932,25.4615,Maybe,pepperoni,dog,Yes,night owl,Maybe,Da Fonk (feat. Joni) - Mochakk +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,19,Engineering: Biomedical,,,53703,39.0968,120.0324,No,pepperoni,dog,No,no preference,No,Blood Bank - Bon Iver +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,21,Engineering: Other,,,53711,25,55,No,pepperoni,dog,No,night owl,Yes,Freebird - Lynyrd Skynyrd +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,18,Engineering: Biomedical,,,53706,43.0731,-89.4012,No,pepperoni,dog,Yes,no preference,No,Love Lost by Mac Miller +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,20,Data Science,,,53703,30.25,120.16,Yes,pineapple,dog,No,night owl,Yes,Regular Friends By David Tao +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,44.9355,-88.1572,No,pepperoni,dog,Yes,night owl,Yes,River - Leon Bridges +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Other,,,53706,45,92,No,pineapple,dog,Yes,night owl,Yes,"Misty mountains by The Wellerman + +or + +I See Fire vinny marchi and bobby bass" +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,18,Engineering: Other,,,53703,41.9028,12.4964,No,sausage,cat,Yes,night owl,Yes,Jupiter from The Planets by Gustav Holst +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,20,Engineering: Industrial,,Computer Science,53706,26.8206,30.8025,Maybe,basil/spinach,dog,Yes,no preference,Maybe,"""In the stars"" : Benson Boone" +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,,Data Science,,Cartography & GIS,53706,59.9138,10.7387,Yes,pepperoni,dog,No,night owl,Yes,"No Woman No Cry (live at the Lyceum, London, 1975), Bob Marley & The Wailers" +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Engineering: Mechanical,,,53706,47.6062,-122.3321,Maybe,pepperoni,cat,No,night owl,Yes,O Valencia! by The Decemberists +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,20,Other (please provide details below).,Economics,,53703,43.07,-89.4,Yes,pepperoni,dog,No,night owl,Yes,Otherside - Red Hot Chilli Peppers +"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,19,Business: Other,,,53706,43.0666,-89.3993,No,pepperoni,neither,Yes,night owl,Yes,"Don't Stop Me Now + +Queen" +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,22,Business: Finance,,,53703,43.7696,11.2558,No,sausage,cat,No,night owl,Yes,Hungersite by Goose +"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,40.7608,111.891,No,pepperoni,dog,Yes,early bird,Maybe,One Thing at a Time Morgan Wallen +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Mechanical,,,53706,44.9537,-93.09,No,sausage,dog,No,night owl,No,Tweaker - Gelo +"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC001,Yes,19,Other (please provide details below).,Physics,Data Science,53706,55.7558,37.6173,Maybe,mushroom,cat,Yes,no preference,Yes,Tweaker by Gelo +"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,19,Other (please provide details below).,我的主要专业是新闻学。,我的第二个专业是数据科学。,53706,30.5728,104.0668,Yes,pineapple,dog,Yes,night owl,Yes,My favorite song is Getaway Car from Taylor Swift. +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,18,Statistics,,Data Science,53706,55.6761,12.5683,Yes,sausage,cat,No,night owl,No,Kyoto - Phoebe Bridgers +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,20,Engineering: Other,,,53715,35.6895,139.6917,No,pepperoni,dog,No,no preference,Yes,Money Trees by Kendrick Lamar +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,18,Data Science,,Econ,53706,16.0544,108.2022,Yes,sausage,dog,Yes,night owl,Yes,Sunroof (Nicky Youre & Dazy) +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Statistics,,,53706,20.6028,-105.2337,No,sausage,dog,No,night owl,Yes,Best Love Song by T-Pain +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,,Computer Science,,,53706,30,120,No,sausage,cat,No,night owl,Yes,Ashes from fireworks(Chenyu Hua) +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC001,No,19,Engineering: Industrial,,,53706,39.9172,-105.7895,Maybe,pepperoni,dog,Yes,night owl,Yes,Silver Lining Mt. Joy +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Mechanical,,,53706,41.9924,-87.6971,No,green pepper,dog,Yes,no preference,Maybe,"New Person, Same Old Mistakes by Tame Impala " +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,21,Computer Science,,,53706,40,120,Yes,pineapple,cat,Yes,no preference,No,Twenty-one pilot: <line> +COMP SCI 319:LEC004,LEC004,Yes,23,Engineering: Industrial,,,53703,34,-119,No,mushroom,dog,No,night owl,Maybe, +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Other (please provide details below).,Economics,Political Science,53703,41.8781,-87.6298,No,sausage,dog,No,no preference,Maybe,Piano Man by Billy Joel +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,,Other (please provide details below).,Economics,,53706,,113.2644,No,mushroom,dog,No,night owl,Yes,Young Cai Xukun +"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,19,Other (please provide details below).,Linguistics,,53706,43.0981,-89.4986,Yes,pepperoni,dog,No,night owl,Yes,Steppa Pig by JPEGMAFIA +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,21,Engineering: Mechanical,,,53706,45.4015,-92.6522,No,pepperoni,dog,No,night owl,Yes,"Dear Maria, count me in by all time low + +only the good die young by billy joel + +aint no rest for the wicked by cage the elephant + + " +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,18,Other (please provide details below).,经济的,数据科学,53706,30.5928,114.3055,Yes,none (just cheese),cat,No,night owl,Maybe,"Had I Not Seen the Sun + +by HOYO-Mix/Chevy" +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,18,Business: Information Systems,,,53706,33.597,130.4081,Maybe,mushroom,dog,Yes,early bird,Maybe,Strategy - TWICE +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,19,Business: Other,Supply Chain Management & Operations and Technology Management,Data Science Certificate,53707,52.3702,4.8952,No,pepperoni,dog,No,no preference,Yes,Rhymes Like Dimes- MF DOOM +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,18,Data Science,,Molecular and cell biology,53706,41.9028,12.4964,Yes,Other,cat,No,night owl,Yes,Fake tales of San francisco by arctic monkeys +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,,,53706,44.4932,11.3275,No,sausage,dog,Yes,night owl,Yes,"Wisconsin, On, Wisconsin. EA Sports College Football Marching Band" +"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC002,Yes,20,Statistics,,,53715,31.2304,121.4737,No,Other,dog,No,night owl,Yes,You'll be back (theme of Alexander Hamilton) +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,19,Science: Biology/Life,,,53703,43038902,-87.9064,No,pepperoni,cat,No,night owl,Yes,dangerous - big data +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Science: Other,,,53703,30.25,120.1667,Maybe,pepperoni,neither,No,early bird,Maybe,Isahini-Lucy +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,20,Statistics,,,53706,45.6378,-89.4113,No,pepperoni,cat,No,night owl,No,Lose yourself-Eminem +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,21,Other (please provide details below).,Accounting,Information Systems,53703,45.4642,9.19,No,basil/spinach,dog,Yes,night owl,Yes,Starting Over- Chris Stapleton +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,19,Engineering: Mechanical,,,53706,44.3113,-93.928,No,Other,dog,No,no preference,Yes,Different 'Round Here by Riley Green Ft. Luke Combs +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,21,Business: Finance,,Risk Management and Insurance,53726,31.542,-82.4687,No,mushroom,dog,Yes,early bird,Yes,"Colder Weather, Zach Brown Band" +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,20,Business: Information Systems,,,53726,41.8781,-87.6298,Maybe,Other,dog,Yes,no preference,Yes,Way I Are by Timbaland +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,20,Business: Actuarial,,Risk Management & Insurance,53715,19.0414,-98.2063,No,none (just cheese),cat,No,night owl,No,Return of the Mack by Mark Morrison +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,,Business: Information Systems,,,53703,41.8967,12.4822,No,pineapple,neither,No,no preference,Yes,"No scrubs, by tlc" +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Other (please provide details below).,Economics ,Psychology,53703,43.0389,-87.9065,No,pepperoni,dog,Yes,night owl,Maybe,alabama pines -Jason isbell +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Other,Currently Engineering Undecided,,53706,45.6495,13.7768,No,sausage,dog,Yes,no preference,Maybe,"The Veldt , deadmau5" +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53706,48.5015,-113.9848,No,sausage,dog,Yes,night owl,Yes,through the wire- kanye west +"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,18,Engineering: Other,I am undecided between different types of engineering. Im trying to decide between chemical and mechanical.,I might get a math certificate,53706,21.5808,-158.1053,No,pepperoni,dog,Yes,early bird,No,One of these nights by the egales +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Biomedical,,,53706,55.6755,12.5539,No,pepperoni,dog,No,no preference,No,OCT 33 by the Black Pumas +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,20,Engineering: Mechanical,,,53703,41.8781,-87.6298,Yes,pepperoni,cat,No,night owl,Maybe,Bad Romance - Lady Gaga +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Industrial,,German,53703,36.1627,-86.7816,No,sausage,dog,No,night owl,Maybe,Good Looking by Suki Waterhouse +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,18,Data Science,,,53706,17.385,78.4867,Yes,sausage,dog,Yes,night owl,Yes,Feather - Sabrina Carpenter +"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC001,No,24,Mathematics/AMEP,,,53704,26.0745,119.2965,No,pepperoni,dog,No,night owl,Yes,"Just the Two of US - Grover Washington, Jr., Bill Withers" +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Mechanical,,,53706,43.4138,-89.7148,No,pepperoni,dog,No,no preference,No,NOW WHAT? by Connor Price +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,20,Other (please provide details below).,Economics,,53572,42.3659,21.1545,No,none (just cheese),cat,Yes,early bird,Maybe,Tahir Meha - Ilir Shaqiri +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,19,Business: Information Systems,,Operations and Technology Management (OTM),53703,33.5458,-117.7817,No,sausage,dog,No,no preference,Yes,"""Say Something"" - Zac Samuel Remix" +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Computer Science,,,53702,51.5074,-0.1278,Yes,Other,dog,No,night owl,No,No One Like You - Scorpions +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Biomedical,,,53706,40.7128,-74.006,No,sausage,dog,No,early bird,No,"Mr. Brightside, The Killers" +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,20,Business: Finance,,,53703,36.0566,-112.1251,Yes,pepperoni,dog,Yes,no preference,Yes,All Falls Down - Kanye West +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Statistics,,,53706,40.7128,-74.006,Yes,pineapple,dog,No,night owl,Yes,One Headlight - The Wallflowers +"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Engineering: Industrial,,,53706,45.7852,-88.0987,Maybe,sausage,dog,No,night owl,No,"The Prodigal, Josiah Queen " +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,18,Engineering: Other,,,53706,40.6299,14.4863,No,sausage,dog,No,night owl,Yes,Everlong by Foofighters +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Mechanical,,,53719,35.6895,139.6917,No,pepperoni,dog,Yes,night owl,Yes,From The Start - Laufey +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,18,Engineering: Mechanical,NA,NA,53706,39.1447,8.3037,No,Other,dog,No,night owl,Maybe,hooked on a feeling +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,NA,NA,53706,45.1821,-93.6522,No,sausage,dog,No,night owl,Maybe,Ghost Town by Kanye West +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,22,Computer Science,,,53715,43.0731,89.4012,No,pepperoni,cat,No,night owl,Yes,The Great Mermaid - Lesserafim +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,19,Engineering: Mechanical,,,53711,31.23,121.47,No,pepperoni,cat,No,night owl,Maybe,When you say nothing at all-Ronan Keating +"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,18,Engineering: Mechanical,,,53706,41.8468,3.1286,No,basil/spinach,dog,Yes,early bird,Yes,MUSSEGU - Figa Flawas +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,19,Science: Physics,,"Mathematics, Astrophysics",53703,43.4256,-88.1321,No,green pepper,dog,No,early bird,Yes,"2112, Rush" +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,18,Engineering: Mechanical,,,53706,35.6764,139.65,No,pepperoni,neither,Yes,night owl,Yes,my favorite song is Lost in Space by Derivakat +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,19,Business: Finance,,Accounting,53703,41.8781,-87.6298,No,sausage,dog,No,night owl,No,"""Saturday Mornings"" by Cordae" +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,18,Other (please provide details below).,Economics,"Data Science, Computer Science",53706,42.4545,-83.502,Yes,sausage,cat,Yes,night owl,No,Upside Down +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Mechanical,,,53706,44.98,-93.26,No,basil/spinach,dog,Yes,night owl,Maybe,Surfin' USA - Beach Boys +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,18,Engineering: Biomedical,,,53706,23.4814,120.4539,Maybe,pepperoni,dog,Yes,night owl,Yes,"Photograph, Ed Sheeran" +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53706,41.9956,-87.7029,Maybe,pineapple,dog,Yes,early bird,Yes,Virgen - Adolescent's Orquesta +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Biomedical,N/A,N/A,53706,35.6895,139.6917,No,mushroom,dog,No,no preference,Yes,Unwritten by Natasha Bedingfield +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,22,Other (please provide details below).,Economics,Political Science,53703,55.6564,12.5983,No,pepperoni,cat,No,early bird,No,Good days by SZA +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,,Data Science,,,53703,40.767,-73.962,Yes,pepperoni,dog,Yes,night owl,Maybe,Saturn by SZA +"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,No,22,Engineering: Industrial,,"Economics, Data Science",53703,-33.8688,151.2093,Yes,mushroom,dog,Yes,night owl,Maybe,"This month, my favorite song has been Burn, Burn, Burn by Zach Bryan. However, I'd say my 3 lifetime favorite songs are: + +* this is me trying, Taylor Swift + +* Somebody That I Used To Know, Gotye + +* For Emma, Bon Iver" +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,20,Computer Science,,,53715,39.9042,116.4074,Maybe,mushroom,neither,No,night owl,Yes,"Chasing Pavements, Adele" +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Data Science,,,537152236,19.3785,-81.4007,Yes,pepperoni,dog,No,night owl,Yes,Coffee Bean - Travis Scott +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,18,Engineering: Mechanical,,,53706,11.5888,37.3881,No,none (just cheese),cat,No,night owl,Yes, +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,19,Engineering: Mechanical,,,53706,38.627,-90.1994,No,none (just cheese),dog,No,night owl,Yes,Young Metro by Future and Metro Boomin +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,20,Engineering: Industrial,,,53703,43.77,11.2577,Maybe,pepperoni,dog,Yes,night owl,Yes,Sheep by Mt.Joy +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,20,Business: Other,Economics ,"data science, Risk Management and insurance ",53703,40.6281,14.485,Yes,sausage,cat,No,no preference,Maybe,new perspective - noah kahn +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,20,Business: Finance,.,.,53706,37.5665,126.978,No,pineapple,dog,No,early bird,Yes,Sunflower - Post Malone +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,20,Engineering: Mechanical,,,53703,45.514,-122.6733,No,pepperoni,dog,Yes,night owl,Maybe,Cigarette Daydreams - Cage the Elephant +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,19,Data Science,,Psychology,53726,52.52,13.405,Yes,pepperoni,dog,No,no preference,Yes,"El Muchacho de los Ojos Tristes, Jeanette" +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,19,Engineering: Mechanical,,,53706,41.4944,-87.8748,No,pepperoni,dog,Yes,night owl,Yes,Brazil- Declan Mckenna +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,19,Data Science,,Information Sciences,53706,40.7128,-74.006,Yes,Other,dog,No,night owl,Yes,One More Love Song - Marc DeMarco +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,19,Computer Science,,,53703,34.0522,-118.2437,Maybe,pepperoni,dog,No,night owl,Maybe,where you are - john summit +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,20,Engineering: Biomedical,N/A,Pre-Med (Not a major),53703,40.7293,-73.9964,No,sausage,cat,No,night owl,Yes,I Lived by OneRepublic +"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Science: Physics,,,53706,47,122,No,pepperoni,neither,Yes,early bird,No,Clocks Coldplay +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,19,Business: Finance,,,53706,41.8318,-88.1098,Maybe,pepperoni,dog,No,no preference,Yes,No Pasa Nada by Fuerza Regida and Clave Especial +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,19,Data Science,,Computer science,53706,43.8064,-87.7706,Yes,pepperoni,cat,Yes,night owl,Yes,holy land - wave to earth +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,18,Engineering: Mechanical,,,53706,52.52,13.405,No,macaroni/pasta,dog,Yes,night owl,Yes,"1812 Overture + + by Pyotr Ilyich Tchaikovsky" +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,19,Data Science,,,53703,34.5218,69.1807,Yes,green pepper,cat,No,night owl,Maybe,I don't listen to music! +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC003,Yes,21,Business: Finance,Economics,computer science,53703,22,66,Yes,mushroom,cat,No,night owl,Yes,Bahamus +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Engineering: Mechanical,,,53703,42.3314,-83.0458,No,sausage,dog,Yes,night owl,Yes,Higher by Creed +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,19,Science: Other,,Environmental Studies,53703,45.0124,-92.9921,No,basil/spinach,dog,Yes,early bird,Yes,Sunlight by Hozier +"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Industrial,,,53706,32,117,No,sausage,dog,No,early bird,Maybe,knockin on heavens door bob Dylan +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,19,Engineering: Mechanical,,,53706,40.7131,-74.0072,No,none (just cheese),dog,Yes,no preference,Yes,Brazil by Declan McKenna +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,19,Engineering: Other,Engineering Mechanics,"Might do Econ, Physics, or DS",53706,35.6895,139.6917,Maybe,basil/spinach,dog,No,night owl,Yes,Outside today - NBA Youngboy +COMP SCI 319:LEC002,LEC002,Yes,32,Science: Physics,,,53714,13.45,-16.57,Maybe,pineapple,neither,Yes,early bird,No,"Bob Marley + +No Woman, No Cry" +"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,19,Engineering: Biomedical,,,53706,50.1185,-122.9604,No,pepperoni,dog,Yes,night owl,Maybe,Free Now by Gracie Abrams +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,21,Engineering: Mechanical,,,53590,34.0522,-118.2437,No,pepperoni,dog,No,night owl,Yes,popular by the weeknd +"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,22,Statistics,,Data Science,42,-76,106.53,Yes,mushroom,neither,Yes,no preference,No,"Here There And Everywhere, Paul McCartney" +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,18,Data Science,,,53706,46.024,-123.92,Yes,basil/spinach,dog,No,night owl,Yes,Musta been a ghost by Proxima Prada +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,18,Engineering: Mechanical,,,53706,45.83,-89.27,No,sausage,dog,No,night owl,Yes,"Run This Town - JAY-Z, Rihanna, Kanye West" +COMP SCI 319:LEC004,LEC004,Yes,26,Business: Information Systems,,,53705,23.5,121,Maybe,mushroom,dog,No,night owl,Maybe,Someone You Loved - Lewis Capaldi +"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,19,Science: Other,,,53715,33.4484,-112.074,No,sausage,cat,No,night owl,Yes,Follow You by Imagine Dragons +"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Mechanical,,I do not have a secondary major.,53703,49.2269,17.669,No,pepperoni,dog,No,early bird,No,One of my favorite songs is Circadian Rhythm by Drake. +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,18,Mathematics/AMEP,,I'm gonna learning data science in the future.,53706,30.5728,104.0668,Yes,pepperoni,dog,Yes,night owl,Yes,"Take me to Church, Hozier" +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,19,Engineering: Mechanical,,,57306,40.7128,-74.006,No,pepperoni,dog,Yes,night owl,Maybe,Mr. Jones by Counting Crows +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,20,Business: Actuarial,,,53703,43.1566,-77.6088,Maybe,sausage,cat,Yes,night owl,Maybe,Obsession - Joywave +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Mechanical,N/A,N/A,53706,41.8781,-87.6298,No,macaroni/pasta,cat,No,no preference,Yes,Maine by Noah Kahan +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,19,Engineering: Industrial,,,53706,41.8781,-87.6298,No,pepperoni,cat,No,no preference,Yes,Something Just Like This - Chainsmokers +"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,20,Data Science,,Economics,53703,20,-156,Yes,pepperoni,dog,Yes,no preference,No,Tweaker by Gelo +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,19,Engineering: Biomedical,,,53706,44.0668,-92.7538,No,pepperoni,dog,Yes,night owl,Maybe,Borderline - Tame Impala +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,19,Engineering: Other,,,53706,50.0755,14.4378,Maybe,none (just cheese),dog,No,no preference,Yes,Smoke a little smoke - Eric Church +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Biomedical,,,53715,43.732,7.4196,No,pepperoni,dog,No,night owl,No,"Cello Suite No. 1 in G Major; Johann Sebastian Bach, Yo-Yo Ma" +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,20,Science: Biology/Life,,,53715,43.4799,-110.7624,Yes,Other,dog,No,night owl,No,Paul Revere by Noah Kahan +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,18,Engineering: Biomedical,,,53706,40.7128,-74.006,Maybe,pepperoni,dog,Yes,early bird,Maybe,Unwritten by Natasha Bedingfield +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC001,No,21,Engineering: Industrial,,,53715,45.8157,-94.6374,No,pepperoni,dog,No,night owl,Yes,"Unwritten, by Natasha Bedingfield" +"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,19,Business: Finance,,Economics,53726,43.07,-89.39,No,Other,neither,Yes,no preference,No,Down Under -Men At Work +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,19,Business: Finance,Data Science,,53706,87.6298,41.8781,Yes,pepperoni,dog,Yes,night owl,Maybe,Back to Black by Amy Winehouse +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,18,Data Science,,,53706,40.374,-105.509,Yes,pepperoni,dog,No,night owl,Maybe,eenie meenie - Sean Kingston and Justice Bieber +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,18,Engineering: Biomedical,,,53706,47.8095,13.055,No,sausage,cat,Yes,night owl,Yes,"On Wisconsin! - Finale + +University of Wisconsin Marching Band" +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,19,Data Science,,,53715,25.2854,51.531,Yes,mushroom,cat,Yes,early bird,Yes,"Borderline by Tame Impala + + " +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,19,Data Science,,,53706,45.0697,92.9516,Maybe,pineapple,dog,No,night owl,Yes,Strange to hear - By Sports +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,18,Business: Information Systems,,Business: Operations and Technology Management,53716,43.0731,-89.4012,No,mushroom,dog,No,night owl,Yes,You Give Love a Bad Name by Bon Jovi +"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,19,Business: Other,,,53703,37.7749,-122.4194,Yes,basil/spinach,dog,Yes,night owl,Yes,What I got - Sublime +"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Other,,,53706,43.0779,-89.4134,No,pineapple,dog,No,no preference,No,Next to You by Flavors +"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,19,Business: Other,Economics.,Data science,53706,28.6107,-244.1199,Maybe,Other,dog,No,night owl,Yes,Sometimes-Goth Babe +COMP SCI 319:LEC001,LEC001,No,22,Engineering: Other,ECE,,53715,31.2304,121.4737,Maybe,pineapple,cat,No,no preference,Yes,"Never Gonna Give You Up, by Rick Astley" +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,19,Data Science,Nothing,Economics ,53706,35.689,139691,Yes,green pepper,neither,No,night owl,Yes,Sun flower by Post Malone +"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,20,Business: Information Systems,,,53706,3.139,101.6869,Maybe,Other,dog,Yes,no preference,Maybe,Livin' on a Prayer by Bon Jovi +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,19,Engineering: Mechanical,,,53706,34.4208,-119.6982,No,pepperoni,dog,Yes,no preference,No,甜蜜蜜 鄧麗君 +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,20,Other (please provide details below).,Environmental Science,n/a,53703,39.9526,-75.1652,No,pepperoni,dog,No,no preference,Maybe,Anything from kendrick lamar +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,19,Other (please provide details below).,Geography,,53726,47.6032,-122.3303,Maybe,Other,dog,No,night owl,No,Beef Stew by Nicki Minaj +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,20,Engineering: Other,,,53706,31.298,120.585,No,none (just cheese),cat,No,no preference,Maybe,Subhuman by Garbage +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,21,Statistics,,,53703,43.0389,-87.9065,No,pepperoni,dog,Yes,night owl,Yes,Dirty Water by Foo Fighters +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,18,Engineering: Biomedical,N/A,N/A,53706,43.7696,11.2558,No,pepperoni,dog,No,night owl,Yes,Stick Season by Noah Kahan +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,20,Engineering: Mechanical,,,53715,49.4435,1.098,No,sausage,dog,Yes,night owl,Maybe,Sleep on the Floor - The Lumineers +"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,18,Science: Other,Biochemistry,,53706,46.595,7.9075,No,pineapple,dog,No,night owl,Maybe,Flower Shops by ERNEST and Morgan Wallen +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,18,Business: Information Systems,,,53703,41.8781,-87.6298,Maybe,pepperoni,dog,Yes,no preference,Yes,All falls Down- Kanye West +"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,20,Other (please provide details below).,Journalism,,53706,-22.9068,-43.1729,No,pepperoni,dog,Yes,no preference,Maybe,"Cool Blue by The Japanese House + +or + +My Love by Until the Ribbon Breaks" +"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,19,Engineering: Other,,,53706,48.1118,-1.6803,Maybe,none (just cheese),dog,No,night owl,Yes,A Troubled Mind-Noah Kahan +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Industrial,,Naval Science,53703,-18.1248,178.4501,No,sausage,dog,Yes,early bird,No,"Angela, The Lumineers" +"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Mechanical,,,57303,43.0731,-89.4012,No,pepperoni,dog,No,night owl,Yes,YMCA +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,18,Engineering: Mechanical,,,53706,32,34.8,No,basil/spinach,dog,Yes,night owl,Maybe,Lovestick by asap rocky +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,19,Business: Finance,I am also a Data Science major,,53706,25.1,55.2,Yes,mushroom,dog,No,night owl,Yes,Fein (Feat. playboi carti) by Travis Scott +COMP SCI 319:LEC001,LEC001,Yes,,Business: Finance,,,53715,30.5,104,No,pineapple,dog,Yes,night owl,Yes,"I love you baby + +Paul Anka" +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,20,Science: Other,,,53575,43.07,-89.4,Maybe,Other,cat,Yes,night owl,Yes,Sexy Villain - Remi Wolf +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,21,Statistics,,,53703,40.7128,-74.006,No,mushroom,dog,No,early bird,No,my heart will go on +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,20,Business: Information Systems,,Business: Operations & Technology Management ,53703,48.8566,2.3522,Maybe,sausage,dog,Yes,early bird,Yes,30 for 30 by SZA +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Biomedical," + + ",Neurobiology,53706,53.5745,10.0778,No,basil/spinach,cat,No,night owl,Yes,"Maine by Noah kahan + + " +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,19,Business: Actuarial,,RMI,53715,43.0389,-87.9065,No,pepperoni,cat,Yes,night owl,No,Congratulations by Mac Miller +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC002,No,19,Business: Information Systems,,I am also a Marketing major with a certificate in Digital Studies!,53706,39.1434,-77.2014,Maybe,basil/spinach,dog,Yes,night owl,Maybe,"Gracie Abrams: ""Risk""" +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,18,Business: Other,,Data Science,53706,42.3601,-71.0589,Yes,mushroom,dog,No,no preference,Yes,Luther by Kendrick Lamar and SZA +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,19,Other (please provide details below).,Economics,,53703,40.7128,74.006,No,mushroom,dog,Yes,early bird,Yes,Pursuit of Happiness- Kid Cudi +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,18,Engineering: Biomedical,,,53706,39.0742,21.8243,No,sausage,cat,No,early bird,Yes,Weight of Love - The Black Keys +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Biomedical,,,53706,45,-93,No,sausage,dog,No,night owl,No,Die with a Smile - Bruno Mars +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Biomedical,,,53706,19.076,72.8777,No,pineapple,dog,Yes,early bird,Yes,Luther by Kendrick Lamar and SZA. +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Mechanical,,,53706,-45.0327,168.658,No,sausage,dog,Yes,night owl,Yes,Night Changes - One Direction +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,18,Science: Physics,,,53706,40.7,70,No,none (just cheese),neither,No,night owl,Yes,My Eyes by Travis Scott +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,20,Computer Science,,,53703,3.139,101.6869,No,macaroni/pasta,cat,No,early bird,No,GOT7 PYTHON +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Industrial,,,53706,41.8781,-87.6298,No,mushroom,dog,No,night owl,Yes,Coyote Joni Mitchell +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,20,Science: Biology/Life,,,53706,37.8715,112.5512,No,sausage,cat,Yes,early bird,Maybe,Soledad y el Mar by Natalia Lafourcade +"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,20,Computer Science,,,53715,37.5665,126.978,No,sausage,neither,Yes,night owl,No,"Echo, The Marias" +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,20,Engineering: Mechanical,,,53703,43.7696,11.2558,No,mushroom,neither,No,no preference,No,"When it rains it pours + +Luke combs" +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53715,45.4408,12.3155,No,sausage,dog,No,night owl,Yes,Put Me Thru by Anderson .Paak +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,17,Computer Science,,,53706,35.6528,139.8395,No,pepperoni,cat,Yes,early bird,Maybe,"40oz, polyphia" +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Mechanical,,,53706,42.3009,-71.0684,No,sausage,dog,Yes,night owl,No,Breakdown by Jack Johnson +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Biomedical,,,53706,42.3601,-71.0589,No,pepperoni,dog,No,night owl,Yes,Sweet Child O' Mine by Guns and Roses +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,18,Science: Physics,,Mathematics,53706,37.9838,23.7275,No,none (just cheese),dog,No,no preference,Yes,Bohemian Rhapsody-Queen +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Biomedical,Above,None,53706,-29.94,-50.99,No,none (just cheese),dog,No,night owl,No,That's So True by Gracie Abrams +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,19,Computer Science,,data science,53703,43.0731,-89.4012,Yes,sausage,neither,No,night owl,Maybe,doja +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,21,Other (please provide details below).,Geography and Cartography/Geographic Information Systems,"Data Science Certificate, Environmental Studies Certificate",53715,36.1699,-115.1398,No,sausage,dog,Yes,night owl,Yes,"Rain, The Beatles" +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,18,Engineering: Biomedical,,,53706,41.16,-8.63,Maybe,sausage,cat,No,night owl,Yes,This Must Be the Place - Talking Heads +"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,19,Science: Physics,,Astronomy,53726,36.9741,122.0308,No,pepperoni,dog,No,night owl,Yes,Californication Red Hot Chili Peppers +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC003,No,20,Computer Science,,"Data Science, Economics, Accounting",53706,-1.2921,36.8219,Yes,pepperoni,cat,No,no preference,Yes,"Verdansk, Dave" +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Other,,,53706,41.1184,20.8,No,mushroom,dog,No,early bird,Yes,November Air - Zach Bryan +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,18,Engineering: Biomedical,n/a,n/a,53706,53.3498,-6.2603,No,green pepper,dog,Yes,night owl,Maybe,Moon River by Frank Ocean +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Biomedical,,,53706,22.0964,-159.5261,No,pineapple,dog,Yes,night owl,No,Maine by Noah Kahan +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,19,Computer Science,,Data Science,53711,43.0731,-89.4012,No,none (just cheese),cat,No,night owl,Yes,I'm A Believer - The Monkees +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,19,Engineering: Mechanical,,,53706,44,-88,No,sausage,cat,Yes,night owl,Yes,Triggers - Royal Blood +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,,Engineering: Other,,,53703,36.0671,120.3826,Maybe,mushroom,dog,No,night owl,Yes,《Glad You Came》by Boyce Avenue +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,18,Mathematics/AMEP,,,53715,37.5407,-77.436,No,mushroom,cat,Yes,no preference,Yes,Posthumous forgiveness - Tame Impala +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,19,Engineering: Mechanical,,,53706,21.28,-157.83,No,sausage,cat,Yes,early bird,No,Yellow by Coldplay +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,20,Engineering: Mechanical,,,53715,43.0739,-89.3852,No,macaroni/pasta,cat,No,night owl,Yes,Africa by Toto +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,24,Statistics,,,53713,30.4515,-91.1871,Yes,mushroom,dog,No,no preference,Yes,Liberation - Outkast ft. Cee-Lo Green +COMP SCI 319:LEC002,LEC002,No,22,Engineering: Other,,,53703,36.1699,-115.1398,No,pineapple,dog,No,night owl,Yes,dancinwithsomebawdy - ericdoa +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Biomedical,,,53706,45.0033,-93.484,Maybe,sausage,cat,No,night owl,No,Second Nature by Clairo +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,22,Computer Science,,"German, Data Science",53703,45.4404,12.316,No,sausage,dog,No,night owl,Yes,Modern Day Cowboy (Tesla) +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,18,Engineering: Industrial,,,53706,25.0772,55.3093,No,pepperoni,dog,No,night owl,Maybe,Drake - Gods Plan +"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Biomedical,,,53706,47.0543,8.3094,Maybe,none (just cheese),cat,Yes,early bird,Maybe,Shes always a woman (billy joel) +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,18,Engineering: Mechanical,,,53706,43.6775,-70.299,No,pepperoni,dog,Yes,early bird,Yes,The Cave by NEEDTOBREATHE +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Industrial,,,57303,34.0549,118.2426,No,sausage,cat,No,night owl,Yes,Feather - Sabrina Carpenter +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,20,Engineering: Other,Material Science and Engineering,,53715,35.8617,104.1954,No,sausage,cat,Yes,night owl,Maybe,"patrick Brasca + +BRB + +Ryan.B" +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,23,Science: Biology/Life,Biochemistry,N/A,53703,33,120,Maybe,pepperoni,cat,No,night owl,Yes,"Piano Concerto No.23 in A major, K.488 - 1. Allegro + +Mozart" +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Industrial,Industrial Engineering,,53706,,,Maybe,pineapple,dog,No,early bird,No,Ride the Lightning by Warren Zeiders +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,17,Engineering: Mechanical,,,53703,33.1042,-96.6717,No,none (just cheese),dog,Yes,night owl,Yes,Stick Season by Noah Kahan +COMP SCI 319:LEC004,LEC004,Yes,27,Engineering: Other,Environmental Engineering,,53719,30.98,121.5,Maybe,none (just cheese),dog,No,night owl,No,"Salt + +Ava Max" +"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,19,Data Science,,,53706,44,91,Yes,Other,cat,Yes,early bird,No,"Oak Island, Zach Bryan " +"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,18,Business: Finance,,,53706,40.0169,-105.2796,Maybe,pineapple,dog,Yes,early bird,No,Back in Black by ACDC +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Other,Material Science and Engineering,,53706,46.5378,12.1359,No,basil/spinach,dog,Yes,early bird,No,Sweet Dreams by Eurythmics +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,18,Computer Science,,"Data Science, Graphic Design (certificate)",53715,42.6403,18.1083,Yes,basil/spinach,cat,No,night owl,Maybe,South Side - Moby +"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,18,Engineering: Biomedical,,Accounting,53715,41.9028,12.4964,No,pepperoni,dog,Yes,no preference,No,"She Had ME At Heads Carolina, Cole Swindell" +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Other (please provide details below).,Currently undecided but intend to have a business major and double major in something along these lines. Wanted to try out this class to see if I would enjoy it ! ,None.,53706,35.5405,-79.3692,Maybe,sausage,dog,No,night owl,Maybe,I have too many liked songs to choose just one! If I were to choose a genre of music thought it would have to be R&B :) +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Industrial,N/A.,N/A.,53706,41.9408,-87.7532,No,Other,cat,No,night owl,No,Sunday morning Maroon 5 +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Engineering: Mechanical,,,53175,32.7765,-79.931,No,sausage,dog,No,night owl,Maybe,God Gave Me Style - 50 Cent +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,19,Engineering: Biomedical,,,53726,47.0455,8.308,No,pepperoni,dog,No,early bird,Maybe,Black and White by Niall Horan +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Industrial,,,60010,48.8566,2.3522,Maybe,green pepper,cat,Yes,night owl,Yes,Learning To Fly - Tom Petty and the Heartbreakers +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,18,Data Science,,,53706,121.4365,31.1886,Maybe,pineapple,cat,Yes,night owl,Maybe,"Song Title: I Like Me Better + +Artist: Lauv " +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,19,Data Science,na,Economics,53715,1.3521,103.8198,Yes,pepperoni,dog,No,early bird,Yes,Toxic Till The End - Rose +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,19,Engineering: Biomedical,,,53706,45.5017,-73.5673,No,pepperoni,dog,No,night owl,Yes,She's always a woman - Billy Joel +"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,22,Other (please provide details below).,Economics,,53703,31.2304,121.4737,No,pineapple,dog,No,early bird,Yes,Kammy - Fred again.. +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Biomedical,,,53706,-3.6225,-79.2388,No,macaroni/pasta,cat,No,night owl,Yes,"DtMF, by Bad Bunny" +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,18,Other (please provide details below).,Molecular and Cell Biology,Statistics,53706,35.0844,-106.6504,No,Other,dog,Yes,early bird,No,Run by One Republic +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,Maybe,Other,cat,No,night owl,Maybe,Lovers Rock - TV Girl +"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,19,Engineering: Other,Engineering Mechanics: Aerospace,Applied Mathematics,53715,41.3851,2.1734,No,pepperoni,cat,Yes,early bird,Yes,Set Sail by The Movement +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Mechanical,,,53706,43.0747,89.3842,No,pineapple,dog,Yes,night owl,Yes,"The Man who sold the world, David Bowie" +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,19,Other (please provide details below).,Economics,,53703,35.994,-78.8986,Yes,none (just cheese),dog,Yes,night owl,Yes,Any song by Drake +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,20,Science: Other,Biochemistry,Chinese,53703,41.8781,87.6298,No,sausage,cat,No,night owl,Yes,Empire of the Sun-We the People +"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,21,Business: Information Systems,,,53703,43.0731,-89.4012,Maybe,sausage,cat,Yes,night owl,Yes,"Scott Mescudi Vs. The World, By Kid Cudi" +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,19,Other (please provide details below).,Music ,Data science,53706,41.8781,-87.6298,Yes,macaroni/pasta,cat,No,night owl,Yes,Oompa Loompa song from Wonka +"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Mechanical,,,53706,37.5641,126.9756,No,pepperoni,dog,No,night owl,Yes,toxic till the end by ROSE +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Business: Other,,certificate in data science,53706,43.7696,11.2558,No,mushroom,dog,No,night owl,No,"Vienna, Billy Joel" +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,18,Engineering: Biomedical,,,53715,45.1034,-93.7295,No,pepperoni,dog,No,early bird,Maybe,"See You Again, Tyler the Creator" +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,19,Business: Actuarial,,Business: Risk Management and Insurance,53703,43.0752,-89.3964,No,pepperoni,cat,No,no preference,Yes,Prison Song - System of a Down +"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,20,Engineering: Biomedical,,,53703,52.37,4.9,No,sausage,dog,No,night owl,Yes,Fast Forward - Floating Points +"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,19,Engineering: Biomedical,,,53706,41,12,No,pepperoni,dog,Yes,night owl,No,Locked out of Heaven - Bruno Mars +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,18,Engineering: Mechanical,,,53715,43.8464,-91.2398,No,pepperoni,dog,Yes,night owl,Maybe,Missed Call by Treaty Oak Revival +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Biomedical,,,53706,55.9533,-3.1883,No,pepperoni,dog,No,night owl,Yes,Work Song - Hozier +"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,20,Computer Science,,,53703,25.033,121.5654,No,tater tots,cat,No,night owl,Yes,Dive - Olivia Dean +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,21,Other (please provide details below).,My primary major is Classical Humanities. ,,53703,36.5983,-121.8964,No,green pepper,cat,No,night owl,Yes,"My Father's House, Eidola" +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Science: Physics,,Astronomy,53706,43.0731,-89.4012,Maybe,sausage,dog,No,night owl,Yes,Judaiyaan- Darshan Raval +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Industrial,,,53706,43.0495,88.0076,No,pepperoni,dog,No,night owl,Maybe,Holy Ghost Asap Rocky +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,19,Engineering: Mechanical,,,53706,43.0728,-89.3835,No,pepperoni,dog,No,night owl,Yes,Something in the Orange: Zach Bryan +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,19,Engineering: Other,Chemical Engineering ,,53706,43.0739,-89.3852,No,macaroni/pasta,dog,No,night owl,Yes,Dancing Queen by Abba +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,19,Business: Actuarial,,,53706,52.3732,4.8907,No,pepperoni,dog,Yes,night owl,No,Popular Weeknd +"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,23,Other (please provide details below).,Consumer Behavior and Marketplace Studies,Economics,53703,42.3555,71.0565,No,Other,dog,Yes,early bird,No,Jackie and Wilson by Hoizer +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,18,Science: Biology/Life,,,53706,43.0731,43.0731,Maybe,mushroom,dog,Yes,early bird,Maybe,Live Well - Palace +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,18,Business: Finance,,,53706,-34.9276,-57.9578,Yes,mushroom,cat,Yes,early bird,Yes,Cafe con ron Bad Bunny +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,19,Engineering: Industrial,,,53715,52.6638,8.6267,No,pepperoni,cat,No,early bird,Maybe,Do for love - Tupac +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,40.6958,-73.8666,No,pineapple,cat,Yes,no preference,Yes,Hell on the heart Eric Church +"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,19,Other (please provide details below).,Undecided,,53715,40.7128,-74.006,Maybe,pepperoni,dog,Yes,night owl,Yes,"New Drop, Don Toliver" +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,18,Engineering: Mechanical,,,53706,41.88,87.62,No,sausage,dog,No,night owl,Maybe,Buy dirt by Jordan Davis +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,21,Other (please provide details below).,economics,n/a,53073,415204.8,873954,No,green pepper,dog,Yes,night owl,Yes,"you're not the only one - the sundays + +blue Sunday - the doors + +dazed and confused - led zeppelin" +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,19,Data Science,,Economics,53706,6.5244,3.3792,Yes,Other,dog,No,early bird,Maybe,Jealousy - Khalil Harrison & Tyler ICU +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,20,Data Science,,,53703,41.8781,-87.6298,Yes,none (just cheese),dog,Yes,early bird,No,charlie brown - coldplay +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,42.3601,-71.0589,No,mushroom,cat,No,no preference,No,"My My, Hey Hey - Neil Young" +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Mechanical,,,53706,41.9028,12.4964,No,pepperoni,cat,No,no preference,Yes,Replay by Iyaz +"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,No,19,Business: Finance,,,53066,25.2048,55.2708,No,pepperoni,neither,No,night owl,Yes,Duvet Boa +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,18,Statistics,,,53706,43.0731,-89.4012,Maybe,none (just cheese),dog,No,early bird,Yes,RIOT! - Earl Sweatshirt +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,19,Other (please provide details below).,Economics with Math Emphasis,Data Science,53715,41.8781,-87.6298,Yes,sausage,dog,No,night owl,Yes,Everybody Wants To Rule The World by Tears For Fears +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,20,Engineering: Industrial,,,53703,40.7128,-74.006,No,pepperoni,dog,No,night owl,Yes,Stairway to Heaven by Led Zepplin +COMP SCI 319:LEC004,LEC004,No,27,Other (please provide details below).,Information,,53715,48.8566,2.3522,No,Other,cat,No,night owl,Yes,Instant Crush (feat. Julian Casablancas) - Daft Punk +"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,18,Data Science,Planning on to be Data Science.,Global Health or communications possibly.,53715,36.1975,-79.7935,Yes,basil/spinach,neither,Yes,no preference,Maybe,"Give Me Everything by Pitbull + +Me Like Yuh Jay Park " +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,19,Business: Actuarial,,Risk Management and Insurance,53715,41.3851,2.1734,Maybe,sausage,dog,No,night owl,Yes,Like a Boy by Ciara +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,20,Statistics,,,53703,23.1291,113.2644,Maybe,none (just cheese),dog,Yes,night owl,Maybe,Flashing light by kanye west +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,19,Science: Biology/Life,,,53715,53715,-106.3468,Maybe,pepperoni,cat,No,night owl,Yes,When I was your man - Bruno Mars +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Data Science,,,53706,43.1049,-89.3512,Yes,tater tots,cat,Yes,night owl,Yes,A Love Supreme Pt I - John Coltrane +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,20,Statistics,,,53711,34.6887,-82.8349,No,sausage,dog,Yes,night owl,Yes,Go Your Own Way - Fleetwood Mac +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,18,Data Science,,,53715,30,114,Maybe,mushroom,cat,No,night owl,Yes,Standing Before Mt. Fuji by Eason Chan +"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Industrial,,,53703,43.4796,-110.7624,No,sausage,dog,No,night owl,No,Miss You - The Rolling Stones +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,20,Engineering: Mechanical,,,53702,45.4408,12.3155,No,pepperoni,dog,No,night owl,Maybe,"Escape, by RupertHolmes" +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,19,Engineering: Other,,,53705,43.08,-89.383,No,basil/spinach,cat,No,no preference,No,"I'm too embarrassed to open Youtube in the middle of class- also, I'm in Louis's section. I'm so sorry." +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,22,Computer Science,,DS and Stat,53715,37.5326,127.0246,Maybe,pepperoni,dog,No,night owl,No,Marigold - Aimyon +"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Other,N/A,N/A,53706,43.1686,-89.2784,No,none (just cheese),cat,No,early bird,Yes,California Dreaming' - The Mamas and The Papas +"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,,Other (please provide details below).,Economics,,53703,51.5074,-0.1278,No,none (just cheese),dog,No,night owl,Yes,The only exception by Paramore +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Biomedical,,,53715,32.7157,117.1611,No,pineapple,dog,No,night owl,Yes,Jingle BOOM! - A.J. & Big Justice +"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Biomedical,,,53706,52.3062,10.4835,No,basil/spinach,dog,No,night owl,Yes,Black Magic Woman by Santana +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,,Engineering: Biomedical,,,53706,1.3521,103.8198,Yes,pepperoni,dog,No,night owl,Yes,Come Together by The Beatles +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,No,sausage,dog,Yes,night owl,Yes,Houston Old Head by A$AP Rocky +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,19,Computer Science,computer science ,,53703,35.6764,139.65,Yes,basil/spinach,neither,No,night owl,Yes,"green room ken carson + +summer sixteen osamason + +congrats osamason + +pose for the pic che + +swag overlord ken carson + +intro ken carson + + " +"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,19,Science: Biology/Life,,,53706,30.2741,120.1551,Yes,sausage,cat,No,night owl,Yes,no favorite songs +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,18,Computer Science,n/a,Physics?,53706,34.8927,127.9688,Maybe,mushroom,neither,Yes,no preference,Maybe,"Tender Surrender, Steve Vai" +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC004,No,21,Data Science,,,53711,37.5665,126.978,Yes,pineapple,dog,No,night owl,Yes,pink + white - frank ocean +"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,20,Engineering: Industrial,,,53715,34,-118,No,sausage,dog,No,night owl,Yes,Payphone - Maroon 5 +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,20,Engineering: Mechanical,,,53711,33.63,-111.85,No,pepperoni,dog,Yes,night owl,Yes,"While My Guitar Gently Weeps - Prince, Tom Petty, Jeff Lynne" +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Statistics,,,53706,45.9213,89.2035,Maybe,tater tots,dog,No,no preference,Maybe,Agnes by Glass Animals +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Other (please provide details below).,"I am currently a pre-business student choosing between the fields of finance, real estate, data science, and economics.",,53706,45.8711,89.7093,Maybe,sausage,dog,Yes,night owl,Yes,Banana Pancakes - Jack Johnson +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,20,Science: Other,Biochemistry,,53703,43.4799,110.7624,No,sausage,dog,No,night owl,Yes,Wish you were here - Pink Floyd +COMP SCI 319:LEC004,LEC004,Yes,24,Engineering: Other,ECE,N/A,53711,39.9042,116.4074,No,mushroom,dog,No,night owl,Yes,"song:爱我还是他 + +singer:陶喆" +COMP SCI 319:LEC004,LEC004,Yes,26,Other (please provide details below).,Electrical and computer Engineering,,53711,38.9248,121.6279,Maybe,pepperoni,dog,No,night owl,No,EMINEM +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Mechanical,,,53706,41.3874,2.1686,Maybe,mushroom,dog,Yes,night owl,Yes,Many Men (Wish Death) by 50 Cent +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Biomedical,,,53706,48.8566,2.3522,No,pepperoni,cat,Yes,no preference,Maybe,"Whitney Houston: I Wanna Dance with Somebody +-------------------------------------------- + +Bob Marley and The Wailers: Could You Be Loved" +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,18,Engineering: Biomedical,N/A,N/A,53706,41.3851,2.1734,No,pepperoni,dog,No,night owl,Maybe,Rolling Stone - Brent Faiyaz +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,18,Engineering: Mechanical,,,53706,37.7749,-122.419,No,pineapple,dog,Yes,night owl,Yes,Roll the Dice by Arden Jones +COMP SCI 319:LEC002,LEC002,Yes,24,Other (please provide details below).,International Public Affairs,N/A,53715,41.795,140.74,No,pepperoni,cat,No,night owl,Yes,Astronaut - Simple Plan +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,19,Science: Other,,Data Science,53703,35.6895,139.6917,Yes,sausage,dog,Yes,no preference,Maybe,Cant Feel My Face - The Weeknd +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,18,Statistics,,Political Science,53706,42.2499,-71.0409,No,basil/spinach,dog,Yes,no preference,Yes,Waiting Room by Phoebe Bridgers +"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,21,Science: Biology/Life,,,53715,48.8575,2.3514,No,mushroom,dog,No,night owl,Yes,Take On Me by A-ha +"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,18,Engineering: Biomedical,,,53706,44.932,-93.2853,No,pepperoni,dog,Yes,night owl,Yes,Operator (That's Not the Way It Feels) by Jim Croce +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,19,Engineering: Mechanical,,,53706,41.8789,-87.6355,No,pepperoni,cat,Yes,no preference,Maybe,someday by the strokes +"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,18,Engineering: Biomedical,,,53706,43.7696,11.2558,Maybe,basil/spinach,dog,No,night owl,Maybe,Boy - Lee Brice +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,19,Engineering: Biomedical,,,53715,35.6895,139.6917,No,mushroom,dog,No,night owl,Maybe,Button by Lyn Lapid +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,18,Engineering: Mechanical,,,53706,24.1477,120.6736,No,Other,dog,No,night owl,Yes,Remember the Time - Michael Jackson +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,20,Science: Biology/Life,,Life Science Communication,53706,43.0844,-89.3812,No,Other,dog,Yes,no preference,Yes,"Reach Out, Four Tops" +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,19,Science: Physics,,Astronomy-Physics,53706,44.2165,-114.93,Maybe,pepperoni,dog,No,early bird,Yes,"Bad Kids to the Back, Snarky Puppy" +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,18,Other (please provide details below).,Undecided planning on Biomedical Engineering,,53706,37.3925,-5.9941,No,none (just cheese),cat,No,night owl,No,Much too Much - Rex Orange County +"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,18,Science: Biology/Life,,,53706,39.9042,116.4074,No,sausage,cat,No,night owl,Maybe,"A Heart Like Hers, Mac DeMarco" +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Biomedical,,,53706,25.0338,121.527,No,green pepper,dog,Yes,early bird,Maybe,Alaska - Maggie Rogers +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,18,Engineering: Mechanical,,,53706,43.8307,-91.2395,No,macaroni/pasta,dog,Yes,night owl,Maybe,"New York, Lucki" +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,No,22,Engineering: Other,,,53703,12.3715,-1.5197,No,sausage,neither,No,no preference,Yes,Flowers by Samantha Ebert +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,20,Science: Biology/Life,,Spanish,53715,39.4822,-106.0435,No,pepperoni,dog,No,no preference,No,"Title ""Rockin' in the Free World"" + +Artist: Neil Young" +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,19,Science: Biology/Life,,,53715,43.05,-89.45,No,pepperoni,dog,No,early bird,Maybe,Pictures of You by The Cure +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,,Engineering: Mechanical,,,54944,44,-89,No,sausage,dog,No,night owl,Yes,Apple Pie by Travis Scott +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,20,Data Science,,Maybe stats,53703,43.0731,-89.4012,Yes,sausage,dog,No,night owl,Maybe,Jay Chou +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,N/A,N/A,53706,40.7128,-74.006,No,basil/spinach,dog,No,night owl,Maybe,"Two Princes - Spin Doctors + + " +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,20,Engineering: Biomedical,,,53715,41.8781,-87.6298,No,mushroom,dog,No,early bird,Maybe,Maria by Justin Bieber +"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,20,Other (please provide details below).,Economics ,Statistics ,53703,37.5,127.02,No,pepperoni,dog,No,night owl,Maybe,Rewrite the Stars (Zac Efron and Zendaya) +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,19,Other (please provide details below).,Political Science,Business: Finance,53703,40.7128,-74.006,Maybe,none (just cheese),dog,No,early bird,Yes,America by Simon and Garfunkel +"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,19,Data Science,,"Legal Studies, International Studies",53706,53.9045,27.5615,Yes,sausage,cat,No,no preference,Yes,Spanish Eyes - Ricky Martin +"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Engineering: Industrial,,,53706,43.18,-89.21,Maybe,sausage,dog,No,night owl,No,Telescope cage the elephant +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,20,Other (please provide details below).,Economics,Mathematics,53590,71,42,No,mushroom,dog,Yes,night owl,No,You're The One by The Vogues +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,19,Other (please provide details below).,Undecided but scouting out Information Science as a major.,Also considering a Comm Arts major. ,53711,43.0731,-89.4012,Yes,sausage,dog,Yes,no preference,Yes,Kick Your Game -> TLC +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,19,Science: Other,Genetics and Genomics,,53706,42.3601,-71.0589,Maybe,pepperoni,dog,No,night owl,No,Champagne Problems Taylor Swift +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,18,Engineering: Biomedical,,,53706,37.8136,144.9631,Maybe,basil/spinach,cat,Yes,night owl,Yes,"sunday morning views + +by: Drod" +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,20,Data Science,,,53703,43.0731,-89.4012,Yes,pepperoni,dog,No,night owl,Yes,Let Go - Aaron May +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,19,Engineering: Biomedical,,,53706,29.9012,-81.3124,No,pepperoni,dog,No,early bird,Yes,Dreams by Fleetwood Mac +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,19,Data Science,,Economics,53706,51.5074,-0.1278,Yes,pepperoni,dog,Yes,no preference,No,Good Life by Kanye West +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,20,Engineering: Biomedical,,,53715,43.6123,-110.7054,No,pepperoni,dog,Yes,early bird,No,When It Rains It Pours by Luke Combs +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,18,Engineering: Mechanical,,,53706,62.8126,-150.2252,No,pepperoni,dog,No,no preference,Maybe,Forever - Noah Kahan +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,18,Engineering: Industrial,,,53706,27.2679,-82.5555,No,macaroni/pasta,dog,No,night owl,No,Unwritten by Natasha Bedingfield +"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,20,Business: Other,Accounting,Information Systems,53703,44.8977,-85.9916,No,pepperoni,dog,Yes,night owl,Yes,Vienna Billy Joel +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,20,Science: Other,,Computer Science,53715,70.221,-148.39,No,sausage,cat,No,night owl,No,"I Miss You, Blink-182" +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,20,Science: Biology/Life,,,53726,42.3,-711,No,green pepper,cat,Yes,early bird,No,Silver Lining by Mt. Joy +"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Data Science,,,53715,36.154,-99.952,Yes,basil/spinach,neither,No,night owl,Yes,Jealous - Eyedress +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,18,Statistics,,,53706,42.3555,71.0565,Maybe,basil/spinach,dog,No,night owl,Maybe,Dreams by Fleetwood Mac +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,No,pepperoni,dog,Yes,early bird,Maybe,Restless Mind by Sam Barber +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Other,Engineering: Aerospace,"Aerospace Engineering, Data Science ",53703,74.006,40.7128,Yes,pepperoni,dog,Yes,night owl,Yes,"American Pie, Don McLean " +"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,21,Statistics,,Mathematics,53703,39.9042,116.4074,No,mushroom,cat,No,no preference,Maybe,Mind over Matter by PVRIS +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,19,Engineering: Mechanical,non,non,,33.5138,33.5138,No,mushroom,neither,No,early bird,Maybe,"1) Hobbak Metl Beirut- elissa + +2) Mararti Bisadri - Kadim Al Sahir + +3) Betew7ashini- Weal Jassar + + " +"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Mechanical,,,53706,34.2121,-119.0341,No,macaroni/pasta,cat,Yes,no preference,Maybe,7 Summers - Morgan Wallen +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,No,19,Other (please provide details below).,Economics,none,53706,41.8781,-87.6298,No,mushroom,neither,Yes,night owl,Yes,mind over matter by Young the Giant. +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC002,Yes,18,Engineering: Mechanical,,,53706,20.7754,-156.4534,No,sausage,dog,No,night owl,Yes,Take Me Out - Franz Ferdinand +"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,19,Engineering: Mechanical,,"AMEP - Applied Mathematics, Engineering and Physics Program",53703,9.3183,76.6135,No,sausage,dog,No,night owl,Yes,TobyMac help is on the way +COMP SCI 319:LEC002,LEC002,Yes,27,Data Science,N/A,N/A,53705,25.033,121.5654,Maybe,mushroom,cat,Yes,early bird,Maybe,I drink wine - Adele +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,19,Data Science,,,53706,20.6752,-103.3473,Yes,pepperoni,dog,Yes,night owl,Yes,El hijo major- junior H +"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,18,Engineering: Mechanical,/,/,53706,30.5728,104.0668,No,pepperoni,neither,No,night owl,Maybe,Call of silence / gemie +"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,18,Engineering: Mechanical,,,53151,42.9955,-88.0957,No,pepperoni,dog,No,night owl,Yes,none +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,No,pepperoni,dog,Yes,no preference,Maybe,Under the Bridge by Red Hot Chili Peppers +"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,20,Science: Biology/Life,,,53703,51.5074,-0.1278,No,pineapple,cat,No,night owl,Yes,When Am I Gonna Lose You by Local Natives +COMP SCI 319:LEC003,LEC003,No,33,Data Science,,,53704,43.7102,7.262,No,pepperoni,dog,Yes,night owl,Yes,Cruel Summer - Taylor Swift +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,19,Other (please provide details below).,Economics,,53715,22.5726,88.3639,Maybe,Other,dog,No,night owl,Yes,Norwegian Wood by The Beatles +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,19,Engineering: Industrial,,,53703,44.0221,-92.4666,No,pepperoni,dog,No,night owl,Yes,UK rap- central cee/dave +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,19,Science: Physics,,,53706,35.676,139.65,No,basil/spinach,dog,Yes,night owl,Yes,My favorite song is Stayin Alive from the Bee Gees +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Other (please provide details below).,economics,data science,53715,32.72,-117.16,No,sausage,dog,Yes,early bird,Yes,"You're the one kaytranada, syd" +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,20,Business: Finance,,Business: Management,53703,21.1619,-86.8515,Maybe,pepperoni,dog,No,night owl,Maybe,Kryptonite by The Better Life +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,19,Business: Finance,N/A,Real Estate,53706,42.355,-71.057,No,pepperoni,dog,Yes,night owl,Yes,"Crazy Story Pt 3 + +King Von" +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,18,Data Science,,Economics,53706,32.69,-117.18,Yes,pepperoni,dog,Yes,no preference,Maybe,Tin Man - America +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,19,Other (please provide details below).,Astrophysics,"Data science, physics",53706,43.06,88.4042,Yes,mushroom,dog,Yes,night owl,Yes,Tear in Space- Glass Animals +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,20,Computer Science,,,53175,51.5074,-0.1278,No,pepperoni,cat,No,night owl,Yes,Sex [EP Version] - The 1975 +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,19,Engineering: Other,EE,Spanish,53715,40.4168,-3.7038,Maybe,basil/spinach,dog,No,no preference,No,Lune by Moya +"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,19,Science: Biology/Life,,,53715,10.012,76.2901,No,pineapple,dog,Yes,night owl,No,good things fall apart by Jon Bellion +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,20,Engineering: Mechanical,n/a,n/a,53715,49.9712,10.4182,No,pepperoni,dog,No,night owl,Yes,Homecoming- Kanye +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,19,Engineering: Mechanical,,,53706,37.0475,112.5263,No,sausage,dog,Yes,early bird,No,Stick Season - Noah Kahan +"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,18,Computer Science,n/a,Mathematics,53706,45.4408,12.3155,Maybe,mushroom,neither,No,night owl,Maybe,Instant Crush - Daft Punk +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,21,Science: Chemistry,n/a,n/a,53703,40.62,14.48,No,macaroni/pasta,cat,No,night owl,No,Club can't handle me - Flo Rida +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,19,Business: Actuarial,N/A,N/A,53703,40.7128,-74.006,Maybe,pepperoni,dog,Yes,night owl,Maybe,Sunshine by Steve Lacy +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,19,Engineering: Mechanical,,,53706,35.8819,-106.3077,No,pepperoni,dog,Yes,early bird,Yes,All my love - Noah Kahan +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,21,Statistics,,,53715,35.9078,127.7669,Yes,mushroom,cat,Yes,no preference,No,Take On Me by a-ha +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,20,Other (please provide details below).,Economics,Chinese,53703,20.7815,-156.4627,No,pepperoni,cat,No,night owl,Yes,She will be loved by Maroon5 +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,18,Business: Information Systems,,,53706,40.7128,-74.006,No,pepperoni,dog,No,early bird,No,"24/7, 365 by Elijah Woods" +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,19,Business: Information Systems,,,53715,53.9006,27.559,Yes,sausage,dog,No,night owl,Yes,Breaking Dishes - Rihanna +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,18,Science: Biology/Life,NA,NA,53715,31.2304,121.4737,Yes,pepperoni,dog,No,night owl,Yes,Like Me Better -Lauv +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,-33.8688,151.2093,No,pepperoni,dog,No,night owl,Maybe,"Bones, Imagine Dragons" +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,20,Data Science,,"Data Science, Molecular and Cell Biology",53715,39.9,116.36,Yes,sausage,dog,No,night owl,Yes,Last Dance - Bigbang +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,20,Business: Finance,,Real Estate,53703,40.718,-74.3587,No,none (just cheese),dog,No,early bird,Maybe,One of these Nights - Eagles +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,21,Data Science,N/A,Economics,53711,40,116,Yes,pineapple,cat,No,no preference,Yes,Hastune Miku +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,20,Computer Science,,,53706,40.7128,-74.006,No,Other,dog,Yes,night owl,Maybe,Blackjack ---> Gunna +"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,19,Engineering: Biomedical,na,Looking possibly for a different field of engineering ,53715,43.7382,11.2299,No,sausage,dog,No,night owl,Yes,"Echo by Incubus (So good, live for the guitar riff at the beginning and the chorus vocals)" +"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC001,Yes,19,Engineering: Industrial,N/A,N/A,53703,43.7684,11.2562,No,pepperoni,dog,Yes,night owl,Yes,Disorder by Joy Division +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,20,Engineering: Biomedical,,,53715,51.5074,-0.1278,No,pepperoni,cat,No,no preference,Maybe,"We Are Young + +fun." +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,20,Data Science,,,53726,39.9042,116.4074,Yes,pepperoni,dog,No,night owl,Yes,Toxic by Meovv +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,18,Data Science,,"Economics, Consulting Certificate",53706,41.8818,-87.6232,Yes,pepperoni,dog,Yes,early bird,Maybe,"Cigarettes and Coffee, Otis Retting" +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC002,No,19,Business: Information Systems,,Business: Operations Technology Management,53703,43.3216,-87.9518,No,sausage,dog,Yes,early bird,Yes,Biggest Part of Me - Ambrosia +"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Mechanical,,,53703,43.0309,-87.9047,No,mushroom,cat,No,no preference,No,I can't get no satisfaction - Rolling stones +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,20,Engineering: Mechanical,,,53715,44.9778,-93.265,No,pineapple,cat,No,night owl,Yes,Total Eclipse of the Heart by Bonnie Tyler +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,18,Data Science,,Economics,53706,,,Yes,pepperoni,dog,No,night owl,Yes, +"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,19,Science: Biology/Life,,Psychology,53715,43.0758,-89.4001,No,mushroom,dog,No,night owl,Yes,Redbone by Childish Gambino +"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,18,Data Science,Data Science,Risk Management,53706,41,2.17,Yes,sausage,dog,No,early bird,Yes,See you again-Tyler the Creator +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,18,Data Science,,,53706,22.8948,-109.9152,Yes,none (just cheese),dog,Yes,early bird,No,miami- will smith +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,21,Other (please provide details below).,economics,n/a,53715,74.006,40.7128,Yes,pepperoni,dog,No,night owl,Yes,riptide +COMP SCI 319:LEC002,LEC002,Yes,29,Science: Other,Geosciences Graduate Student,,53715,41.3851,2.1734,No,pineapple,dog,No,night owl,Yes,Xtal Aphex Twin +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,18,Other (please provide details below).,Cartography & Geographic Information Systems,,53703,41.88,-87.6,No,sausage,cat,No,night owl,Yes,The Other Side of Paradise - Glass Animals +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,19,Other (please provide details below).,My primary major is Biochemistry,,53726,43.0703,-89.422,No,pepperoni,cat,No,night owl,Maybe,My favorite singer is SZA +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,18,Engineering: Biomedical,,,53706,37.9838,23.7275,No,sausage,dog,No,night owl,No,Forever by Noah Kahan +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,20,Other (please provide details below).,"Environmental Sciences, but planning on transferring to the industrial engineering major",,53703,-12.0464,-77.0428,No,pepperoni,cat,No,night owl,Yes,circles - mac miller +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Biomedical,,,53726,33.8847,-118.4109,No,pepperoni,dog,No,night owl,Yes,"Title: Self Esteem + +Artist: The Offspring" +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,18,Engineering: Other,Civil Engineering,,53706,43.0645,-88.1192,No,pepperoni,dog,Yes,no preference,No,"Mother Natures Song, By the Beatles" +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,20,Science: Physics,,Currently working my way into the mechanical engineering major,53703,23.725,-100.5469,No,sausage,dog,Yes,night owl,No,Loco - Neton Vega +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,20,Data Science,,,53706,71,42,Yes,pepperoni,cat,No,night owl,,Threat of Joy - The Strokes +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,18,Engineering: Biomedical,,,53706,18.4663,-66.1052,No,sausage,dog,No,night owl,Yes,Close to you by Gracie Abrams +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,18,Business: Other,Business: Accounting,Business: Information Systems,54942,51.51,0.12,No,Other,dog,Yes,night owl,Yes,Laser-Shooting Dinosaur by Angus McSix +"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,20,Engineering: Biomedical,N/A,N/A,55449,35.6895,139.6917,No,pepperoni,dog,Yes,night owl,Yes,"Mystery Lady - Masego, Don Toliver" +"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,18,Statistics,,Cell Biology,53075,,,No,basil/spinach,cat,Yes,early bird,No,Be Sweet by Japanese Breakfast +"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,18,Data Science,,Economics,53706,37.3859,-5.9906,Yes,none (just cheese),dog,Yes,night owl,Yes,"Assassin, John Mayer" +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,19,Engineering: Mechanical,,,53715,25,-80,No,pepperoni,dog,No,night owl,Yes,All Your'n- Tyler Childers +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,19,Engineering: Biomedical,,,53704,44.5133,-88.0133,No,sausage,dog,No,night owl,No,Under Pressure - Queen +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Biomedical,,,53706,19.64,-155.9969,No,green pepper,dog,Yes,early bird,Maybe,Dreams Fleetwood Mac +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,20,Engineering: Other,,,53528,40.7128,-74.006,No,pepperoni,dog,No,no preference,Maybe,Amazonia by Gorjira +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,19,Other (please provide details below).,Economics,,53706,37.3414,-122.0284,No,pineapple,dog,No,night owl,Yes,"One of These Nights, Eagles" +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,18,Computer Science,,"Data Science, Economics",53706,51.5074,-0.1278,Yes,pepperoni,dog,Yes,night owl,Yes,16 by Baby Keep +"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,18,Other (please provide details below).,"Music: Performance + +Engineering/Science/Undecided?",,53706,49.8,-63.3,No,pepperoni,dog,No,early bird,Yes,"Just the Way You Are, Billy Joel" +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Biomedical,,,53706,46.4761,-93.9014,No,sausage,cat,Yes,night owl,Maybe,"One of my favorite songs is ""New Perspective"" by Noah Kahan." +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Mechanical,,,53706,38.9072,-77.0369,No,pepperoni,cat,No,night owl,Yes,Weird Fishes - Radiohead +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,18,Statistics,,,53706,33.4484,-112.074,Maybe,pepperoni,dog,No,night owl,Maybe,Springsteen by Eric Church +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Biomedical,,,53706,47,87,No,pepperoni,dog,Yes,early bird,Maybe,Upside down Jack Johnson +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,18,Other (please provide details below).,Economics,Data Science,53706,41.8781,-87.6298,Yes,macaroni/pasta,cat,Yes,early bird,Yes,Bad Boy - Red Velvet +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,19,Data Science,,,53706,46.8182,8.2275,Yes,none (just cheese),dog,Yes,early bird,Maybe,Classic music +"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Biomedical,,,53703,41.9028,12.4964,No,mushroom,dog,No,night owl,Maybe,"Dancing queen, ABBA" +"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,19,Mathematics/AMEP,,Economics,53706,31,121,Maybe,pineapple,neither,No,night owl,Yes,ma meilleure ennemie +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC002,No,19,Engineering: Mechanical,,,53706,30.246,87.7,No,sausage,dog,Yes,night owl,Yes,A Cold Sunday - Lil Yachty +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Science: Biology/Life,,data science,53715,32.0603,118.7969,Maybe,mushroom,cat,No,night owl,No,counting star +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,19,Science: Other,,Data science,53706,32.8328,-117.2713,Maybe,sausage,cat,Yes,night owl,Maybe,Please Please Please - Sabrina Carpenter +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,18,Other (please provide details below).,education policy,,53706,48.8566,2.3522,No,sausage,dog,No,night owl,Yes,Better Than - Lake Street Dive +"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,18,Business: Actuarial,N/A,Risk Management & Insurance,53706,39.9526,-75.1652,No,macaroni/pasta,cat,No,no preference,Maybe,See you again - Tyler the Creator +COMP SCI 319:LEC001,LEC001,Yes,22,Engineering: Biomedical,,,53705,31.2304,121.4737,Maybe,mushroom,dog,No,no preference,Yes,"city of stars, ryan gosling & emma stone" +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Mechanical,,,53715,48.86,2.3488,No,pepperoni,dog,No,night owl,Maybe,Silver Springs- 2004 remastered By: Fleetwood Mac +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,19,Science: Other,,Data science,53706,32.8328,-117.2713,Maybe,sausage,cat,Yes,night owl,Maybe,Good Graces - Sabrina Carpenter +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Biomedical,,,53715,26.1267,-81.7863,No,none (just cheese),cat,Yes,early bird,No,Ground Khalid +"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Business: Actuarial,,Risk Management & Insurance,53706,-87.6298,41.8781,Maybe,pineapple,cat,Yes,night owl,No,Electric Relaxation by a Tribe Called Quest +"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,18,Business: Actuarial,,,53703,45.1602,-87.1719,No,pepperoni,dog,No,no preference,No,Les by Childish Gambino +COMP SCI 319:LEC002,LEC002,Yes,23,Other (please provide details below).,Agricultural and Applied Economics,N/A,53703,37.87,112.55,Maybe,pepperoni,cat,No,early bird,Yes,Unconditional by Eason Chan +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC001,Yes,19,Data Science,N/.A,Economics,53706,43.8,123.5,Maybe,mushroom,dog,No,early bird,No,lie BTS +"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Data Science,,,57303,43.8514,-89.1338,Yes,pineapple,cat,No,night owl,Yes,Better Off Alone - Alice Deejay +"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,22,Science: Biology/Life,,Neurobiology,53715,44.0121,-92.4802,No,sausage,dog,Yes,early bird,Yes,"Five Leaf Clover, Luke Combs" +"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,18,Engineering: Biomedical,,,53706,39.9526,-75.1652,No,pepperoni,dog,Yes,night owl,No,Any colour you like - Pink Floyd +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,19,Data Science,,,53715,32.0853,34.7818,No,pepperoni,dog,No,night owl,Maybe,New Years Day by Charlie Robison +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Mechanical,,Business: Other,53726,41.8781,-87.6298,Yes,pepperoni,dog,Yes,no preference,Yes,Billy Joel- Vienna +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Biomedical,,,53706,20.8771,-156.6813,No,basil/spinach,dog,No,no preference,Yes,If We Were Vampires by Jason Isbell and the 400 Unit +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Other,Undecided,,53706,32,118,No,sausage,neither,No,night owl,Yes, +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,19,Engineering: Biomedical,,,53715,51.5074,-0.1278,No,none (just cheese),cat,No,night owl,Yes,Take it easy by the eagles +"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,19,Engineering: Mechanical,,,53706,36.1946,139.043,No,Other,dog,No,no preference,Maybe,Killer Queen Queen +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,18,Engineering: Biomedical,,,53706,44.9778,-93.265,No,basil/spinach,dog,Yes,night owl,Yes,She Lit a Fire by Lord Huron +"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53706,29.4316,106.9123,No,pepperoni,neither,Yes,no preference,Yes, +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53089,-17.7134,178.065,No,sausage,dog,No,night owl,Yes,"A Bar Song, Shaboozey" +"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,21,Other (please provide details below).,Economics,,53703,44.7785,-81.2872,Maybe,sausage,dog,No,night owl,No,seasons-wave to earth +"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,18,Engineering: Mechanical,,,53706,35.6764,139.65,No,sausage,dog,No,night owl,Maybe,4 Your Eyez Only - J Cole +"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,19,Engineering: Mechanical,,,53706,17.1584,-89.0691,No,pepperoni,dog,No,night owl,Yes,Thinkin Bout You - Frank Ocean +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Other,,"Geology & Geophysics, Mathematics",53705,43.0731,-89.4012,No,pepperoni,cat,Yes,night owl,No,Uptown Girl (Billy Joel) +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Biomedical,,,53706,44.6366,-124.0545,No,basil/spinach,cat,No,night owl,Yes,Paul Revere by Noah Kahan +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,19,Engineering: Biomedical,,,53706,42.3555,71.0565,No,sausage,dog,No,early bird,No,Second Hand News by Fleetwood Mac +"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,18,Engineering: Biomedical,,,53706,38.9072,-77.0369,No,none (just cheese),dog,No,no preference,No,III. Telegraph Ave - Childish Gambino +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Business: Actuarial,,"Data Science, Risk Management & Insurance",53711,32.2154,-80.7476,Yes,basil/spinach,dog,Yes,early bird,No, +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53706,18.3463,-65.8137,No,pepperoni,dog,No,night owl,Yes,Alive! by Bakar +"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,19,Business: Actuarial,,Risk Management and Insurance,53703,41.9028,12.4964,No,pepperoni,dog,Yes,early bird,No,Timeless-The Weeknd +"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53703,45.0981,-93.4445,No,basil/spinach,dog,Yes,early bird,Yes,"st elmos fire, john parr" +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,24,Engineering: Mechanical,,,52719,43.0747,89.3842,No,Other,cat,No,night owl,Yes,"""Through Me"" - Hozier" +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,20,Other (please provide details below).,I am still undecided but maybe data science or economics,,53715,31.4912,120.3119,Maybe,mushroom,cat,No,no preference,Yes,The songs of Jay Chou! +"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,18,Engineering: Mechanical,,,53706,28.06,-80.56,No,sausage,dog,No,night owl,Maybe,Wish You Were Here- Pink Floyd +"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,19,Data Science,,,53715,41.885,-87.6215,Yes,none (just cheese),dog,Yes,night owl,Yes,Starman - David Bowie +COMP SCI 319:LEC001,LEC001,No,23,Other (please provide details below).,Economics,,53711,43.0731,-89.4012,No,pineapple,dog,No,early bird,No,Any Taylor Swift +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,18,Data Science,Psychology,,53703,33.3875,120.1233,Yes,none (just cheese),dog,No,night owl,No,Whiplash from aespa. +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,21,Science: Other,,I have a minor in Data Science. ,53726,35.6895,139.6917,No,sausage,cat,No,no preference,Yes,Lit Up by Buckcherry. +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,20,Engineering: Mechanical,,,53706,40.7,74,No,pepperoni,dog,Yes,early bird,No,Ms. Jackson - Outkast +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,21,Engineering: Mechanical,,,53703,44.9886,93.268,No,pepperoni,dog,No,night owl,Yes,Land of the Snakes - J Cole +"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,18,Statistics,,,53715,-28.0015,153.4285,Maybe,pepperoni,cat,No,no preference,Yes,"1:37 + +OMORI OST - 005 By Your Side. + +by OMOCAT" +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Statistics,,,53715,43,11,No,pineapple,dog,Yes,early bird,No,called on me +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,19,Other (please provide details below).,Legal Studies,Information Science,53715,48.3707,-114.1866,No,sausage,cat,No,night owl,Maybe,When the Sun Hits by Slowdive +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,19,Engineering: Biomedical,,,53072,40.4111,-105.6413,No,pepperoni,neither,No,no preference,Maybe,"I have a wide range of music variety that I like, from Noah Khan to Pitbull I really don't have a preference. But recently I have been listening to brown eye girl by van morrison." +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,19,Engineering: Other,,,53706,26.142,81.7948,No,pepperoni,dog,Yes,early bird,Yes,Champagne Supernova by Oasis +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Mechanical,,,53706,42.4627,2.455,No,pepperoni,dog,No,night owl,Yes,Dreamer - Laufey +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,22,Business: Other,Business: Marketing. ,,53703,36.1993,117.0643,No,pepperoni,cat,No,night owl,Yes,Title: 雑踏、僕らの街 (Wrong World). Artist: TOGENASHI TOGEARI +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,20,Other (please provide details below).,Economics with Math Emphasis,certificates in data science and asian American studies,53706,25.033,121.5654,Maybe,basil/spinach,dog,Yes,night owl,Yes,Bolo by Penomeco +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,19,Business: Information Systems,,,53703,41.8781,-87.6298,Maybe,pepperoni,dog,No,night owl,No,My Eyes - Travis Scott +"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,21,Other (please provide details below).,电子信息工程,,53703,31.2304,121.4737,Yes,sausage,cat,No,no preference,Yes,Without You -- Avicii +"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,18,Other (please provide details below).,Biochemistry,Neurobiology,53706,-13.532,-71.9675,No,mushroom,dog,No,night owl,Yes,"Drugs, Sex and Hella Melodies by Don Toliver" +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53706,41.8781,87.6298,No,none (just cheese),dog,Yes,early bird,Yes,Vienna Billy Joel +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,18,Other (please provide details below).,"Right now I’m undecided in the college of Letters and Science, but I’m thinking about applying to the school of engineering potentially.",,53706,58.4566,16.8331,Maybe,pepperoni,dog,Yes,night owl,Yes,get away from you— Jason Aldean +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,19,Engineering: Biomedical,,,53706,45.4384,10.9917,No,pepperoni,dog,No,night owl,Maybe,Si antes te hubiera conocido Karol G +"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,19,Other (please provide details below).,Astronomy-Physics,,53706,46.0105,-95.6817,No,pineapple,cat,No,early bird,No,Let it Die - Foo Fighters +"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,21,Data Science,,,53715,41.8781,-87.6298,Yes,sausage,cat,No,night owl,Maybe,Southern Nights by Glen Campbell +"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Biomedical,,,53706,40.7128,-74.006,No,pineapple,dog,No,night owl,Yes,Babydoll by Dominic Fike +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,19,Engineering: Biomedical,,Material Science and Engineering ,53706,40.416,-3.7,No,pepperoni,neither,No,early bird,Maybe,indigo- Sam Barber +"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,19,Other (please provide details below).,Astronomy-Physics,Data Science,53711,31,121,Yes,pepperoni,neither,No,no preference,Maybe,"Shoulder of Giants, Various Artists (2009)" +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,20,Data Science,Data science,,53703,40.7128,-74.006,Yes,basil/spinach,neither,Yes,early bird,Yes,Love Song +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,18,Business: Information Systems,,Management ,53703,41.5933,-74.5039,No,basil/spinach,dog,No,night owl,No,One of my favorite songs is Umbrella by Rihanna. +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,19,Other (please provide details below).,Atmospheric & Oceanic Sciences,,53711,35,139,Yes,pepperoni,cat,No,night owl,Maybe, +"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53706,40.015,105.2705,Maybe,sausage,dog,No,night owl,Yes,"Laramee + +Ritchy Mitch and the coal miners" +"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,,Business: Other,,,53706,31.23,121.47,Yes,sausage,cat,No,night owl,Yes,The race by Chris James +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,20,Other (please provide details below).,Psychology ,none,53703,55.6761,12.5683,No,Other,dog,No,no preference,Yes,Precious by Depeche Mode is my absolute favorite song of all time +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,21,Science: Biology/Life,,Zoology & Conservation Biology,53703,35.6895,139.6917,No,pepperoni,cat,Yes,early bird,Maybe,"Give Me My Heart Back, Masked Wolf" +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,18,Mathematics/AMEP,,,53706,54.3722,18.6383,No,pepperoni,cat,No,no preference,Yes,"Toutes les machines ont un cœur + +Maëlle" +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,19,Data Science,,Math based Economics,53705,34.6937,135.5022,Yes,Other,cat,No,night owl,Yes,"Higher, Creed" +"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Data Science,,,53715,43.7102,7.262,Maybe,pepperoni,cat,No,early bird,Yes,Silver Lining - In Guards We Trust +"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,19,Engineering: Mechanical,,,53706,43.0731,-89.4012,Maybe,sausage,dog,No,night owl,Yes, +COMP SCI 319:LEC001,LEC001,,24,Science: Biology/Life,,,53711,33.9331,-83.3389,No,none (just cheese),cat,Yes,early bird,Maybe,"""Linger"" by The Cranberries" +"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,19,Science: Biology/Life,Global Health ,Conservation Biology with certificates in Data Science and Environmental Studies and Health Policy ,53715,40.7128,-74.006,Maybe,green pepper,dog,No,night owl,No,Where You Are by John Summit +"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,19,Business: Finance,,other major: Risk Management ,53706,45.6793,-111.0466,Maybe,sausage,dog,Yes,night owl,Maybe,devil in a new dress- kanye west +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,20,Other (please provide details below).,Data Science.,Probably economics.,53706,56.4104,-5.4697,Maybe,basil/spinach,dog,No,night owl,Maybe,Surrender by Cheap Trick. +"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,18,Engineering: Mechanical,,,53706,43.0686,-89.3988,No,pepperoni,dog,No,night owl,Maybe,"Hanging by a moment, Lifehouse" +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,20,Other (please provide details below).,undecided,,53703,28.9704,118.8707,Yes,pineapple,dog,No,night owl,Yes,What She Hasn't Seen - The 1999 +"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,18,Business: Information Systems,,I am doing a data science certificate.,53706,39444164,,Maybe,pepperoni,dog,No,night owl,Maybe,Blowing in the wind - Bob Dylan +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,18,Science: Other,Information Science,"English, language & linguistics",53703,43.0731,-89.4012,No,pepperoni,cat,No,night owl,No,La Seine - Vanessa Paradis +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,18,Science: Physics,,,53706,18.4655,-66.1057,No,none (just cheese),cat,No,night owl,Maybe,Rim Tim Tagi Dim by Baby Lasagna +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,19,Engineering: Biomedical,,,53715,12.9716,77.5946,No,green pepper,cat,No,no preference,Yes,In cold blood +"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,18,Other (please provide details below).,"Art History, trying to get into business school ",,53706,46.2044,6.1432,No,pepperoni,dog,No,early bird,Yes,"Halo by Beyonce + +someday from the movie Zombies + +mojo so dope by kid kudi + +hotline bling by drake + +scar tissue by Red Hot Chili Peppers " +"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,18,Engineering: Industrial,,,53706,-6.2615,106.8106,No,sausage,cat,Yes,early bird,Maybe,luther +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,18,Engineering: Biomedical,,,53706,42.2934,-83.5241,No,none (just cheese),dog,Yes,no preference,Maybe,linger by the cranberries +"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,20,Engineering: Biomedical,,,53715,46.8721,-113.994,No,pepperoni,dog,Yes,early bird,No,Sara by Fleetwood Mac +"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,18,Data Science,,,53706,37.45,25.35,Yes,pepperoni,dog,Yes,night owl,Yes,"Luther, Sza & Kendrick Lamar" +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Other (please provide details below).,Atmospheric and Oceanic Sciences ,,53149,40.3761,-105.5237,No,sausage,dog,Yes,early bird,Maybe,Silver Springs -Fleetwood Mac +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,19,Engineering: Biomedical,,,94022,41.8781,-87.6298,No,sausage,dog,No,early bird,Yes,Babel - Mumford and Sons +"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,19,Business: Finance,,,53706,20.7984,-156.3319,No,mushroom,dog,Yes,early bird,No,"Burn, Burn, Burn - Zach Bryan" +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,26,Engineering: Mechanical,,,53703,26.1219,-80.3975,No,none (just cheese),dog,Yes,early bird,Yes,Pitorro de Coco - Bad Bunny +"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,18,Other (please provide details below).,Information Science ,Journalism,53706,40.7306,-73.9352,No,pepperoni,dog,No,night owl,Yes,Push 2 Start by Tyla +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Biomedical,,,53706,34.1347,-118.0516,Maybe,pepperoni,dog,No,night owl,Yes,Sweet Disposition - The Temper Trap +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,18,Business: Finance,,"Math, potentially data science as well",53706,40.6344,14.6026,Yes,Other,dog,No,night owl,No,Arms wide open by Creed +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,19,Data Science,,,53703,35.6895,139.6917,Yes,pineapple,cat,No,night owl,Maybe,Hiding In The Blue-TheFatRat +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,21,Data Science,,,53726,43.0722,89.4008,Yes,pepperoni,dog,No,no preference,Yes,BON VOYAGE! by Mika Ogawa +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,20,Engineering: Mechanical,,,53706,43.0338,-87.9208,No,pepperoni,cat,No,no preference,Maybe,"Come on, Come Over (Jaco Pastorius)" +"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Biomedical,,,53706,25.761,-80.192,No,macaroni/pasta,dog,No,night owl,Yes,Seabird by the Alessi Brothers +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,20,Science: Other,"Economics, Data Science cert",ds cert,53703,41.8781,-87.6298,No,none (just cheese),cat,No,early bird,Maybe,jackie down the line - fontaines d.c. +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Mechanical,,,53706,78,15,No,pepperoni,dog,No,night owl,Yes,Seimeisei Syndrome by Camellia ft. Hatsune Miku +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,19,Business: Other,My primary major is Business: Operations and Technology Management,,53715,41.8781,87.6298,No,pepperoni,cat,No,night owl,Yes,"Give You the World - Steve Lacy + +Homecoming - Kanye West " +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Industrial,,,53715,38.5382,75.0587,No,pepperoni,neither,Yes,early bird,No,"After Hours, The Weekend" +"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,18,Science: Physics,,,53706,40.7128,-74.006,No,none (just cheese),cat,No,night owl,Yes, benzi box by dangerdoom +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,18,Engineering: Mechanical,Mechanical Engineering,,53706,25.2048,55.2708,No,pepperoni,cat,Yes,night owl,Maybe,Travis Scott: K-pop +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,19,Science: Biology/Life,,,53715,23.6978,120.9605,Yes,mushroom,cat,No,night owl,Yes,Hazel Eyes - BoyWithUke +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,19,Science: Other,Biology & Environmental Science,Minor: French Language,53706,41.8781,87.6298,No,basil/spinach,dog,No,night owl,Yes,Stir Fry - Migos +"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Other (please provide details below).,Economics,NA,53706,51.0543,3.7174,Maybe,pepperoni,dog,Yes,early bird,No,Chocolate by The 1975 +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Mechanical,,,53706,46.0207,7.7491,No,none (just cheese),dog,Yes,no preference,Yes,nangs - tame impala +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,21,Engineering: Other,Material Science and Engineering,Nuclear Engineering,53715,45.197,-89.647,No,sausage,dog,Yes,early bird,No,"Snow, Zach Bryan + + " +"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,18,Engineering: Biomedical,,,53706,46.3489,10.9072,No,mushroom,cat,No,early bird,No,Hysteria - Muse +"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,,Engineering: Industrial,,,53715,42.3611,-71.0571,Maybe,pineapple,dog,No,early bird,Yes,Burning Man by Dierks Bentley +"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Mechanical,,,53706,36.5116,-104.9154,No,pepperoni,dog,Yes,no preference,Yes,Doolin-Dalton by the Eagles +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,20,Science: Biology/Life,,,53703,35.6895,139.6917,No,pepperoni,neither,No,night owl,Yes,SPECIALZ by King Gnu +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,19,Engineering: Biomedical,,,53706,44.2832,-88.3132,No,pepperoni,dog,No,night owl,Yes,Nobody Gets Me - SZA +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC002,No,18,Engineering: Mechanical,,,53706,31.2304,121.4737,No,sausage,dog,Yes,no preference,Yes,Room for You - grentperez and Lyn Lapid +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,,Science: Other,,,53705,31.9522,35.2332,No,basil/spinach,cat,No,no preference,Maybe,I don't know that's a tough question +"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Data Science,,,53706,25,55,Yes,pepperoni,dog,Yes,no preference,No,no church in the wild by kanye +"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,19,Data Science,,Accounting,53706,34.0522,-118.2437,Yes,pepperoni,dog,Yes,night owl,Yes,Use Somebody - Kings of Leon +"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53706,51.5074,-0.1278,No,mushroom,dog,No,night owl,Yes,Exit Music (For A Film) by Radiohead +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Industrial,,French,53715,48.2082,16.3738,No,pepperoni,cat,Yes,night owl,Maybe,Somebody to Love- Queen +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,19,Engineering: Mechanical,,,53715,21.1619,-86.8515,No,sausage,dog,No,night owl,Maybe,Sunflower - post malone +"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,19,Engineering: Other,,,53706,30.1726,107.8857,No,Other,cat,No,night owl,Yes,Tango-ABIR +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,18,Engineering: Industrial,,,53706,41.8781,-87.6298,No,pineapple,dog,No,early bird,Maybe,Put Your Records On - Corrine Bailey Rae +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,18,Data Science,,Mathematics,53706,49.4825,20.0318,Yes,green pepper,cat,No,early bird,No,Black by Pearl Jam +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,19,Engineering: Mechanical,,,53706,41.9028,12.4964,No,sausage,dog,Yes,no preference,Yes,One of these nights or After the Thrill is gone by the Eagles +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,20,Engineering: Mechanical,Mechanical Engineer,,53965,-1.1435,13.9002,No,sausage,dog,No,night owl,Yes,Burn burn burn by Zach bryan +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,21,Science: Biology/Life,,Music Performance ,53703,14.4423,121.044,No,mushroom,cat,Yes,early bird,Maybe,Strawberry Fields Forever - The Beatles +"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Mechanical,,,53706,33.7501,84.3885,No,pepperoni,dog,Yes,no preference,Yes,Gasolina - Daddy Yanke +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,No,18,Data Science,,,53706,41.3851,2.1734,Yes,Other,dog,No,early bird,No,Runaway - Kanye West +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,19,Engineering: Mechanical,,,53706,45.78,88.5368,No,Other,dog,No,no preference,Yes,"Rockstar, Nickleback" +COMP SCI 319:LEC001,LEC001,No,25,Other (please provide details below).,PhD student in Animal Sciences studying primarily rumen microbiology,none,53705,45.374,-84.9556,Maybe,mushroom,dog,Yes,early bird,No,Apple Charli xcx +"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,19,Data Science,,,53715,43.0731,-89.4012,Yes,basil/spinach,cat,No,early bird,No,let down - radiohead +"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Mechanical,,,53703,41.8781,-87.6298,Maybe,none (just cheese),dog,Yes,early bird,No,The Promise by When in Rome +"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,19,Engineering: Industrial,,,53706,59.9139,10.7522,Maybe,basil/spinach,dog,Yes,early bird,Maybe,wannabe spice girls +"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,18,Data Science,,,53706,43.0731,-89.4012,Yes,Other,cat,Yes,early bird,Maybe,penny lane- the beatles +"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,19,Science: Other,"Social science, sociology",Data science,53703,41.8781,-87.6298,Maybe,basil/spinach,cat,No,night owl,Maybe,Lovely Day by Bill Withers +"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Engineering: Mechanical,,,53706,46,7.7,No,pineapple,dog,Yes,no preference,No,"brandy + +The looking glass" +"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC003,No,19,Other (please provide details below).,Integrative Animal Biology,"Atmospheric and Oceanic Sciences, Folklore certificate",53703,47.75,90.33,No,macaroni/pasta,cat,Yes,night owl,Yes,"Damage Gets Done by Hozier and Brandi Carlile, or Everybody Wants to Rule the World by Tears for Fears" +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,22,Statistics,,,53715,43.0731,-89.4012,No,pineapple,dog,Yes,early bird,Maybe,Counting Stars +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,21,Engineering: Biomedical,,,53703,6.2476,75.5658,No,pineapple,dog,No,early bird,No,isnt she lovely - Stevie Wonder +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,18,Science: Physics,,,53706,43.0731,-89.4012,No,sausage,cat,No,no preference,Maybe,Move Along - All American Rejects +"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,Yes,22,Engineering: Other,Electronic Computer Engineering,no,53703,24.9893,121.6583,Maybe,macaroni/pasta,dog,Yes,early bird,No,Alexander Hamilton——my shot +"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,19,Other (please provide details below).,Economics,n/a,53562,41.3851,2.1734,No,mushroom,dog,No,night owl,Maybe,Beer for my horses - Toby Keith +"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,18,Science: Physics,,,53706,47.5928,-120.6676,Maybe,pepperoni,cat,No,no preference,Yes,Work Song by Hozier +"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Biomedical,,,53706,18.582,-68.4055,No,pepperoni,dog,No,night owl,Yes,Vienna by billy joel +COMP SCI 319:LEC004,LEC004,Yes,27,Other (please provide details below).,Financial Economics,,53572,37.9838,23.7275,No,basil/spinach,dog,No,no preference,No,Mr Blue Sky by ELO +"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,18,Engineering: Biomedical,,,53706,41.3851,2.1734,No,mushroom,dog,Yes,early bird,Maybe,Homemade Dynamite by Lorde +COMP SCI 319:LEC001,LEC001,Yes,35,Engineering: Other,Electrical and Computer Engineering,,53715,36.1839,113.1053,Maybe,sausage,neither,No,early bird,No,An‘he Bridge - Dongye Song +"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,18,Mathematics/AMEP,,,53706,48.8566,2.3522,Maybe,pineapple,dog,Yes,early bird,No,"FLY ME TO THE MOON + +Song by Claire Littley, Kotono Mitsuishi, and Yūko Miyamura" +"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,20,Engineering: Mechanical,,,53706,59.9139,10.7522,No,pepperoni,dog,Yes,early bird,No,Seven Nation Army by White Stripes +"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC001,Yes,19,Data Science,N/A,Economics,54706,43.8,125.3,Maybe,mushroom,dog,No,early bird,No,"wait for it + +Leslie Odom Jr." +"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,20,Data Science,,,53715,34.2544,108.9418,Yes,pepperoni,dog,No,early bird,Maybe,Love Transfer by Eason Chan