From a5859a07475ad310db780fb94cb4abce6c5145c4 Mon Sep 17 00:00:00 2001 From: Louis Oliphant <ltoliphant@wisc.edu> Date: Mon, 17 Feb 2025 07:00:20 -0600 Subject: [PATCH] lec 12 iteration practice --- .../Lec_12_Iteration_Practice.ipynb | 759 ++++++++++ .../Lec_12_Iteration_Practice_Solution.ipynb | 1336 +++++++++++++++++ .../cs220_survey_data.csv | 979 ++++++++++++ .../12_Iteration_Practice/project.py | 84 ++ 4 files changed, 3158 insertions(+) create mode 100644 s25/Louis_Lecture_Notes/12_Iteration_Practice/Lec_12_Iteration_Practice.ipynb create mode 100644 s25/Louis_Lecture_Notes/12_Iteration_Practice/Lec_12_Iteration_Practice_Solution.ipynb create mode 100644 s25/Louis_Lecture_Notes/12_Iteration_Practice/cs220_survey_data.csv create mode 100644 s25/Louis_Lecture_Notes/12_Iteration_Practice/project.py diff --git a/s25/Louis_Lecture_Notes/12_Iteration_Practice/Lec_12_Iteration_Practice.ipynb b/s25/Louis_Lecture_Notes/12_Iteration_Practice/Lec_12_Iteration_Practice.ipynb new file mode 100644 index 0000000..260170c --- /dev/null +++ b/s25/Louis_Lecture_Notes/12_Iteration_Practice/Lec_12_Iteration_Practice.ipynb @@ -0,0 +1,759 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Warmup" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Warmup 1: Complete the code to print a treasure map where an X is placed \n", + "# treasure_row, treasure_col (starting from 0)\n", + "def print_treasure_map(symbol='-', height=4, width=4, treasure_row=2, treasure_col=2):\n", + " i = 0\n", + " while ???: # TODO: Complete the loop condition for printing out each row.\n", + " j = 0\n", + " while j < width:\n", + " if ???: # TODO: Complete the if condition for checking if we print an X or the symbol.\n", + " print('X', end=\"\")\n", + " else:\n", + " print(symbol, end=\"\")\n", + " j += ??? # TODO: Complete the statement so we do not run into an infinite loop.\n", + " print()\n", + " i += 1\n", + " \n", + "print_treasure_map()\n", + "print_treasure_map(width=10, height=10)\n", + "print_treasure_map('#', 7, 4, treasure_row=0, treasure_col=1)\n", + "print_treasure_map('.', 5, 8, 3, 6)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Warmup 2: Print the snake\n", + "\n", + "# ************\n", + "# *\n", + "# ************\n", + "# *\n", + "# ************\n", + "# *\n", + "# ************" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Reminder\n", + "\n", + "You should be familiar with using\n", + "- `while` loops\n", + "- 'continue' and 'break' statements within loops\n", + "- nested loops\n", + "\n", + "## Midterm 1: Wednesday\n", + "- **[The best way to study for the exam!!!](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-lecture-material/-/tree/main/Common/old_exams)**\n", + "- **Remember: one page note sheet (both sides, written or printed) - we keep the notesheet**\n", + "- **Number 2 pencil**\n", + "- **Wisc Card**\n", + "- **Arrive 15 minutes early to scan in**\n", + "- **30 Multiple choice questions - 90 minutes**" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Iteration Practice\n", + "\n", + "## Readings\n", + "\n", + "- [Python for Everybody, 6.5 - end](https://runestone.academy/ns/books/published/py4e-int/iterations/toctree.html)\n", + "\n", + "## Learning Objectives\n", + "\n", + "After this lecture you will be able to...\n", + "- Use the `range()` function\n", + "- Understand the **list** data type\n", + "- Iterate using `for x in range()` over lists and strings\n", + "- Iterate through a dataset using `for idx in range(project.count())`\n", + "- Compute the frequency of data that meets a certain criteria\n", + "- Find the maximum or minimum value of a numeric column in a dataset\n", + "- Use break and continue in for loops when processing a dataset\n", + "- Handle missing numeric values when computing a maximum/minimum\n", + "- Use the index of a maximum or minimum to access other information about that data item\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## The `range()` Function\n", + "\n", + "The `range()` function creates a range of values and returns a list-like structure that can be used for iterating over these values. The function can be called with one, two, or three integer arguments:\n", + "\n", + "### `range()` with one argument (end value)\n", + "\n", + "When called with one argument the returned values start at 0 and go up to **but do not include** the argument value.\n", + "\n", + "```python\n", + "range(10)\n", + "```\n", + "```\n", + "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]\n", + "```\n", + "\n", + "### `range()` with two arguments (start and end values)\n", + "\n", + "When called with two arguments the returned values start at the first argument and go up to **but do not include** the second argument.\n", + "\n", + "```python\n", + "range(3,9)\n", + "```\n", + "```\n", + "[3, 4, 5, 6, 7, 8]\n", + "```\n", + "\n", + "### `range()` with three arguments (start, end, and step size values)\n", + "\n", + "When called with three arguments the returned values start at the first argument, go up to **but do not include** the second argument and instead of increasing by one each time the values go up by the third argument.\n", + "\n", + "```python\n", + "range(4,16,5)\n", + "```\n", + "```\n", + "[4, 9, 14]\n", + "```\n", + "\n", + "**Note:** the returned value is a list-like structure. To convert it to an actual list you use the `list()` conversion function.\n", + "\n", + "### You Try It\n", + "\n", + "In the cell below try calling the `range()` function with one, two, and three arguments. Here are some interesting things to try:\n", + "\n", + "- one negative argument\n", + "- two arguments with the second smaller than the first\n", + "- Now add a third argument that is negative" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "list(range(10))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## The **list** data type\n", + "\n", + "We will be talking a lot more about this data type next week. A list is a data type that can store multiple values. You create a list by using square brackets [] surrounding a comma separated list of values.\n", + "\n", + "``` python\n", + "nums = [2, 12, -6]\n", + "fruits = ['Apple', 'Pear', 'Kiwi']\n", + "```\n", + "\n", + "Like the other data types, there is a function, `list()` that can be used to try and convert something into a list type.\n", + "\n", + "```python\n", + "letters = list(\"Frog\")\n", + "print(letters)\n", + "```\n", + "```\n", + "['F','r','o','g']\n", + "```" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## The `for` loop\n", + "\n", + "If you know in advance how many times you want a loop to run, you may want to use a `for` loop. These loops are commonly used with the `range()` function or with a list when you want to do the same thing to each item in the list.\n", + "\n", + "In the `for` loop below the variable `num` is created and is assigned the first value from the call to `range(10)`. Then the body of the `for` loop is executed, which prints out the value in the variable, and the loop runs again with `num` assigned the second value returned from the `range(10)` call. This continues for each value returned by `range(10)`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "for num in range(10):\n", + " print(num)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "for x in range(3, 7):\n", + " print(x,\"*\",x,\"=\",x*x)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It\n", + "\n", + "write a `for` loop that prints out the squares of the values from 1 to 10." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## TODO: print out the squares of the values from 1 to 10\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using `for` loops with Lists and Strings\n", + "\n", + "`for` loops are also commonly used with lists. We will talk more about lists later, but a list can hold more than a single value. To create a list, use square brackets with the values inside separated by commas.\n", + "\n", + "```python\n", + "fruits = ['Apple', 'Pear', 'Orange']\n", + "```\n", + "\n", + "The `for` loop will iterate over the values in the list.\n", + "\n", + "```python\n", + "fruits = ['Apple', 'Pear', 'Orange']\n", + "for fruit in fruits:\n", + " print(fruit)\n", + "```\n", + "\n", + "You can also iterate over the characters in a string.\n", + "\n", + "```python\n", + "name = \"Louis\"\n", + "for ch in name:\n", + " print(ch)\n", + "```\n", + "\n", + "Try modifying and running the code in the cell below:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "greetings = [\"Hola\", \"Hello\", \"Dag\", \"Kon'nichiwa\"]\n", + "for greeting in greetings:\n", + " print(greeting,\"to you\")\n", + "\n", + "name = \"Louis\"\n", + "for c in name:\n", + " print(c)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Using user-created modules\n", + "\n", + "For the remainder of the notebook we will be using a module (`project`) which loads a spreadsheet of information (`cs220_survey_data.csv`). **Make sure you have both the project module and the csv file in the directory with this notebook**, then run the cell below to import the project." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import project" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It\n", + "\n", + "From the labs and projects that you have already done, inspect the functions and what the functions do that were imported." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "## TODO: inspect the functions inside the project module\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "## TODO: inspect the project module's documentation for those functions\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## TODO: open the project.py file and the cs220_survey_data.csv file within Jupyter\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It -- How many students does the dataset have?\n" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "# TODO: Get the total # of responses using a function call\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It -- What is the age of the student at index 12?\n", + "\n", + "Note, when indexing into a dataset, the index value starts at 0 (i.e. the first entry in a dataset is index 0) and goes up from there." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## TODO: get the age of the student at index 12\n", + "id_12_age = ...\n", + "print(id_12_age)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## TODO: what is the type of the value stored in id_12_age?\n", + "print(type(id_12_age))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It -- What is the lecture number of the student at index 20?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## TODO: Get lecture number for student at index 20\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What is the lecture and section number of the student at index 0?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print(project.get_section(0))\n", + "print(project.get_lecture(0))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It -- What is the lecture and section number of the student at index 8?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## TODO: Get the lecture and section number of the student at index 8\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What is the sleep habit of the student at the last index?\n", + "\n", + "You can use negative indexing to count from the end of a list. So the index value `-1` would correspond to the last entry in a list. So there are two ways to get the sleep habit of the student at the last index. Try running the code in the two cells below and comparing the results." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "project.get_sleep_habit(934)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "project.get_sleep_habit(-1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It\n", + "**What is the sleep habit of the second-to-last student? Use two methods to get your answer.**" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## TODO: method 1\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## TODO: method 2\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### How many students in the current section are in the dataset? \n", + "\n", + "Follow along as we write code to answer this question. Here is the structure of the code:\n", + "\n", + "- initialize count to None or 0 (in case there are no students in that section)\n", + "- use `for` loop to iterate over the dataset:\n", + " - `count` function gives you total number of students\n", + " - use `range` built-in function to generate sequence of integers from `0` to `count - 1`\n", + "- use `get_lecture` to retrieve lecture column value\n", + "- use `if` condition, to determine whether current student is part of the `lecture`\n", + " - True - test for None - this will be the first student in the section\n", + " - increment count" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What is the age of the oldest student in current lecture?\n", + "\n", + "Follow along as we write code to answer this question. Here is the structure of the code:\n", + "\n", + "- use None initialization for age tracking variable\n", + "- use `for` loop to iterate over the dataset just like last problem\n", + "- use `get_age` to retrieve age\n", + " - if: age is `\"\"` (empty), move on to next student using `continue`\n", + " - make sure to typecast age return value to an integer\n", + "- use `get_lecture` to retrieve lecture column value\n", + "- use `if` condition, to determine whether current student is part of `LEC00X`\n", + " - use `if` condition to determine whether current student's age is greater than previously known max age\n", + " - `True` evaluation: replace previously known max age with current age\n", + " - `False` evaluation: nothing to do" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It\n", + "Write code to answer the question: **What is the age of the youngest student in the current lecture?**" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "\n", + "min_age = None\n", + "\n", + "## TODO: Your code here\n", + "\n", + "print(min_age)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What primary major is the youngest student in current lecture planning to declare?\n", + "- now, we need to find some other detail about the youngest student\n", + "- often, you'll have to keep track of ID of the max or min, so that you can retrive other details about that data entry\n", + "- use tracking variables" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Considering current lecture students, what is the age of the first student residing at zip code 53715?\n", + "- HINT: `break`" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "search_age = None\n", + "\n", + "## Write your code here\n", + "\n", + "print(search_age)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What song is alphabetically last in the data set?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Self Practice\n", + "\n", + "Try writing code to answer all of the following questions" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### How many current lecture students are runners? " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### How many current lecture students are procrastinators? " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### How many current lecture students own or have owned a pet?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### How many current lecture students like pineapple on their pizza?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What sleep habit does the youngest student in current lecture have?\n", + "- try to solve this from scratch, instead of copy-pasting code to find mimimum age" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What sleep habit does the oldest student in current lecture have?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What is the age of the youngest student residing in zip code 53706?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Considering current lecture students, is the first student with age 18 a runner?" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Summary\n", + "\n", + "You should be able to use the `range()` function, use `for` loops to iterate over ranges and the **list** data type, and you should be able to use **user-created modules**, exploring the functions and the documentation for those functions to explore a data set." + ] + } + ], + "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/12_Iteration_Practice/Lec_12_Iteration_Practice_Solution.ipynb b/s25/Louis_Lecture_Notes/12_Iteration_Practice/Lec_12_Iteration_Practice_Solution.ipynb new file mode 100644 index 0000000..a35f4cd --- /dev/null +++ b/s25/Louis_Lecture_Notes/12_Iteration_Practice/Lec_12_Iteration_Practice_Solution.ipynb @@ -0,0 +1,1336 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Warmup" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----\n", + "----\n", + "--X-\n", + "----\n", + "----------\n", + "----------\n", + "--X-------\n", + "----------\n", + "----------\n", + "----------\n", + "----------\n", + "----------\n", + "----------\n", + "----------\n", + "#X##\n", + "####\n", + "####\n", + "####\n", + "####\n", + "####\n", + "####\n", + "........\n", + "........\n", + "........\n", + "......X.\n", + "........\n" + ] + } + ], + "source": [ + "# Warmup 1: Complete the code to print a treasure map where an X is placed \n", + "# treasure_row, treasure_col (starting from 0)\n", + "def print_treasure_map(symbol='-', height=4, width=4, treasure_row=2, treasure_col=2):\n", + " i = 0\n", + " while i < height:\n", + " j = 0\n", + " while j < width:\n", + " if i == treasure_row and j == treasure_col:\n", + " print('X', end=\"\")\n", + " else:\n", + " print(symbol, end=\"\")\n", + " j += 1\n", + " print()\n", + " i += 1\n", + " \n", + "print_treasure_map()\n", + "print_treasure_map(width=10, height=10)\n", + "print_treasure_map('#', 7, 4, treasure_row=0, treasure_col=1)\n", + "print_treasure_map('.', 5, 8, 3, 6)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "************\n", + "* \n", + "************\n", + " *\n", + "************\n", + "* \n", + "************\n" + ] + } + ], + "source": [ + "# Warmup 2: Print the snake\n", + "\n", + "# ************\n", + "# *\n", + "# ************\n", + "# *\n", + "# ************\n", + "# *\n", + "# ************\n", + "\n", + "num_rows = 7\n", + "num_cols = 12\n", + "for row_idx in range(num_rows):\n", + " if row_idx%2 == 0:\n", + " print(num_cols*\"*\")\n", + " elif row_idx%4 == 1:\n", + " print(\"*\"+(num_cols-1)*\" \")\n", + " elif row_idx%4 == 3:\n", + " print(((num_cols-1)*\" \")+\"*\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Reminder\n", + "\n", + "You should be familiar with using\n", + "- `while` loops\n", + "- 'continue' and 'break' statements within loops\n", + "- nested loops\n", + "\n", + "## Midterm 1: Wednesday\n", + "- [The best way to study for the exam!!!](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-lecture-material/-/tree/main/s24/old_exams)\n", + "- Remember: one page note sheet (both sides, written or printed) - we keep the notesheet\n", + "- Number 2 pencil\n", + "- Wisc Card\n", + "- Arrive 15 minutes early to scan in\n", + "- 30 Multiple choice questions - 90 minutes" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Iteration Practice\n", + "\n", + "## Readings\n", + "\n", + "- [Python for Everybody, 6.5 - end](https://runestone.academy/ns/books/published/py4e-int/iterations/toctree.html)\n", + "\n", + "## Learning Objectives\n", + "\n", + "After this lecture you will be able to...\n", + "- Use the `range()` function\n", + "- Understand the **list** data type\n", + "- Iterate using `for x in range()` over lists and strings\n", + "- Iterate through a dataset using `for idx in range(project.count())`\n", + "- Compute the frequency of data that meets a certain criteria\n", + "- Find the maximum or minimum value of a numeric column in a dataset\n", + "- Use break and continue in for loops when processing a dataset\n", + "- Handle missing numeric values when computing a maximum/minimum\n", + "- Use the index of a maximum or minimum to access other information about that data item\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## The `range()` Function\n", + "\n", + "The `range()` function creates a range of values and returns a list-like structure that can be used for iterating over these values. The function can be called with one, two, or three integer arguments:\n", + "\n", + "### `range()` with one argument (end value)\n", + "\n", + "When called with one argument the returned values start at 0 and go up to **but do not include** the argument value.\n", + "\n", + "```python\n", + "range(10)\n", + "```\n", + "```\n", + "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]\n", + "```\n", + "\n", + "### `range()` with two arguments (start and end values)\n", + "\n", + "When called with two arguments the returned values start at the first argument and go up to **but do not include** the second argument.\n", + "\n", + "```python\n", + "range(3,9)\n", + "```\n", + "```\n", + "[3, 4, 5, 6, 7, 8]\n", + "```\n", + "\n", + "### `range()` with three arguments (start, end, and step size values)\n", + "\n", + "When called with three arguments the returned values start at the first argument, go up to **but do not include** the second argument and instead of increasing by one each time the values go up by the third argument.\n", + "\n", + "```python\n", + "range(4,16,5)\n", + "```\n", + "```\n", + "[4, 9, 14]\n", + "```\n", + "\n", + "**Note:** the returned value is a list-like structure. To convert it to an actual list you use the `list()` conversion function.\n", + "\n", + "### You Try It\n", + "\n", + "In the cell below try calling the `range()` function with one, two, and three arguments. Here are some interesting things to try:\n", + "\n", + "- one negative argument\n", + "- two arguments with the second smaller than the first\n", + "- Now add a third argument that is negative" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[10, 9, 8, 7, 6]" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list(range(10,5,-1))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## The **list** data type\n", + "\n", + "We will be talking a lot more about this data type next week. A list is a data type that can store multiple values. You create a list by using square brackets [] surrounding a comma separated list of values.\n", + "\n", + "``` python\n", + "nums = [2, 12, -6]\n", + "fruits = ['Apple', 'Pear', 'Kiwi']\n", + "```\n", + "\n", + "Like the other data types, there is a function, `list()` that can be used to try and convert something into a list type.\n", + "\n", + "```python\n", + "letters = list(\"Frog\")\n", + "print(letters)\n", + "```\n", + "```\n", + "['F','r','o','g']\n", + "```" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## The `for` loop\n", + "\n", + "If you know in advance how many times you want a loop to run, you may want to use a `for` loop. These loops are commonly used with the `range()` function or with a list when you want to do the same thing to each item in the list.\n", + "\n", + "In the `for` loop below the variable `num` is created and is assigned the first value from the call to `range(10)`. Then the body of the `for` loop is executed, which prints out the value in the variable, and the loop runs again with `num` assigned the second value returned from the `range(10)` call. This continues for each value returned by `range(10)`." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "1\n", + "2\n", + "3\n", + "4\n", + "5\n", + "6\n", + "7\n", + "8\n", + "9\n" + ] + } + ], + "source": [ + "for num in range(10):\n", + " print(num)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3 * 3 = 9\n", + "4 * 4 = 16\n", + "5 * 5 = 25\n", + "6 * 6 = 36\n" + ] + } + ], + "source": [ + "for x in range(3, 7):\n", + " print(x,\"*\",x,\"=\",x*x)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It\n", + "\n", + "write a `for` loop that prints out the squares of the values from 1 to 10." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "4\n", + "9\n", + "16\n", + "25\n", + "36\n", + "49\n", + "64\n", + "81\n", + "100\n" + ] + } + ], + "source": [ + "## TODO: print out the squares of the values from 1 to 10\n", + "for x in range(1,11):\n", + " print(x*x)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using `for` loops with Lists and Strings\n", + "\n", + "`for` loops are also commonly used with lists. We will talk more about lists later, but a list can hold more than a single value. To create a list, use square brackets with the values inside separated by commas.\n", + "\n", + "```python\n", + "fruits = ['Apple', 'Pear', 'Orange']\n", + "```\n", + "\n", + "The `for` loop will iterate over the values in the list.\n", + "\n", + "```python\n", + "fruits = ['Apple', 'Pear', 'Orange']\n", + "for fruit in fruits:\n", + " print(fruit)\n", + "```\n", + "\n", + "You can also iterate over the characters in a string.\n", + "\n", + "```python\n", + "name = \"Louis\"\n", + "for ch in name:\n", + " print(ch)\n", + "```\n", + "\n", + "Try modifying and running the code in the cell below:" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hola to you\n", + "Hello to you\n", + "Dag to you\n", + "Kon'nichiwa to you\n", + "L\n", + "o\n", + "u\n", + "i\n", + "s\n" + ] + } + ], + "source": [ + "greetings = [\"Hola\", \"Hello\", \"Dag\", \"Kon'nichiwa\"]\n", + "for greeting in greetings:\n", + " print(greeting,\"to you\")\n", + "\n", + "name = \"Louis\"\n", + "for c in name:\n", + " print(c)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Using user-created modules\n", + "\n", + "For the remainder of the notebook we will be using a module (`project`) which loads a spreadsheet of information (`cs220_survey_data.csv`). **Make sure you have both the project module and the csv file in the directory with this notebook**, then run the cell below to import the project." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "import project" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It\n", + "\n", + "From the labs and projects that you have already done, inspect the functions and what the functions do that were imported." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Help on module project:\n", + "\n", + "NAME\n", + " project\n", + "\n", + "FUNCTIONS\n", + " __init__()\n", + " \n", + " count()\n", + " This function will return the number of records in the dataset\n", + " \n", + " get_age(idx)\n", + " get_age(idx) returns the age of the student in row idx\n", + " \n", + " get_cats_or_dogs(idx)\n", + " get_cats_or_dogs(idx) returns whether student in row idx likes cats or dogs\n", + " \n", + " get_latitude(idx)\n", + " get_zip_code(idx) returns the favorite latitude of the student in row idx\n", + " \n", + " get_lecture(idx)\n", + " get_lecture(idx) returns the lecture of the student in row idx\n", + " \n", + " get_longitude(idx)\n", + " get_zip_code(idx) returns the favorite longitude of the student in row idx\n", + " \n", + " get_other_majors(idx)\n", + " get_other_majors(idx) returns the other major of the student in row idx\n", + " \n", + " get_pizza_topping(idx)\n", + " get_pizza_topping(idx) returns the preferred pizza toppings of the student in row idx\n", + " \n", + " get_primary_major(idx)\n", + " get_primary_major(idx) returns the primary major of the student in row idx\n", + " \n", + " get_procrastinator(idx)\n", + " get_procrastinator(idx) returns whether student in row idx is a procrastinator\n", + " \n", + " get_runner(idx)\n", + " get_runner(idx) returns whether student in row idx is a runner\n", + " \n", + " get_secondary_majors(idx)\n", + " get_other_majors(idx) returns the secondary majors of the student in row idx\n", + " \n", + " get_section(idx)\n", + " get_lecture(idx) returns the section of the student in row idx\n", + " \n", + " get_sleep_habit(idx)\n", + " get_sleep_habit(idx) returns the sleep habit of the student in row idx\n", + " \n", + " get_song(idx)\n", + " get_procrastinator(idx) returns the student in row idx favorite song\n", + " \n", + " get_zip_code(idx)\n", + " get_zip_code(idx) returns the residential zip code of the student in row idx\n", + "\n", + "DATA\n", + " __student__ = [{'Age': '19', 'Cats or Dogs': 'dog', 'Data Science Majo...\n", + "\n", + "FILE\n", + " /home/oliphant/OneDrive/courses/cs220/repositories/cs220-lecture-material/f24/Louis_Lecture_Notes/12_Iteration_Practice/project.py\n", + "\n", + "\n" + ] + } + ], + "source": [ + "## TODO: inspect the functions inside the project module\n", + "help(project)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Help on function get_song in module project:\n", + "\n", + "get_song(idx)\n", + " get_procrastinator(idx) returns the student in row idx favorite song\n", + "\n" + ] + } + ], + "source": [ + "## TODO: inspect the project module's documentation for those functions\n", + "help(project.get_song)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "## TODO: open the project.py file and the cs220_survey_data.csv file within Jupyter\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It -- How many students does the dataset have?\n" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "935\n" + ] + } + ], + "source": [ + "# TODO: Get the total # of responses using a function call\n", + "print(project.count())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It -- What is the age of the student at index 12?\n", + "\n", + "Note, when indexing into a dataset, the index value starts at 0 (i.e. the first entry in a dataset is index 0) and goes up from there." + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "19\n" + ] + } + ], + "source": [ + "## TODO: get the age of the student at index 12\n", + "id_12_age = project.get_age(12)\n", + "print(id_12_age)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<class 'str'>\n" + ] + } + ], + "source": [ + "## TODO: what is the type of the value stored in id_12_age?\n", + "print(type(id_12_age))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It -- What is the lecture number of the student at index 20?" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "LEC002\n" + ] + } + ], + "source": [ + "## TODO: Get lecture number for student at index 20\n", + "print(project.get_lecture(20))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What is the lecture and section number of the student at index 0?" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "COMP SCI 220:LEC004, COMP SCI 220:LAB344\n", + "LEC004\n" + ] + } + ], + "source": [ + "print(project.get_section(0))\n", + "print(project.get_lecture(0))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It -- What is the lecture and section number of the student at index 8?" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "COMP SCI 220:LAB344, COMP SCI 220:LEC004\n", + "LEC003\n" + ] + } + ], + "source": [ + "## TODO: Get the lecture and section number of the student at index 8\n", + "print(project.get_section(8))\n", + "print(project.get_lecture(8))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What is the sleep habit of the student at the last index?\n", + "\n", + "You can use negative indexing to count from the end of a list. So the index value `-1` would correspond to the last entry in a list. So there are two ways to get the sleep habit of the student at the last index. Try running the code in the two cells below and comparing the results." + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'night owl'" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "project.get_sleep_habit(934)" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'night owl'" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "project.get_sleep_habit(-1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It\n", + "**What is the sleep habit of the second-to-last student? Use two methods to get your answer.**" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'early bird'" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "## TODO: method 1\n", + "project.get_sleep_habit(933)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'early bird'" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "## TODO: method 2\n", + "project.get_sleep_habit(-2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### How many students in the current section are in the dataset? \n", + "\n", + "Follow along as we write code to answer this question. Here is the structure of the code:\n", + "\n", + "- initialize count to None or 0 (in case there are no students in that section)\n", + "- use `for` loop to iterate over the dataset:\n", + " - `count` function gives you total number of students\n", + " - use `range` built-in function to generate sequence of integers from `0` to `count - 1`\n", + "- use `get_lecture` to retrieve lecture column value\n", + "- use `if` condition, to determine whether current student is part of the `lecture`\n", + " - True - test for None - this will be the first student in the section\n", + " - increment count" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "245\n" + ] + } + ], + "source": [ + "count = 0\n", + "for idx in range(project.count()):\n", + " lec = project.get_lecture(idx)\n", + " if lec == \"LEC003\":\n", + " count+=1\n", + "print(count)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What is the age of the oldest student in current lecture?\n", + "\n", + "Follow along as we write code to answer this question. Here is the structure of the code:\n", + "\n", + "- use None initialization for age tracking variable\n", + "- use `for` loop to iterate over the dataset just like last problem\n", + "- use `get_age` to retrieve age\n", + " - if: age is `\"\"` (empty), move on to next student using `continue`\n", + " - make sure to typecast age return value to an integer\n", + "- use `get_lecture` to retrieve lecture column value\n", + "- use `if` condition, to determine whether current student is part of `LEC00X`\n", + " - use `if` condition to determine whether current student's age is greater than previously known max age\n", + " - `True` evaluation: replace previously known max age with current age\n", + " - `False` evaluation: nothing to do" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "38\n" + ] + } + ], + "source": [ + "age = None\n", + "for idx in range(project.count()):\n", + " cur_age = project.get_age(idx)\n", + " if cur_age == \"\":\n", + " continue\n", + " if \".\" in cur_age: ## need to either through out floating point values or use float() type\n", + " continue\n", + " cur_age = int(cur_age)\n", + " if project.get_lecture(idx) != \"LEC003\":\n", + " continue\n", + " if age == None or cur_age > age:\n", + " age = cur_age\n", + "print(age)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### You Try It\n", + "Write code to answer the question: **What is the age of the youngest student in the current lecture?**" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17\n" + ] + } + ], + "source": [ + "\n", + "min_age = None\n", + "\n", + "for idx in range(project.count()):\n", + " cur_age = project.get_age(idx)\n", + " if cur_age == \"\":\n", + " continue\n", + " if \".\" in cur_age: ## need to either through out floating point values or use float() type\n", + " continue\n", + " cur_age = int(cur_age)\n", + " if project.get_lecture(idx) != \"LEC003\":\n", + " continue\n", + " if min_age == None or cur_age < min_age:\n", + " min_age = cur_age\n", + "print(min_age)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What primary major is the youngest student in current lecture planning to declare?\n", + "- now, we need to find some other detail about the youngest student\n", + "- often, you'll have to keep track of ID of the max or min, so that you can retrive other details about that data entry\n", + "- use tracking variables" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The student with the minimum age in the current lecture is 17\n", + "They are planninng to declare Data Science\n" + ] + } + ], + "source": [ + "\n", + "min_age = None\n", + "min_idx = None\n", + "\n", + "for idx in range(project.count()):\n", + " cur_age = project.get_age(idx)\n", + " if cur_age == \"\":\n", + " continue\n", + " if \".\" in cur_age: ## need to either through out floating point values or use float() type\n", + " continue\n", + " cur_age = int(cur_age)\n", + " if project.get_lecture(idx) != \"LEC003\":\n", + " continue\n", + " if min_age == None or cur_age < min_age:\n", + " min_age = cur_age\n", + " min_idx = idx\n", + "\n", + "print(\"The student with the minimum age in the current lecture is\",min_age)\n", + "print(\"They are planninng to declare\",project.get_primary_major(min_idx))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Considering current lecture students, what is the age of the first student residing at zip code 53715?\n", + "- HINT: `break`" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "19\n" + ] + } + ], + "source": [ + "search_age = None\n", + "\n", + "for idx in range(project.count()):\n", + " cur_age = project.get_age(idx)\n", + " cur_zip = project.get_zip_code(idx)\n", + " if project.get_lecture(idx) != \"LEC003\":\n", + " continue\n", + " if cur_zip == \"53715\":\n", + " search_age = cur_age\n", + " break\n", + "\n", + "print(search_age)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What song is alphabetically last in the data set?" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "路过人间-- Yisa Yu\n" + ] + } + ], + "source": [ + "last_song = None\n", + "\n", + "for idx in range(project.count()):\n", + " cur_song = project.get_song(idx)\n", + " if last_song == None or cur_song > last_song:\n", + " last_song = cur_song\n", + "print(last_song)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Self Practice\n", + "\n", + "Try writing code to answer all of the following questions" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### How many current lecture students are runners? " + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "99\n" + ] + } + ], + "source": [ + "runners = 0\n", + "for idx in range(project.count()):\n", + " if project.get_lecture(idx) != \"LEC003\":\n", + " continue\n", + " if project.get_runner(idx) == \"Yes\":\n", + " runners +=1\n", + "print(runners)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### How many current lecture students are procrastinators? " + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "130\n" + ] + } + ], + "source": [ + "procrastinators = 0\n", + "for idx in range(project.count()):\n", + " if project.get_lecture(idx) != \"LEC003\":\n", + " continue\n", + " if project.get_procrastinator(idx) == \"Yes\":\n", + " procrastinators +=1\n", + "print(procrastinators)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### How many current lecture students own or have owned a pet?" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "234\n" + ] + } + ], + "source": [ + "own_pet = 0\n", + "for idx in range(project.count()):\n", + " if project.get_lecture(idx) != \"LEC003\":\n", + " continue\n", + " pet = project.get_cats_or_dogs(idx)\n", + " if pet != \"neither\":\n", + " own_pet +=1\n", + "print(own_pet)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### How many current lecture students like pineapple on their pizza?" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "26\n" + ] + } + ], + "source": [ + "like_pineapple = 0\n", + "for idx in range(project.count()):\n", + " if project.get_lecture(idx) != \"LEC003\":\n", + " continue\n", + " pineapple = project.get_pizza_topping(idx)\n", + " if pineapple == \"pineapple\":\n", + " like_pineapple +=1\n", + "print(like_pineapple)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What sleep habit does the youngest student in current lecture have?\n", + "- try to solve this from scratch, instead of copy-pasting code to find mimimum age" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "early bird\n" + ] + } + ], + "source": [ + "young_idx = None\n", + "young_age = None\n", + "for idx in range(project.count()):\n", + " if project.get_lecture(idx) != \"LEC003\":\n", + " continue\n", + " age = project.get_age(idx)\n", + " if age == \"\" or \".\" in age:\n", + " continue\n", + " age = int(age)\n", + " if young_age == None or age < young_age:\n", + " young_age = age\n", + " young_idx = idx\n", + "print(project.get_sleep_habit(young_idx))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What sleep habit does the oldest student in current lecture have?" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "night owl\n" + ] + } + ], + "source": [ + "old_idx = None\n", + "old_age = None\n", + "for idx in range(project.count()):\n", + " if project.get_lecture(idx) != \"LEC003\":\n", + " continue\n", + " age = project.get_age(idx)\n", + " if age == \"\" or \".\" in age:\n", + " continue\n", + " age = int(age)\n", + " if old_age == None or age > old_age:\n", + " old_age = age\n", + " old_idx = idx\n", + "print(project.get_sleep_habit(old_idx))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### What is the age of the youngest student residing in zip code 53706?" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17\n" + ] + } + ], + "source": [ + "young_age = None\n", + "for idx in range(project.count()):\n", + " if project.get_lecture(idx) != \"LEC003\":\n", + " continue\n", + " if project.get_zip_code(idx) != \"53706\":\n", + " continue\n", + " age = project.get_age(idx)\n", + " if age == \"\" or \".\" in age:\n", + " continue\n", + " age = int(age)\n", + " if young_age == None or age < young_age:\n", + " young_age = age\n", + "print(young_age)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Considering current lecture students, is the first student with age 18 a runner?" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "No\n" + ] + } + ], + "source": [ + "for idx in range(project.count()):\n", + " if project.get_lecture(idx) != \"LEC003\":\n", + " continue\n", + " if project.get_age(idx) != \"18\":\n", + " continue\n", + " print(project.get_runner(idx))\n", + " break" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Summary\n", + "\n", + "You should be able to use the `range()` function, use `for` loops to iterate over ranges and the **list** data type, and you should be able to use **user-created modules**, exploring the functions and the documentation for those functions to explore a data set." + ] + } + ], + "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/12_Iteration_Practice/cs220_survey_data.csv b/s25/Louis_Lecture_Notes/12_Iteration_Practice/cs220_survey_data.csv new file mode 100644 index 0000000..5a0eb3c --- /dev/null +++ b/s25/Louis_Lecture_Notes/12_Iteration_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 diff --git a/s25/Louis_Lecture_Notes/12_Iteration_Practice/project.py b/s25/Louis_Lecture_Notes/12_Iteration_Practice/project.py new file mode 100644 index 0000000..84a195e --- /dev/null +++ b/s25/Louis_Lecture_Notes/12_Iteration_Practice/project.py @@ -0,0 +1,84 @@ +__student__ = [] + + +def __init__(): + import csv + """This function will read in the csv_file and store it in a list of dictionaries""" + __student__.clear() + with open('cs220_survey_data.csv', mode='r', encoding='utf-8') as csv_file: + csv_reader = csv.DictReader(csv_file) + for row in csv_reader: + __student__.append(row) + +def count(): + """This function will return the number of records in the dataset""" + return len(__student__) + + +def get_lecture(idx): + """get_lecture(idx) returns the lecture of the student in row idx""" + return __student__[int(idx)]['Lecture'] + + +def get_section(idx): + """get_lecture(idx) returns the section of the student in row idx""" + return __student__[int(idx)]['Section'] + + +def get_age(idx): + """get_age(idx) returns the age of the student in row idx""" + return __student__[int(idx)]['Age'] + + +def get_primary_major(idx): + """get_primary_major(idx) returns the primary major of the student in row idx""" + return __student__[int(idx)]['Primary Major'] + +def get_other_majors(idx): + """get_other_majors(idx) returns the other major of the student in row idx""" + return __student__[int(idx)]['Other Majors'] + +def get_secondary_majors(idx): + """get_other_majors(idx) returns the secondary majors of the student in row idx""" + return __student__[int(idx)]['Secondary Majors'] + +def get_zip_code(idx): + """get_zip_code(idx) returns the residential zip code of the student in row idx""" + return __student__[int(idx)]['Zip Code'] + +def get_latitude(idx): + """get_zip_code(idx) returns the favorite latitude of the student in row idx""" + return __student__[int(idx)]['Latitude'] + +def get_longitude(idx): + """get_zip_code(idx) returns the favorite longitude of the student in row idx""" + return __student__[int(idx)]['Longitude'] + + +def get_pizza_topping(idx): + """get_pizza_topping(idx) returns the preferred pizza toppings of the student in row idx""" + return __student__[int(idx)]['Pizza Topping'] + +def get_cats_or_dogs(idx): + """get_cats_or_dogs(idx) returns whether student in row idx likes cats or dogs""" + return __student__[int(idx)]['Cats or Dogs'] + +def get_runner(idx): + """get_runner(idx) returns whether student in row idx is a runner""" + return __student__[int(idx)]['Runner'] + +def get_sleep_habit(idx): + """get_sleep_habit(idx) returns the sleep habit of the student in row idx""" + return __student__[int(idx)]['Sleep Habit'] + +def get_procrastinator(idx): + """get_procrastinator(idx) returns whether student in row idx is a procrastinator""" + return __student__[int(idx)]['Procrastinator'] + + +def get_song(idx): + """get_procrastinator(idx) returns the student in row idx favorite song""" + return __student__[int(idx)]['Song'] + + +__init__() -- GitLab