Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • HLI877/cs220-lecture-material
  • DANDAPANTULA/cs220-lecture-material
  • cdis/cs/courses/cs220/cs220-lecture-material
  • GIMOTEA/cs220-lecture-material
  • TWMILLER4/cs220-lecture-material
  • GU227/cs220-lecture-material
  • ABADAL/cs220-lecture-material
  • CMILTON3/cs220-lecture-material
  • BDONG39/cs220-lecture-material
  • JSANDOVAL6/cs220-lecture-material
  • JSABHARWAL2/cs220-lecture-material
  • GFREDERICKS/cs220-lecture-material
  • LMSUN/cs220-lecture-material
  • RBHALE/cs220-lecture-material
  • MILNARIK/cs220-lecture-material
  • SUTTI/cs220-lecture-material
  • NMISHRA4/cs220-lecture-material
  • HXIA36/cs220-lecture-material
  • DEPPELER/cs220-lecture-material
  • KIM2245/cs220-lecture-material
  • SKLEPFER/cs220-lecture-material
  • BANDIERA/cs220-lecture-material
  • JKILPS/cs220-lecture-material
  • SOERGEL/cs220-lecture-material
  • DBAUTISTA2/cs220-lecture-material
  • VLEFTWICH/cs220-lecture-material
  • MOU5/cs220-lecture-material
  • ALJACOBSON3/cs220-lecture-material
  • RCHOUDHARY5/cs220-lecture-material
  • MGERSCH/cs220-lecture-material
  • EKANDERSON8/cs220-lecture-material
  • ZHANG2752/cs220-lecture-material
  • VSANTAMARIA/cs220-lecture-material
  • VILBRANDT/cs220-lecture-material
  • ELADD2/cs220-lecture-material
  • YLIU2328/cs220-lecture-material
  • LMEASNER/cs220-lecture-material
  • ATANG28/cs220-lecture-material
  • AKSCHELLIN/cs220-lecture-material
  • OMBUSH/cs220-lecture-material
  • MJDAVID/cs220-lecture-material
  • AKHATRY/cs220-lecture-material
  • CZHUANG6/cs220-lecture-material
  • JPDEYOUNG/cs220-lecture-material
  • SDREES/cs220-lecture-material
  • CLCAMPBELL3/cs220-lecture-material
  • CJCAMPOS/cs220-lecture-material
  • AMARAN/cs220-lecture-material
  • rmflynn2/cs220-lecture-material
  • zhang2855/cs220-lecture-material
  • imanzoor/cs220-lecture-material
  • TOUSEEF/cs220-lecture-material
  • qchen445/cs220-lecture-material
  • nareed2/cs220-lecture-material
  • younkman/cs220-lecture-material
  • kli382/cs220-lecture-material
  • bsaulnier/cs220-lecture-material
  • isatrom/cs220-lecture-material
  • kgoodrum/cs220-lecture-material
  • mransom2/cs220-lecture-material
  • ahstevens/cs220-lecture-material
  • JRADUECHEL/cs220-lecture-material
  • mpcyr/cs220-lecture-material
  • wmeyrose/cs220-lecture-material
  • mmaltman/cs220-lecture-material
  • lsonntag/cs220-lecture-material
  • ghgallant/cs220-lecture-material
  • agkaiser2/cs220-lecture-material
  • rlgerhardt/cs220-lecture-material
  • chen2552/cs220-lecture-material
  • mickiewicz/cs220-lecture-material
  • cbarnish/cs220-lecture-material
  • alampson/cs220-lecture-material
  • mjwendt4/cs220-lecture-material
  • somsakhein/cs220-lecture-material
  • heppenibanez/cs220-lecture-material
  • szhang926/cs220-lecture-material
  • wewatson/cs220-lecture-material
  • jho34/cs220-lecture-material
  • lmedin/cs220-lecture-material
  • hjiang373/cs220-lecture-material
  • hfry2/cs220-lecture-material
  • ajroberts7/cs220-lecture-material
  • mcerhardt/cs220-lecture-material
  • njtomaszewsk/cs220-lecture-material
  • rwang728/cs220-lecture-material
  • jhansonflore/cs220-lecture-material
  • msajja/cs220-lecture-material
  • bjornson2/cs220-lecture-material
  • ccmclaren/cs220-lecture-material
  • armstrongbag/cs220-lecture-material
  • eloe2/cs220-lecture-material
92 results
Show changes
Showing
with 27397 additions and 0 deletions
%% Cell type:code id: tags:
``` python
# Warmup 0: Write a program that manages a grocery list!
# A: Add an item. Ask the user to add an item to their list.
# D: Delete an item. Ask the user what to remove from their list.
# P: Print the grocery list.
# Q: Quit.
my_groceries = []
while True:
choice = input("What do you want to do? (A, D, P, Q): ")
# TODO Improve handling of errors (e.g. user tries to remove a food that doesn't exist)
choice = choice.upper()
if choice == 'A':
add_food = input("What do you want to add? ")
my_groceries.append(add_food)
elif choice == 'D':
rem_food = input("What do you want to remove? ")
while not rem_food in my_groceries:
print('{} is not in your grocery list!'.format(rem_food))
rem_food = input("What do you want to remove? ")
my_groceries.remove(rem_food)
elif choice == 'P':
print("Your groceries are ", my_groceries)
elif choice == 'Q':
break
else:
print('I don\'t understand. Please try again!')
print('Thanks for shopping!')
```
%% Cell type:code id: tags:
``` python
# Warmup #1: Profanity Filter
def profanity_filter(sentence, bad_words):
''' replaces all instances of any word in bad_words with \n
a word with the first letter and then @s and the same length'''
sentence_split = sentence.split(" ")
cleaned_sentence = []
for word in sentence_split:
# TODO We need to improve this! Extra practice!
if word in bad_words:
cleaned_word = word[0] + "@" * (len(word) - 1)
cleaned_sentence.append(cleaned_word)
else:
cleaned_sentence.append(word)
# all done cleaning, now join and return
return " ".join(cleaned_sentence)
bad_word_list = ["darn", "heck", "crud", "exam"]
print(profanity_filter("I unplugged that darn Alexa", bad_word_list))
print(profanity_filter("What the heck was my boss thinking?", bad_word_list))
print(profanity_filter("He is full of crud?", bad_word_list)) # TODO On your own, how would you handle this?
```
%% Cell type:code id: tags:
``` python
# Warmup #2: Take a look at these list methods
# https://www.w3schools.com/python/python_ref_list.asp
dairy = ["milk", "ice cream", "cheese", "yogurt" ]
#use the .index() method to get the index of "ice cream"
dairy.index("ICE cream".lower())
```
%% Cell type:code id: tags:
``` python
# Warmup #3: Because a list is a sequence, we can use the 'in' operator
food_shelf = ["peanut butter", "milk", "bread", "cheese", "YOGURT"]
for item in food_shelf:
if item.lower() in dairy:
print(item, "is dairy")
else:
print(item, "is not dairy")
```
%% Cell type:markdown id: tags:
# CS220: Lecture 15
## Learning Objectives
After this lecture you will be able to...
- Open an Excel file and export it to a Comma Separated Value file.
- Open a CSV file in TextEditor/Jupyter and connect the elements of the CSV file to the rows and columns in the spreadsheet.
- Use pre-written Python code to read a CSV file into a list of lists.
- Write Python statements with double list indexing to access any element of a CSV file via a list of lists.
- Write code that answers questions about CSV data by writing for loops on lists of lists.
%% Cell type:markdown id: tags:
## Reading a CSV
%% Cell type:code id: tags:
``` python
# Now lets store the contents of the CSV file into Python lists
# copied from https://automatetheboringstuff.com/chapter14/
import csv
def process_csv(filename):
# open the file, its a text file utf-8
exampleFile = open(filename, encoding="utf-8")
# prepare it for reading as a CSV object
exampleReader = csv.reader(exampleFile)
# use the built-in list function to convert this into a list of lists
exampleData = list(exampleReader)
# close the file to tidy up our workspace
exampleFile.close()
# return the list of lists
return exampleData
```
%% Cell type:code id: tags:
``` python
# Call the process_csv function and store the list of lists in cs220_csv
cs220_csv = process_csv('cs220_survey_data.csv')
cs220_csv
```
%% Cell type:code id: tags:
``` python
# Store the header row into cs220_header
cs220_header = cs220_csv[0]
cs220_header
```
%% Cell type:code id: tags:
``` python
# Store all of the data rows into cs220_data
cs220_data = cs220_csv[1:]
cs220_data
```
%% Cell type:markdown id: tags:
## CSVs as a List of Lists
%% Cell type:code id: tags:
``` python
# Print out the lecture number of the 4th student...by hardcoding its row and column....
cs220_data[3][1]
```
%% Cell type:code id: tags:
``` python
# Print out the sleeping habit for the 2nd student...by hardcoding its row and column....
cs220_data[1][-3]
```
%% Cell type:code id: tags:
``` python
# Print out how many students completed the survey.
len(cs220_data)
```
%% Cell type:code id: tags:
``` python
# Print out every student's sleep habits and major
for i in range(len(cs220_data)):
current_sleep_habit = cs220_data[i][12]
current_major = cs220_data[i][3]
print(current_sleep_habit + '\t\t' + current_major)
```
%% Cell type:code id: tags:
``` python
# FIX: Print out every students' age in 10 years.
for i in range(len(cs220_data)):
current_age = cs220_data[i][2]
if current_age == "":
continue
current_age = int(current_age)
print(current_age + 10)
```
%% Cell type:markdown id: tags:
## It would be nice to have a helper function!
Let's introduce `cell`
%% Cell type:code id: tags:
``` python
# Remember creating cs220_header?
cs220_header
```
%% Cell type:code id: tags:
``` python
# Get the column index of "Pizza topping"
cs220_header.index("Pizza topping")
```
%% Cell type:code id: tags:
``` python
# We want to invoke something like...
# cell(24, "Pet owner")
# cell(63, "Zip Code")
def cell(row_idx, col_name):
col_idx = cs220_header.index(col_name) # get the index of col_name
val = cs220_data[row_idx][col_idx] # get the value of cs220_data at the specified cell
return val
```
%% Cell type:code id: tags:
``` python
# Print out the lecture number of the 4th student... using the cell function
cell(3, "Lecture")
```
%% Cell type:code id: tags:
``` python
# Print out the fav pizza topping of the 8th student... using the cell function
cell(7, "Pizza topping")
```
%% Cell type:code id: tags:
``` python
# Print out every student's sleep habits and major using the cell function
for i in range(len(cs220_data)):
current_sleep_habit = cell(i, "Sleep habit")
current_major = cell(i, "Primary major")
print(current_sleep_habit + '\t\t' + current_major)
```
%% Cell type:code id: tags:
``` python
# Print out every students' age in 10 years using the cell function
# ... that didn't really help us here!
for i in range(len(cs220_data)):
current_age = cell(i, "Age")
print(type(current_age))
if current_age != None:
print(current_age + 10)
```
%% Cell type:code id: tags:
``` python
# Improve the cell function so it returns the appropriate type.
# If there is nothing in the cell, return None
def cell(row_idx, col_name):
col_idx = cs220_header.index(col_name)
val = cs220_data[row_idx][col_idx]
if val == "":
return None
elif col_name == "Age":
return int(val)
else:
return val
# Yours to do... can you handle Zip Code, Latitude, and Longitude?
```
%% Cell type:code id: tags:
``` python
# Print out every students' age in 10 years using the cell function
# ... much better!
for i in range(len(cs220_data)):
current_age = cell(i, "Age")
if current_age != None:
print(current_age + 10)
```
%% Cell type:code id: tags:
``` python
# Get the average age of each lecture...
students_lec_001 = []
students_lec_002 = []
students_lec_003 = []
students_lec_004 = []
students_lec_005 = []
for i in range(len(cs220_data)):
current_lec = cell(i, "Lecture")
current_age = cell(i, "Age")
if current_age != None:
if current_lec == "LEC001":
students_lec_001.append(current_age)
elif current_lec == "LEC002":
students_lec_002.append(current_age)
elif current_lec == "LEC003":
students_lec_003.append(current_age)
elif current_lec == "LEC004":
students_lec_004.append(current_age)
elif current_lec == "LEC005":
students_lec_005.append(current_age)
print("Average age for {} is {}".format("LEC001", round(sum(students_lec_001) / len(students_lec_001), 2)))
print("Average age for {} is {}".format("LEC002", round(sum(students_lec_002) / len(students_lec_002), 2)))
print("Average age for {} is {}".format("LEC003", round(sum(students_lec_003) / len(students_lec_003), 2)))
print("Average age for {} is {}".format("LEC004", round(sum(students_lec_004) / len(students_lec_004), 2)))
print("Average age for {} is {}".format("LEC005", round(sum(students_lec_005) / len(students_lec_005), 2)))
```
%% Cell type:code id: tags:
``` python
# Get the average age of each lecture... With less hardcoding!
lectures_of_ages = [
[],
[],
[],
[],
[]
]
for i in range(len(cs220_data)):
current_lec = int(cell(i, "Lecture")[-1]) - 1 # Will be a number 0 - 4
current_age = cell(i, "Age")
if current_age != None:
lectures_of_ages[current_lec].append(current_age)
for i in range(len(lectures_of_ages)):
curr_lec = lectures_of_ages[i]
total_age = sum(curr_lec)
total_students = len(curr_lec)
print("Average age for {} is {}".format("LEC00" + str(i + 1), round(total_age / total_students, 2)))
```
%% Cell type:code id: tags:
``` python
# What are the unique ages for each lecture?
for i in range(len(lectures_of_ages)):
unique_ages = list(set(lectures_of_ages[i]))
print(sorted(unique_ages))
```
%% Cell type:markdown id: tags:
## You try!
%% Cell type:markdown id: tags:
Complete the challenges below. First try completing the problem directly using the list of lists (e.g. double indexing \[\]\[\]), then try using the `cell` function!
%% Cell type:code id: tags:
``` python
# Of all runners, how many are procrastinators? [][]
count_runners = 0
count_running_procrastinators = 0
for i in range(len(cs220_data)):
current_procrastinator = cs220_data[i][cs220_header.index('Procrastinator')]
current_runner = cs220_data[i][cs220_header.index('Runner')]
if current_runner == "Yes":
count_runners += 1
if current_procrastinator == "Yes":
count_running_procrastinators += 1
print('There are {} runners, of which {} are procrastinators.'.format(count_runners, count_running_procrastinators))
```
%% Cell type:code id: tags:
``` python
# Of all runners, how many are procrastinators? [][]
count_runners = 0
count_running_procrastinators = 0
for i in range(len(cs220_data)):
current_procrastinator = cell(i, 'Procrastinator')
current_runner = cell(i, 'Runner')
if current_runner == "Yes":
count_runners += 1
if current_procrastinator == "Yes":
count_running_procrastinators += 1
print('There are {} runners, of which {} are procrastinators.'.format(count_runners, count_running_procrastinators))
```
%% Cell type:code id: tags:
``` python
# What percentage of 18 to 20-year-olds have their major declared as "Other"? [][]
# Could alternatively have 2 count variables.
all_18_to_20 = []
all_18_to_20_and_other = []
for i in range(len(cs220_data)):
current_age = cs220_data[i][cs220_header.index('Age')]
current_major = cs220_data[i][cs220_header.index('Primary major')]
if current_age == "":
continue
current_age = int(current_age)
if 18 <= current_age <= 20:
all_18_to_20.append(i)
if current_major.startswith("Other"):
all_18_to_20_and_other.append(i)
(len(all_18_to_20_and_other) / len(all_18_to_20)) * 100
```
%% Cell type:code id: tags:
``` python
# What percentage of 18 to 20-year-olds have their major declared as "Other"? cell
# Could alternatively have 2 count variables.
all_18_to_20 = []
all_18_to_20_and_other = []
for i in range(len(cs220_data)):
current_age = cell(i, 'Age')
current_major = cell(i, 'Primary major')
if current_age == None:
continue
current_age = int(current_age)
if 18 <= current_age <= 20:
all_18_to_20.append(i)
if current_major.startswith("Other"):
all_18_to_20_and_other.append(i)
(len(all_18_to_20_and_other) / len(all_18_to_20)) * 100
```
%% Cell type:code id: tags:
``` python
# Does the oldest basil/spinach-loving Business major prefer cats, dogs, or neither? [][]
oldest_idx = None
oldest_age = None
for i in range(len(cs220_data)):
current_age = cs220_data[i][cs220_header.index('Age')]
current_pizza = cs220_data[i][cs220_header.index('Pizza topping')]
current_major = cs220_data[i][cs220_header.index('Primary major')]
if current_age == "":
continue
current_age = int(current_age)
if current_pizza == "basil/spinach" and current_major.startswith("Business"):
if oldest_idx == None or current_age > oldest_age:
oldest_age = current_age
oldest_idx = i
print(cs220_data[oldest_idx][cs220_header.index('Cats or dogs')])
```
%% Cell type:code id: tags:
``` python
# Does the oldest basil/spinach-loving Business major prefer cats, dogs, or neither? cell
oldest_idx = None
oldest_age = None
for i in range(len(cs220_data)):
current_age = cell(i, "Age")
current_pizza = cell(i, "Pizza topping")
current_major = cell(i, "Primary major")
if current_age == None:
continue
current_age = int(current_age)
if current_pizza == "basil/spinach" and current_major.startswith("Business"):
if oldest_idx == None or current_age > oldest_age:
oldest_age = current_age
oldest_idx = i
print(cell(oldest_idx, "Cats or dogs"))
```
%% Cell type:code id: tags:
``` python
```
%% Cell type:code id: tags:
``` python
# Warmup 0: Write a program that manages a grocery list!
# A: Add an item. Ask the user to add an item to their list.
# D: Delete an item. Ask the user what to remove from their list.
# P: Print the grocery list.
# Q: Quit.
my_groceries = []
while True:
choice = input("What do you want to do? (A, D, P, Q): ")
# TODO_0: There's a bug... Fix this.
choice.upper()
if choice == 'A':
# TODO_3: Prompt the user to enter in a food and add it to the list.
pass
elif choice == 'D':
# TODO_4: Prompt the user to enter in a food and remove it to the list.
pass
elif choice == 'P':
# TODO_2: Print the user's list.
pass
elif choice == 'Q':
# TODO_1: Quit the program
pass
else:
print('I don\'t understand. Please try again!')
print('Thanks for shopping!')
```
%% Cell type:code id: tags:
``` python
# Warmup #1: Profanity Filter
def profanity_filter(sentence, bad_words):
''' replaces all instances of any word in bad_words with \n
a word with the first letter and then @s and the same length'''
sentence_split = sentence.split(" ")
cleaned_sentence = []
for word in sentence_split:
# TODO We need to improve this! Extra practice!
if word in bad_words:
cleaned_word = word[0] + "@" * (len(word) - 1)
cleaned_sentence.append(cleaned_word)
else:
cleaned_sentence.append(word)
# all done cleaning, now join and return
return " ".join(cleaned_sentence)
bad_word_list = ["darn", "heck", "crud", "exam"]
print(profanity_filter("I unplugged that darn Alexa", bad_word_list))
print(profanity_filter("What the heck was my boss thinking?", bad_word_list))
print(profanity_filter("He is full of crud?", bad_word_list))
```
%% Cell type:code id: tags:
``` python
# Warmup #2: Take a look at these list methods
# https://www.w3schools.com/python/python_ref_list.asp
dairy = ["milk", "ice cream", "cheese", "yogurt" ]
#use the .index() method to get the index of "ice cream"
```
%% Cell type:code id: tags:
``` python
# Warmup #3: Because a list is a sequence, we can use the 'in' operator
food_shelf = ["peanut butter", "milk", "bread", "cheese", "YOGURT"]
for item in food_shelf:
if ???:
print(item, "is dairy")
else:
print(item, "is not dairy")
```
%% Cell type:markdown id: tags:
# CS220: Lecture 15
## Learning Objectives
After this lecture you will be able to...
- Open an Excel file and export it to a Comma Separated Value file.
- Open a CSV file in TextEditor/Jupyter and connect the elements of the CSV file to the rows and columns in the spreadsheet.
- Use pre-written Python code to read a CSV file into a list of lists.
- Write Python statements with double list indexing to access any element of a CSV file via a list of lists.
- Write code that answers questions about CSV data by writing for loops on lists of lists.
%% Cell type:markdown id: tags:
## Reading a CSV
%% Cell type:code id: tags:
``` python
# Now lets store the contents of the CSV file into Python lists
# copied from https://automatetheboringstuff.com/chapter14/
import csv
def process_csv(filename):
# open the file, its a text file utf-8
exampleFile = open(filename, encoding="utf-8")
# prepare it for reading as a CSV object
exampleReader = csv.reader(exampleFile)
# use the built-in list function to convert this into a list of lists
exampleData = list(exampleReader)
# close the file to tidy up our workspace
exampleFile.close()
# return the list of lists
return exampleData
```
%% Cell type:code id: tags:
``` python
# Call the process_csv function and store the list of lists in cs220_csv
cs220_csv = process_csv('cs220_survey_data.csv')
cs220_csv
```
%% Cell type:code id: tags:
``` python
# Store the header row into cs220_header
cs220_header = cs220_csv[0]
cs220_header
```
%% Cell type:code id: tags:
``` python
# Store all of the data rows into cs220_data
cs220_data = cs220_csv[1:]
cs220_data
```
%% Cell type:markdown id: tags:
## CSVs as a List of Lists
%% Cell type:code id: tags:
``` python
# Print out the lecture number of the 4th student...by hardcoding its row and column....
cs220_data[???][???] # [row][col]
```
%% Cell type:code id: tags:
``` python
# Print out the sleeping habit for the 2nd student...by hardcoding its row and column....
cs220_data[???][???]
```
%% Cell type:code id: tags:
``` python
# Print out how many students completed the survey.
len(???)
```
%% Cell type:code id: tags:
``` python
# Print out every student's sleep habits and major
for i in range(len(cs220_data)):
current_sleep_habit = ???
current_major = ???
print(current_sleep_habit + '\t\t' + current_major)
```
%% Cell type:code id: tags:
``` python
# FIX: Print out every students' age in 10 years.
for i in range(???):
current_age = cs220_data[i][2]
print(current_age + 10)
```
%% Cell type:markdown id: tags:
## It would be nice to have a helper function!
Let's introduce `cell`
%% Cell type:code id: tags:
``` python
# Remember creating cs220_header?
cs220_header
```
%% Cell type:code id: tags:
``` python
# Get the column index of "Pizza topping"
cs220_header.index(???)
```
%% Cell type:code id: tags:
``` python
# We want to invoke something like...
# cell(24, "Pet owner")
# cell(63, "Zip Code")
def cell(row_idx, col_name):
col_idx = ??? # get the index of col_name
val = ??? # get the value of cs220_data at the specified cell
return val
```
%% Cell type:code id: tags:
``` python
# Print out the lecture number of the 4th student... using the cell function
cell(???, ???)
```
%% Cell type:code id: tags:
``` python
# Print out every student's sleep habits and major using the cell function
for i in range(len(cs220_data)):
current_sleep_habit = ???
current_major = ???
print(current_sleep_habit + '\t\t' + current_major)
```
%% Cell type:code id: tags:
``` python
# Print out every students' age in 10 years using the cell function
# ... that didn't really help us here!
for i in range(len(cs220_data)):
current_age = cell(i, "Age")
if current_age != None:
print(current_age + 10)
```
%% Cell type:code id: tags:
``` python
# Improve the cell function so it returns the appropriate type.
# If there is nothing in the cell, return None
def cell(row_idx, col_name):
col_idx = cs220_header.index(col_name)
val = cs220_data[row_idx][col_idx]
if ???:
return None
elif ???:
return int(val)
else:
return val
```
%% Cell type:code id: tags:
``` python
# Print out every students' age in 10 years using the cell function
# ... much better!
for i in range(len(cs220_data)):
current_age = cell(i, "Age")
if current_age != None:
print(current_age + 10)
```
%% Cell type:code id: tags:
``` python
# Get the average age of each lecture...
```
%% Cell type:code id: tags:
``` python
# What are the unique ages for each lecture?
```
%% Cell type:markdown id: tags:
## You try!
%% Cell type:markdown id: tags:
Complete the challenges below. First try completing the problem directly using the list of lists (e.g. double indexing \[\]\[\]), then try using the `cell` function!
%% Cell type:code id: tags:
``` python
# Of all runners, how many are procrastinators?
```
%% Cell type:code id: tags:
``` python
# What percentage of 18-year-olds have their major declared as "Other"?
```
%% Cell type:code id: tags:
``` python
# Does the oldest basil/spinach-loving Business major prefer cats, dogs, or neither?
```
section,Lecture,Age,Primary major,Other Primary Major,Other majors,Zip Code,Latitude,Longitude,Pizza topping,Cats or dogs,Runner,Sleep habit,Procrastinator,Song
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Other (please provide details below).,Atmospheric and Oceanic Science,,53703,44.256,-88.409,basil/spinach,cat,No,early bird,Yes,Kanye
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53711,51.5072,-0.1257,Other,dog,No,night owl,Yes,Eyes Closed by Ed Sheeran
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Computer Science,,,53703,37.7749,-122.4194,pineapple,dog,Yes,night owl,Yes,Eight - IU
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Engineering: Other,Engineering Undecided,,53706,44.9241,-93.3474,pineapple,dog,Yes,no preference,No,"Feathered Indians, Tyler Childers"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,,Data Science,,,53715,40.7128,-74.006,sausage,dog,Yes,early bird,Yes,Post malone -overdrive
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,No secondary majors ,53715,51.5072,0.1276,pepperoni,dog,Yes,night owl,Yes,No Role Modelz - J. Cole
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,17,Mathematics/AMEP,,Computer Science,53706,19.076,72.8777,pepperoni,dog,Yes,early bird,Maybe,Do Not Disturb - Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,,Engineering: Mechanical,,,53706,37.5683,157.3409,none (just cheese),cat,Yes,night owl,Yes,
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics ,,53706,44.5133,88.0133,sausage,cat,No,night owl,Yes,"Pyro
Kings of Leon"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Other (please provide details below).,Global Health,,53706,40.7128,-74.006,none (just cheese),dog,Yes,no preference,Maybe,everywhere by fleetwood mac
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Information Systems,,,54601,25.7617,-80.1918,mushroom,cat,No,night owl,Yes,bando playboy carti
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53703,43.0658,-87.9671,none (just cheese),dog,No,early bird,Yes,Today was a good day by Ice Cube
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Statistics,,data science,53703,43.0766,-89.3972,pineapple,dog,Yes,night owl,Yes,Nikes on my feet - Mac Miller
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,,,53558,45.0854,93.0081,pepperoni,dog,Yes,no preference,Yes,Last Night - Morgan Waller
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Business: Finance,,,53706,28.3852,-81.5639,pepperoni,dog,Yes,night owl,Yes,Paradise -- Coldplay
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Science: Biology/Life,,Data Science,53706,32.0809,-81.0912,sausage,cat,Yes,no preference,Yes,Cupid de Locke - the Smashing Pumpkins
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Data Science,,,53716,77.82,86.48,pepperoni,dog,No,early bird,Yes,"Violent crimes
Kanye west"
COMP SCI 319:LEC002,LEC002,28,Engineering: Other,,,53703,24.8801,102.8329,pepperoni,neither,Yes,night owl,Yes,No,I hardly listen to music.
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Other (please provide details below).,Atmospheric and Oceanic Sciences ,Journalism ,53706,48.8566,2.3522,Other,dog,No,night owl,Maybe,"Dancing Queen
By Abba "
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Business: Finance,N/A,N/A,53703,25.7,-80.2,pepperoni,dog,No,no preference,Yes,All Me by Drake
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,,Computer Science,,,53704,0,0,sausage,cat,No,night owl,Maybe,WYS - Snowman
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Science: Other,,,53703,43.0833,-89.3725,basil/spinach,dog,Yes,early bird,Yes,Fly Love by Jamie Foxx
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,,Engineering: Mechanical,,,53706,33.3062,111.8413,mushroom,cat,No,night owl,Yes,Nerves by DPR Ian
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,,Computer Science,,,53726,35.6528,139.8395,mushroom,dog,No,night owl,No,Us by milet
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,"Comp sci, certificate in economic analytics",53715,39.7392,-104.9903,pineapple,dog,Yes,night owl,Yes,Everlong - Foo Fighters
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,BS Art,,53593,37.5665,126.978,pepperoni,cat,No,night owl,Yes,Mariah Carey - All I Want for Christmas Is You
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,43.07,-89.4,pineapple,dog,No,night owl,Yes,Vienna by Billy Joel
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Other,,,53175,42.8646,-88.3332,pepperoni,dog,Yes,night owl,Yes,Temperature by Sean Paul
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Computer Science,,Mathematics,53706,47.6081,-122.0117,pepperoni,cat,No,night owl,Yes,"Fly High!!, Burnout Syndrome "
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Engineering: Mechanical,,,53703,34,5,sausage,dog,No,night owl,Yes,say so - doja cat
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,21,Business: Information Systems,,,53715,47,86,pepperoni,dog,Yes,no preference,Yes,7 Years - Lukas Graham
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,,Business: Information Systems,information science,,53715,29.4393,106.4556,sausage,dog,Yes,early bird,No,love story
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,20,Business: Other,,Sociology,53703,43.07,-89.4,sausage,neither,Yes,night owl,Maybe,Cudi Zone- Kid Cudi
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Data Science,,,53706,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Peppas - Farruko
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,38258,46.3131,-91.4905,sausage,dog,Yes,night owl,Yes,No Remorse Metalica
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Data Science,,,53703,3.2028,73.2207,pepperoni,dog,Yes,night owl,Yes,"Rich Men North of Richmond
Oliver Anthony"
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,21,Engineering: Mechanical,,,53715,44.9778,-93.265,pepperoni,dog,Yes,no preference,Yes,"Never Gonna Give You Up -Rick Astley
"
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,1134,40.4111,-105.6413,pepperoni,dog,No,night owl,Yes,Out of Touch by Daryl Hall and John Oats
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Computer Science,,Public Health and Policy,53706,37.5,126.9,basil/spinach,cat,No,night owl,No,No One Else Like You(Adam Levine)
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Data Science,,,53703,41.9028,12.4964,pepperoni,dog,No,night owl,Yes,Pursuit of Happiness by Kid Cudi
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,,Engineering: Mechanical,,,53703,12.957,77.401,macaroni/pasta,dog,Yes,night owl,Yes,Out of Touch by Hall and Oates
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,44.5133,-88.0133,pepperoni,dog,No,night owl,Yes,Where the Boat Leaves From By Zac Brown Band
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Other,bme,,53715,42.3601,71.0589,pepperoni,dog,No,no preference,Maybe,noah kahan - mess
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Engineering: Mechanical,,,53703,39.0476,-77.132,pepperoni,dog,Yes,night owl,Yes,
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Other (please provide details below).,"Econ with math emphasis (photography certificate)
",,53703,-41.2865,174.7762,pineapple,neither,Yes,no preference,Maybe,None.
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pepperoni,dog,No,night owl,No,
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,40.7128,-74.006,pepperoni,dog,No,night owl,Maybe,Sultans of Swing - Dire Straits
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,45.3733,84.9553,macaroni/pasta,dog,Yes,night owl,Yes,kimdracula - deftones
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,21,Other (please provide details below).,My primary major is Economics.,I'm planning to get data science certificate.,53715,37.5665,126.978,sausage,dog,Yes,night owl,Maybe,Dandelions - Ruth B.
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,40.7,-74,pepperoni,dog,No,no preference,Maybe,I don't really have a favorite song.
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,Consumer behavior and marketplace studies.,,53715,44.9778,-93.265,pineapple,cat,Yes,early bird,Maybe,Love Story - Taylor Swift
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,,Data Science,,,53706,41.8781,87.6298,pepperoni,cat,No,night owl,Yes,Bright Size Life by Pat Metheny
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Data Science,,I am considering majoring in Genetics as well,53706,45.6378,-89.4113,Other,dog,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,,53726,43.0731,-89.4012,sausage,dog,Yes,early bird,Yes,Young Girls - Bruno Mars
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,,Engineering: Mechanical,,,53711,,,pepperoni,cat,Yes,no preference,Maybe,"""Wont Back Down""
-Tom Petty"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,Genetics,Data science,53706,42.0262,-88.0697,pineapple,dog,No,night owl,Yes,Merrry-Go-Round of life by joe Hisaishi
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,53715,37.5665,126.978,basil/spinach,dog,No,no preference,No,"""a lot"" by 21 savage"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53705,31.2244,121.4692,pepperoni,cat,No,night owl,Yes,ハゼ馳せる果てるまで by ずっと真夜中でいいのに
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Biomedical,,i’m considering a double major in economics or political science ,53703,48.8566,2.3522,basil/spinach,cat,No,no preference,Yes,alien superstar by beyoncé
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,23,Mathematics/AMEP,N/A,Certificate in Data Science,53703,19.4326,-99.1332,pepperoni,dog,Yes,early bird,Maybe,Runaway by Kanye West (Fyi: it’s a 10 min song)
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Data Science,,,53706,47.6062,-122.3321,pineapple,cat,No,night owl,Yes,you belong with me by taylor swift
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Industrial,,,53706,38.752,48.8466,pepperoni,cat,No,early bird,Maybe,Kerosene -Crystal Castles
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Economics and Psychology ,Possibly a Data science minor ,53703,40.4406,-79.9959,sausage,dog,No,early bird,Maybe,Wonderwall - Oasis
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Mathematics/AMEP,,Mathematics and Economics,53703,86.9212,40.4237,mushroom,cat,No,early bird,Maybe,Christmas List by Anson Seabra
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53708,42.3611,-71.0571,Other,dog,No,night owl,Yes,Sultans of Swing by Dire Straits
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Science: Chemistry,,None,53715,37.5683,126.9978,sausage,dog,No,night owl,Yes,Under the bridge - Red Hot Chili Peppers
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics,Data science. ,53703,36.6769,117.1201,sausage,dog,No,night owl,Yes,Heat waves by Glass Animals
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pepperoni,dog,No,night owl,Yes,Hey ya- outkast
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Engineering: Mechanical,,,53704,44.5133,-88.0133,pepperoni,cat,No,early bird,Yes,The adults are talking-The strokes
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,Statistics,53706,24.5551,-81.78,pepperoni,neither,Yes,no preference,No,Circles- bangers only & fawlin
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,45.4408,12.3155,pepperoni,dog,Yes,night owl,Yes,"Upside Down, Jack Johnson"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,21,Data Science,,Secondary major: Computer Science,53711,35.6528,139.8395,sausage,cat,Yes,night owl,Yes,Mayonaka no Door / Stay With Me
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economics ,maybe data science,53703,25.2048,55.2708,mushroom,cat,Yes,night owl,Maybe,"Dancing with A Stranger
Sam Smith and Normani
"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Other (please provide details below).,Pre-business.,Want to do Computer Science as my secondary major.,53718,39.9042,116.4074,pepperoni,cat,Yes,night owl,Maybe,Lose Yourself - Eminem
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,,Science: Other,Zoology ,Conservation Biology ,53706,43.0731,-89.4012,none (just cheese),cat,No,night owl,Yes,The Fall- Lovejoy
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Economics,"French, International Studies",53715,43,89.4,sausage,dog,Yes,night owl,Yes,"Tiny Dancer, Elton John"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,22,Data Science,,,53715,37.5665,126.978,pepperoni,dog,Yes,night owl,Yes,My favorite song is Hate you by Yerin Baek.
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53715,47.6062,-122.3321,pepperoni,dog,No,night owl,Maybe,"it changes often, through many genres, but currently,
Aaron Hibell - destroyer of worlds (oppenheimer trance edit)
"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC001,21,Other (please provide details below).,Economics ,Data Science,53703,0.8035,90.0425,pineapple,dog,No,night owl,Yes,Lifestyles of the Rich and Famous by Good Charlotte
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Engineering: Other,Computer Engineering,NA,53715,39.795,-74.7773,pepperoni,dog,Yes,night owl,Yes,NA
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Business: Finance,,,53706,45.4647,9.1885,sausage,dog,Yes,early bird,Maybe,Drake-Passionfruit
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,I'm a Computer Science Major. ,I'm a Data science Major.,53706,42.2475,-84.4089,Other,dog,No,no preference,Maybe,Just like me by A boogie wit da hoodie.
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,,Engineering: Mechanical,,,53706,40.7128,-74.006,pepperoni,cat,No,night owl,Yes,Love Lost - Mac Miller
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Other (please provide details below).,,"Data Science, Mathematics",53706,39.4822,-106.0462,pepperoni,dog,Yes,early bird,Yes,"Keep Your Head Up
by Andy Grammar"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Other (please provide details below).,Economics,,53073,60.3913,5.3221,pepperoni,cat,No,night owl,No,Iron Lung - King Gizzard and the Lizard Wizard
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Other (please provide details below).,Econ Major ,,53703,43.0731,-89.4012,sausage,dog,No,night owl,Yes,Follow God by Kayne West
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Engineering: Mechanical,,,53076,43.7696,11.2558,Other,dog,No,no preference,Maybe,The Difference -Flume
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Information Science.,Economics.,53703,43.0731,-89.4012,Other,cat,Yes,night owl,Yes,GEEKED N BLESSED by LUCKI
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Other (please provide details below).,Journalism,,53715,41.3874,2.1686,none (just cheese),cat,Yes,night owl,Yes,revival zach bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,Economics and certificate in Data Science ,,53703,23.2494,106.4111,pineapple,dog,No,night owl,Maybe,Sketzo by Travis Scott and Young Thug
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Business: Finance,Finance,data science,53705,200,116,mushroom,cat,Yes,night owl,Yes,Who am I- why don't we
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Mathematics/AMEP,,,53706,43.0731,-89.4012,sausage,dog,Yes,night owl,Yes,Runaway- Kanye
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,21,Business: Other,Pass,Pass,53705,40.7128,-74.006,green pepper,cat,Yes,night owl,Yes,"""Steal the show"", by Lauv
"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Computer Science,,,53706,25.7617,-80.1918,sausage,dog,No,no preference,Maybe,Bank Account - 21 Savage
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53703,-23.5505,-46.6333,Other,cat,Yes,night owl,Yes,"Violent Crimes - Kanye West
ps: Not a fan at all of him as a person, but huge fan of his work."
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,Computer Science,53706,50,21,sausage,cat,Yes,night owl,Maybe,Symphony No. 9 by Ludwig van Beethoven
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,42.7261,-87.7895,pepperoni,dog,No,no preference,Yes,Margaritaville by Jimmy Buffett
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Biomedical,,,53706,26.1242,-80.1436,basil/spinach,cat,No,no preference,Yes,"Wash it all away, Five Finger Death Punch"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Data Science,,,53703,42.1281,-88.0937,pineapple,dog,No,night owl,Yes,Thunderstruck AC/DC
COMP SCI 319:LEC004,LEC004,23,Other (please provide details below).,Economics,No,53703,30.5728,104.0668,pineapple,cat,No,early bird,Yes,蓝雨 -- Jacky Cheung
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53711,31.5879,120.2127,pineapple,neither,No,night owl,Maybe,"Samudrartha and Wildfire by HOYO-MiX
Watchtower of the East by Quadimension "
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Mechanical,,,53706,35.2401,24.8093,pepperoni,cat,Yes,night owl,No,The Seventh Sense by NCT U
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,21,Engineering: Biomedical,,,53703,43.0128,-88.2351,sausage,dog,No,night owl,Yes,Hannah Montana by the Migos
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Business: Finance,,,53703,41.3874,2.1686,pepperoni,dog,Yes,night owl,Yes,Your love - Sosa UK
COMP SCI 319:LEC001,LEC001,29,Science: Physics,,,53715,40.7128,-74.006,sausage,dog,Yes,no preference,Yes,"Beat it, Michael Jackson"
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Engineering: Other,,,53706,43.6532,-79.3832,pepperoni,dog,No,night owl,Maybe,Killer Queen - Queen
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,Computer Science,53706,41.8781,87.6298,pineapple,dog,No,night owl,No,Shampoo Bottles - Peach Pit
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,21,Mathematics/AMEP,,,53706,30.5928,114.305,none (just cheese),cat,No,night owl,Yes,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,Communication Arts,53706,52.7107,-8.879,Other,dog,No,night owl,Yes,Boomerang by Summer Set
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Atmospheric and Oceanic Science,,53703,64,21,green pepper,dog,No,no preference,No,
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Statistics,,Still deciding between math or data science,53703,,,pepperoni,cat,No,no preference,No,Mandy by Barry Manilow
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economics,,53726,22.5431,114.0579,mushroom,dog,No,early bird,Maybe,Forever Young; Blackpink
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC002,20,Engineering: Mechanical,,,53706,41.8781,87.6298,pineapple,dog,Yes,early bird,Maybe,"""Peg"" - Steely Dan
"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,Data Science ,Economics,53703,12.9,77.5,sausage,neither,Yes,night owl,Maybe,Metallica - Enter Sandman
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Engineering: Industrial,,,73506,8.538,-80.7821,none (just cheese),dog,No,no preference,Maybe,"Como has estau? -Mora
Quevedo - Quevedo
Yankee- quevedo"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Engineering: Industrial,,Data Science,53719,55.7558,37.6173,pineapple,cat,No,night owl,Yes,Cate's Brother by Maisie Peters
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53715,47.9031,-91.8565,pineapple,cat,Yes,night owl,Yes,Kiss Me - Sixpence None The Richer
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Mechanical,Mechanical Engineering,,53706,19.076,72.8777,none (just cheese),dog,No,no preference,Maybe,This Side of Paradise - Coyote Theory
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,21,Business: Other,Econ,,53703,41,-73.6,Other,dog,Yes,night owl,Yes,Sunflower seeds by bryce vine
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,25,Other (please provide details below).,Economics,,53703,35,129,Other,dog,No,night owl,Maybe,Not today - bts
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Business: Actuarial,,Math,53703,22.5431,114.0579,sausage,dog,No,night owl,Maybe,"All We Know
The Chainsmokers"
COMP SCI 319:LEC001,LEC001,26,Business: Other,MBA specializing in tech strategy and product management ,,53558,41.0082,28.9784,basil/spinach,cat,No,night owl,Yes,"Tears in the Rain, The Weeknd "
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Mathematics/AMEP,,,53703,40.6541,109.8201,sausage,cat,No,night owl,Yes,Yellow - Coldplay
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,,53706,35.0568,118.3406,Other,cat,No,night owl,Yes,"Common Jasmin Orange by Jay Chou
it's a Chinese song, so you probably can't understand the lyrics"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Biomedical,,,53703,46.7828,-92.1055,sausage,cat,Yes,night owl,Yes,I'm Just Ken by Ryan Gosling
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Business: Finance,N/A,Comp Sci ,53703,43.0731,-89.4012,pineapple,dog,Yes,no preference,No,Don't go breaking my heart - Elton John
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Industrial,,,53719,43.0731,-89.4012,pepperoni,cat,Yes,night owl,Yes,Pride by Kendrick Lamar
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53715,31.2304,121.4737,green pepper,cat,No,night owl,Yes,Talking to the Moon--Bruno Mars
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,23,Other (please provide details below).,consumer science,i don't have,53703,31.2304,121.4737,mushroom,neither,Yes,early bird,Yes,hero Mariah Carey
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Business: Other,,,53706,13.7563,100.5018,pepperoni,dog,No,night owl,Maybe,Die for you by the Weeknd
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,,Engineering: Biomedical,,,53706,37.5665,126.978,pepperoni,cat,Yes,night owl,Yes,You give love a bad name - Bon Jovi
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,21,Business: Finance,,RMI,53703,48.8566,2.3522,pepperoni,cat,No,no preference,Yes,Get out off town - Anita O'day
COMP SCI 319:LEC002,LEC002,,Science: Other,,,53703,49,-123,pepperoni,neither,No,night owl,Yes,Whatever :)
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Computer Science,,,537061127,36.1627,-86.7816,sausage,dog,No,no preference,Yes,Runnin' With the Devil - EVH
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Other (please provide details below).,Economics,Math,53703,43.0969,-89.5115,pepperoni,dog,No,early bird,Yes,Homemade - Jake Owen
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,,1000,48.8566,2.3522,pepperoni,neither,No,no preference,Maybe,"Imagine Dragons, Radioactive."
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Business: Other,,,53715,44.2134,-88.5018,pepperoni,dog,No,no preference,Yes,3005 - Childish Gambino
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Mechanical,,,53216,20.8854,-156.6653,pepperoni,neither,No,no preference,No,
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Business: Information Systems,,,53715,40.71,-74,pineapple,cat,No,night owl,Yes,Japanese Denim by Daniel Caesar
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53715,14.5995,120.9842,pepperoni,dog,Yes,night owl,No,Cherry Wine- Grent Perez
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Computer Science,,,53706,85.8398,10.2985,mushroom,dog,No,night owl,Maybe,"""Streems"" by The Symposium"
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Statistics,"I'm double majoring in mathematics and statistics; I hope to do research in some sort of applied probability theory after graduating (e.g. econometrics, mathematical biology, etc.)",n/a,53726,,,pepperoni,cat,Yes,early bird,No,"How Much a Dollar Cost, by Kendrick Lamar"
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,business,53715,27.4967,-82.6948,pepperoni,dog,No,early bird,No,Jimmy Cooks - Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Data Science,I am doing eco and plan to get a ds certificate,no,53703,39.9042,116.4074,Other,neither,No,early bird,No,''Capital''by Lo Ta-you
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Engineering: Mechanical,,,53726,41.8781,-87.6298,sausage,cat,Yes,night owl,Maybe,Shiva - Spillage Village & JID
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,35.9594,-83.9196,pepperoni,dog,Yes,early bird,No,Talkin' Tennessee by Morgan Wallen
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53706,44.5667,-92.5343,pepperoni,dog,No,night owl,Yes,street dreams by nas
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Business: Other,,,53703,37.7749,-122.4194,mushroom,dog,No,night owl,Yes,"Take it Easy - The Eagles
Otherside - Red Hot Chili Peppers"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Other (please provide details below).,Global Health,N/A,53706,42.3601,71.0589,basil/spinach,dog,Yes,night owl,Maybe,Somewhere Only We Know by Keane
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics,,53703,42.3314,-83.0458,sausage,dog,Yes,no preference,No,"Life Goes On - Lil Baby, Lil Uzi Vert, Gunna"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,"Biomechanics focus, Dance Certificate",53715,36.1627,-86.7816,pepperoni,dog,No,night owl,Maybe,"No specific songs but I love Elton John, Queen, Noah Kahan"
COMP SCI 319:LEC003,LEC003,22,Science: Biology/Life,,,53703,43.07,-89.38,mushroom,dog,No,early bird,No,Swimming Horses by Siouxsie and the Banshees
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,22,Statistics,,,53706,22.5431,114.0579,sausage,dog,Yes,no preference,Maybe,I Want My Tears Back--Nightwish
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Data Science,,Physics,53706,27.7172,85.3239,sausage,dog,Yes,early bird,No,Hall of fame
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,Economics,53706,48.8647,2.349,pepperoni,dog,Yes,night owl,Yes,Let It Happen - Tame Impala
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Business: Finance,,Data Science,53706,41.8781,-87.6298,basil/spinach,cat,No,night owl,Yes,LOYALTY FT. RIHANNA - KENDRICK LAMAR
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Other (please provide details below).,,,53706,41.9028,12.4964,Other,neither,No,no preference,Yes,Danza Kuduro - Don Omar
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Statistics,,,53706,47.3769,8.5417,mushroom,dog,No,no preference,Maybe,Blue Jay Way by the Beatles
COMP SCI 319:LEC002,LEC002,22,Business: Finance,,,53715,35,36,sausage,dog,No,early bird,Yes,TALLY BLACKPINK
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Mathematics/AMEP,,Data Sciene,53706,43.0707,-89.4142,sausage,dog,Yes,night owl,No,Build me up Buttercup- The foundations
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,23,Mathematics/AMEP,,,53703,34.34,108.93,mushroom,cat,Yes,early bird,Yes,The name is Super Gremlin. Artist is Kodak Black.
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Science: Other,,,537061127,3.139,101.6869,sausage,dog,Yes,no preference,Yes,Edge of Desire - John Mayer
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Data Science,,,53562,44.5004,-88.0613,pepperoni,dog,Yes,no preference,Maybe,
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Business: Finance,,,53703,41.8842,-87.6324,sausage,dog,No,early bird,Maybe,"Stayin Alive, Drake and DJ Khalid"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,56.4907,-4.2026,mushroom,dog,No,early bird,Maybe,Maroon by Taylor swift
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,was provided,German (maybe),53726,48.1351,11.582,pepperoni,dog,No,night owl,Yes,You Proof - Morgan Wallen
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,pepperoni,dog,No,night owl,Maybe,Springsteen - Eric Church
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,36.3932,25.4615,basil/spinach,dog,No,night owl,Yes,Mercy Now by Mary Gauthier
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC001,21,Business: Information Systems,,Data science ,53715,30.2667,-97.7333,pepperoni,dog,Yes,early bird,Yes,Hey driver Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC004,21,Business: Other,,,53703,41.3851,2.1734,pepperoni,dog,Yes,night owl,Yes,I remember by Zach Bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Mechanical,,,53715,44.0999,9.7382,pineapple,dog,No,no preference,No,Bury Me in Georgia by Kane Brown
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Business: Finance,Finance,,53726,35.6895,139.6917,sausage,cat,No,night owl,Yes,Mona Lisas and mad hatters by elton john
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53706,38,-77,Other,dog,No,night owl,Yes,dont stop believing
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53703,40.78,-73.97,none (just cheese),dog,No,night owl,Yes,"Replay by Iyaz
"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Computer Science,,,53715,43.0731,-89.4012,sausage,neither,No,no preference,Yes,Cream Soda - EXO
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC001,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,Yes,night owl,Yes,Beast of Burden - The Rolling Stones
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53715,40.7128,-74.006,pepperoni,cat,Yes,early bird,Maybe,Upside down- Jack Johnson
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Statistics,,computer science ,53706,40.7128,-74.006,pineapple,dog,Yes,early bird,No,The greatest show man
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Industrial,,,53715,41.8781,87.6298,sausage,cat,Yes,night owl,Yes,Ghost Town-Kanye West
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,sausage,dog,No,night owl,Maybe,Money by Pink Floyd
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,,Business: Information Systems,,,53703,36.107,-112.113,pepperoni,cat,Yes,night owl,Maybe,"Blinding lights, the weeknd"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Engineering: Mechanical,,,53703,44.9591,-89.6343,green pepper,dog,Yes,night owl,Yes,any wheeler walker junior song
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Engineering: Industrial,"
",,53711,43.0731,89.4012,pepperoni,cat,Yes,early bird,No,I will wait by mumford and sons
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,finance,53706,41.8781,87.6298,sausage,dog,No,night owl,Yes,"La Cancion, Bad Bunny and J Balvin"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,My primary major is Economics ,Informations Systems,53703,33.8812,-118.4072,sausage,dog,No,night owl,Yes,Lakeshore Drive Aloitta Haynes Jeramiah
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Other (please provide details below).,Economics,,53703,41.88,-87.63,mushroom,cat,Yes,night owl,Yes,"Everything She Aint, Hailey Whitters"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,23,Other (please provide details below).,Econ,no,53703,43.0731,-89.4012,mushroom,dog,No,night owl,Maybe,In the night gardeen
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Computer Science,,math,53715,,,mushroom,dog,No,night owl,Maybe,bones
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Mathematics/AMEP,\,"Economics major, Data Science certificate",53703,39.8954,116.3946,none (just cheese),cat,Yes,no preference,Maybe,no preference
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Engineering: Biomedical,,,53715,48.8566,2.3522,sausage,neither,No,night owl,Yes,ETA - New Jeans
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,economics ,"Data science
",53703,33.6188,-117.8566,pepperoni,dog,No,night owl,Maybe,"Heartache on the dance floor - jon pardi
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53703,39.9042,116.4074,mushroom,dog,No,night owl,Yes,Gone-Nelly/Kelly
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Data Science,,Statistics,53715,35.414,-79.0933,Other,dog,Yes,night owl,Yes,Revival - Zach bryan
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,21,Engineering: Other,Material Science and Engineering,.,53703,51.2094,3.2252,pineapple,dog,No,early bird,No,Aria Math
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Computer Science,,,53703,40.95,-73.73,none (just cheese),neither,Yes,early bird,Maybe,Closer - Chainsmokers
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,12.9716,77.5946,none (just cheese),dog,Yes,night owl,Yes,Any Coldplay song works!
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Data Science,,Economics,53066,43.1144,-88.5072,pepperoni,dog,No,night owl,Maybe,God tier-Baby Tron
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53073,52.3702,4.8952,pepperoni,dog,No,night owl,Yes,Vienna: Billy Joel
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,24,Other (please provide details below).,Neurobiology,Psychology,53703,60.3913,5.3221,Other,dog,Yes,early bird,Yes,"Title: Ôba, Lá Vem Ela
Artist: Jorge Ben"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Data Science,,,53703,43.0731,-89.4012,mushroom,neither,No,early bird,No,"《To have,or not to have》
Lin Sheng Hsiang"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53706,42.64,-71.1291,pepperoni,dog,No,early bird,Yes,505 - arctic monkeys
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Computer Science,,,53715,41.8781,-87.6298,mushroom,dog,Yes,night owl,Yes,Sicko Mode by Travis Scott and Drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Computer Science,,,53706,25.033,121.5654,mushroom,neither,Yes,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Business: Other,marketing,economics,53706,40,116,pineapple,dog,No,night owl,Yes,Save Your Tears (Remix)--Ariana Grande& The Weekend
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Computer Science,,Biochemistry,53706,10.8231,106.6297,none (just cheese),dog,Yes,early bird,Maybe,"""Dress""
Taylor Swift"
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,17,Data Science,,Economics,53706,31.2304,121.4737,pepperoni,dog,No,night owl,Maybe,Shed a light
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,21,Data Science,Econ,,53703,34.6937,135.5022,pineapple,dog,No,night owl,Maybe,Moon by Kanye west
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Computer Science,N/A,Certificate - Data Science,53703,-33.9235,151.1399,Other,dog,Yes,night owl,Yes,5SOS - Teeth
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Computer Science,,,53726,39.9042,116.4074,sausage,cat,No,night owl,Maybe,Planet of the bass
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,23,Business: Finance,,Data Science Certificate (reason I am taking the course),53705,39.6403,-106.3709,pineapple,cat,Yes,no preference,Yes,"professional Griefers; Deadmau5, Gerard Way"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Business: Information Systems,,International Business,53703,38.6992,-75.0968,basil/spinach,dog,Yes,early bird,No,"Revival, Zach Bryan
"
COMP SCI 319:LEC002,LEC002,27,Science: Other,Information Science,,53705,44.0164,-92.4754,sausage,dog,Yes,night owl,Yes,Enchanted - Taylor Swift
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53703,28,81,pepperoni,dog,No,night owl,Yes,More than my hometown by Morgan Wallen
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Business: Other,Business Admin,,53706,36.7194,-4.42,Other,dog,Yes,night owl,Yes,cigarette daydreams - cage the elephant
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,39.0655,85.2563,pepperoni,neither,Yes,night owl,Maybe,n/a
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Data Science,Economics,,53703,31.2304,121.4737,mushroom,cat,Yes,no preference,No,Summertime Sadness---Lana Del Rey
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Data Science,,,53706,35.6895,139.6917,basil/spinach,dog,No,night owl,Maybe,Slow Dancing from V
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Other,Materials Science and Engineering,,53711,45.9013,-89.8459,Other,cat,No,night owl,Yes,Rio by Duran Duran
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Actuarial,,,53703,35.6895,139.6917,pepperoni,dog,Yes,no preference,Maybe,"dancing in the dark by Bruce Springsteen
"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Engineering: Other,My major is Chemistry but I intend to switch to Material Science and Engineering,,53711,48.8647,2.349,macaroni/pasta,cat,No,no preference,Maybe,Anything Taylor Swift
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53703,41.8781,87.6298,basil/spinach,dog,Yes,early bird,Maybe,Landslide Fleetwood Mac
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Computer Science,,Data Science,53715,33.9835,-118.248,pepperoni,cat,No,early bird,Yes,Khai Dreams - Sunkissed
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53715,47.61,122.33,pepperoni,cat,Yes,night owl,Yes,"Maroon, Taylor Swift"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53703,38.9333,-77.0711,pepperoni,dog,No,early bird,No,Smaller acts- Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Data Science,,,53701,45.1433,-89.1518,pepperoni,dog,Yes,early bird,Yes,When I'm gone - Dirty Honey
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Data Science,,Psychology,53711,37.9838,23.7275,green pepper,neither,No,night owl,Yes,Telepatia by Kali Uchis
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,N/A,N/A,53706,43.0737,-89.4026,pepperoni,dog,No,night owl,No,Trustfall by P!nk (Pink)
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Engineering: Mechanical,,,53715,42.35,-71.06,mushroom,cat,No,night owl,Yes,Upside Down - Jack Johnson
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Computer Science,,"Computer Science, Mathematics",53706,34.6937,135.5022,mushroom,dog,Yes,early bird,Yes,Taylor Swift
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,22,Engineering: Other,,,53703,41.8781,-87.6298,pineapple,dog,No,early bird,No,Semi-Charmed Life - Third Eye Blind
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,47.6062,-122.3321,pepperoni,dog,No,early bird,Yes,Ultralight Beam- Kanye West
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Economics,Data Science,53703,31.2304,121.4737,pepperoni,dog,Yes,night owl,Yes,Excuses-- Jay Zhou
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Economics with a Mathematical Emphasis,,53703,37.7749,-122.4194,pepperoni,dog,Yes,night owl,No,Cigarette Daydreams by Cage the Elephant
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Psychology,Data Science,53719,30.5928,114.3052,pepperoni,cat,Yes,no preference,Yes,Marunouchi Sadistic
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,,Business: Information Systems,,Data Science,53715,41.8781,-87.6298,sausage,dog,No,early bird,Yes,Staying Over by Sam Grow
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Computer Science,,,53706,37.3387,121.8853,basil/spinach,dog,Yes,night owl,Maybe,All Too Well-Taylor Swift
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,,Engineering: Industrial,,,53705,47.6,-122.3,green pepper,neither,No,night owl,Maybe,Good Time (Owl City)
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Business: Other,,Data Science,57306,-33.8688,151.2093,sausage,cat,Yes,no preference,No,Time by Pink Floyd
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Business: Information Systems,,Risk Management & Insurance,53703,43.0739,-89.3852,none (just cheese),dog,Yes,night owl,Yes,Heading South by Zack Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Biomedical,//,//,53715,45.7088,-121.5252,Other,dog,Yes,early bird,No,Honeybee - the Head and the Heart
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,20,Mathematics/AMEP,,,53726,44.1495,9.6547,pepperoni,dog,Yes,early bird,No,"John Mayor - Wild Blue
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,23,Engineering: Industrial,,,53715,37.5665,126.978,pepperoni,cat,Yes,night owl,Yes,"Burning Heart, Survivor"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Computer Science,"
",Certificate in Data Science,53715,39.483,-106.0463,macaroni/pasta,dog,Yes,night owl,Yes,505 by the Arctic Monkeys
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53703,5.4164,100.3327,none (just cheese),dog,Yes,no preference,Yes,Melancholy Hill - Gorillaz
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Statistics,,,53706,55.6672,12.5512,green pepper,dog,Yes,no preference,Maybe,Pink + White by Frank Ocean
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,23,Business: Finance,ECONOMICS ,FINANCE,53703,-45.0312,168.6626,pineapple,dog,Yes,early bird,No,Kiss Me Through The Phone - Souja Boy
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,economy,no,53703,39,116,sausage,neither,Yes,no preference,Maybe,the nights Avicii
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Science: Other,Political Science,,53715,45.0813,-93.135,pepperoni,dog,No,night owl,Yes,No Surprises: Radiohead
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Other (please provide details below).,Economics ,Maybe data science,53715,19.076,72.8777,basil/spinach,dog,No,night owl,Yes,none at the moment
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Mathematics/AMEP,N/A,N/A,53703,38.914,121.6147,macaroni/pasta,cat,No,night owl,Yes,You(=I) by BOL4
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,29.9511,-90.0715,pineapple,dog,Yes,night owl,Yes,Margaritaville - Jimmy Buffett
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,20,Data Science,,,53715,60.1699,24.9384,pepperoni,dog,No,early bird,Yes,Poison - Alice Cooper
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,Economics,53703,22.5431,114.0579,basil/spinach,dog,Yes,early bird,No,Palm Springs-Virginia To Vegas
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,21,Engineering: Other,Materials Science and Engineering,,53703,32.7157,-117.1611,green pepper,dog,No,night owl,No,The Fragrance of Dark Coffee by Noriyuki Iwadare
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Other (please provide details below).,Math,"Econ, CS",53703,39.9042,116.4074,mushroom,dog,No,early bird,Maybe,"Qing tian, Jay Chou"
COMP SCI 319:LEC003,LEC003,24,Engineering: Other,,,53711,32.4,119.4301,mushroom,cat,Yes,early bird,No,Just the two of us——Jose James
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Poli Sci & History,"Business, Development Economics, Data Science, Public Policy",53715,40.1728,74.006,Other,dog,No,night owl,Maybe,"""The Adults Are Talking"" by The Strokes"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,28.3731,-81.5569,none (just cheese),cat,No,no preference,Maybe,The Story of Us by Taylor Swift
COMP SCI 319:LEC003,LEC003,24,Other (please provide details below).,Economics,,53703,38.914,121.6147,tater tots,dog,No,no preference,No,Butter—Fly by わだ こうじ
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Science: Physics,,,53706,52.3676,4.9014,pineapple,cat,No,night owl,Yes,"Orion - Metallica, first section is decent but the entire middle section is the most beautiful piece of music to me and has always been my favorite song ever."
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,39.4821,-106.0487,none (just cheese),cat,No,night owl,Yes,ivy by taylor swift
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,35.6895,139.6917,pepperoni,cat,Yes,night owl,Yes,"Title: The Less I Know the Better
Artist: Tame Impala"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53711,43.7696,11.2558,sausage,dog,No,night owl,Yes,Break My Stride Mattew Wilder
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Other (please provide details below).,Biochemistry,Data Science,53715,34.0522,-118.2437,macaroni/pasta,dog,No,night owl,Yes,Nonsense - Sabrina Carpenter
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Other,,,53706,35.6528,139.8395,pineapple,cat,Yes,night owl,Yes,"Fly me to the moon --- Frank Sinatra
Night Dancer --- imase"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,39.4784,-106.0443,pepperoni,cat,No,night owl,Yes,Style by Taylor Swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53703,42.3601,-71.0589,pineapple,dog,No,night owl,Yes,Do Not Disturb -Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,n/a,n/a,53715,25.7617,-80.1918,pineapple,cat,Yes,night owl,Yes,Chicken Tendies by Clinton Kane
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,,53715,43.0731,-89.4012,sausage,cat,Yes,early bird,Maybe,Mayonaise by The Smashing Pumpkins
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Engineering: Mechanical,,,53706,41.3851,2.1734,mushroom,dog,No,early bird,Yes,Hysteria - Muse
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,,Other (please provide details below).,not declare yet,,53711,37.5665,126.978,mushroom,dog,No,no preference,Maybe,blackpink - pink venom
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Computer Science,,Data Science certificate,53703,44.5012,-88.0611,pepperoni,cat,No,night owl,Maybe,All That by Mac Miller
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53711,51.5074,-0.1278,mushroom,dog,Yes,no preference,Maybe,"""Always There"" -Greta Van Fleet"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,,Computer Science,,,53715,49,50,pepperoni,dog,No,night owl,Maybe,Chandelier - DJ Khaled
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,22,Business: Other,,"consumer behavior & marketpace studies, economics",53703,18.2528,109.5119,mushroom,dog,No,no preference,Yes,"Angel, Mosiah"
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,44.0134,-69.3102,Other,cat,Yes,no preference,No,September by Earth Wind and Fire
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Biomedical,,,53706,41.8781,-87.6298,mushroom,dog,No,early bird,Maybe,no option post malone
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Business: Finance,,Information Systems,53703,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Wat's Wrong by Isaiah Rashad
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,"Double major: Finance, Investment, and Banking / Information Systems",,53715,43.6123,-110.7054,pepperoni,dog,No,night owl,Yes,"Looking out for you, Joy Again"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Other (please provide details below).,Economics,Data Science minor,53703,33.8847,-118.4072,pineapple,dog,Yes,no preference,Yes,Boss DJ by Sublime
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.9526,-75.1652,mushroom,dog,No,no preference,Maybe,Everybody Wants to Rule the World- Tears for Fears
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,21,Science: Biology/Life,,,53703,30.5728,104.0668,mushroom,cat,Yes,early bird,Yes,"Until I Found You
Stephen Sanchez"
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Other (please provide details below).,econ,data science,53703,0,45,pineapple,dog,No,no preference,No,fire on fire Sam Smith
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Biomedical,,Data science,53706,43.168,-89.284,basil/spinach,dog,No,night owl,Yes,505 by the artic monkeys
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Other (please provide details below).,Textiles and Fashion Design ,,53703,48.6997,-122.8756,basil/spinach,dog,Yes,night owl,Yes,32 Flavors by Alana Davis
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Science: Biology/Life,,,53706,42.9005,-88.0291,pineapple,dog,No,night owl,Maybe,Regular (English Version)- NCT 127
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Other (please provide details below).,Economics,Spanish,53715,36.1699,-115.1398,mushroom,dog,No,night owl,Yes,
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,I am an undecided freshman major right now. I am thinking about applying to the industrial engineering major or majoring in psychology and legal studies because I have an interest in going to law school. ,,53706,25.7033,-80.2828,none (just cheese),dog,Yes,night owl,Maybe,Lay All Your Love On Me by ABBA
COMP SCI 319:LEC003,LEC003,24,Other (please provide details below).,Economics,,53703,40,116,sausage,cat,No,night owl,No,"Play Date
Martinez"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Information Science. Possibly data science certificate.,,53703,48.8566,2.3522,macaroni/pasta,dog,No,night owl,Maybe,Dandelions by Ruth B.
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Computer Science,,,53715,42.1024,-88.0585,pineapple,dog,Yes,night owl,Yes,The Scientist by Coldplay
COMP SCI 319:LEC004,LEC004,23,Other (please provide details below).,Economics,,53704,39.904,116.407,pineapple,neither,Yes,early bird,Yes,Every song by Jay Chou. A Chinese singer.
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Data Science,,economics,57306,24.4798,118.0894,pepperoni,neither,No,night owl,No,The Hills by The weekend
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Business: Finance,,,53703,43.076,89.3929,pepperoni,dog,Yes,no preference,Yes,"Jake's Piano - Long Island
Zach Bryan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,Nuclear Engineering,,53703,40.7128,-74.006,Other,dog,Yes,night owl,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,,Engineering: Mechanical,,,53703,33.493,-111.9258,pepperoni,dog,No,night owl,Yes,Teguila Shots- Kid Cudi
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Mathematics/AMEP,,,53703,53.3498,-6.2603,none (just cheese),dog,No,early bird,Yes,You Can't Make Old Friend by Kenny Rogers ft. Dolly Parton
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53703,40.71,-74,none (just cheese),dog,Yes,night owl,Yes,Anything Harry Styles
COMP SCI 319:LEC004,LEC004,22,Business: Information Systems,,,53703,36.0671,120.3826,pineapple,dog,No,night owl,Maybe,lonely dance
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Mechanical,,,53715,44.9212,-93.4688,pepperoni,dog,No,night owl,Yes,Snow (Hey Oh) by Red Hot Chili Peppers
COMP SCI 319:LEC001,LEC001,23,Computer Science,,,53703,23.1291,113.2644,tater tots,neither,Yes,early bird,Maybe,《lost stars》- Adam Levine
COMP SCI 319:LEC003,LEC003,22,Other (please provide details below).,Geography - Geographic Information Science and Cartography,N/A,53715,45.5017,-73.5673,mushroom,dog,No,night owl,Yes,Afterglow - Ed Sheeran
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Other (please provide details below).,Computer Science,Data Science,53706,35.6895,139.6917,sausage,dog,No,night owl,Yes,"Lost in Paradise , Miura Jam"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53715,30.1766,-85.8055,pepperoni,dog,No,early bird,No,"Billie Jean-Micheal Jackson
or
Cum on Feel the Noize-Quiet Riot"
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,39.1898,106.8183,pepperoni,dog,No,night owl,Yes,Peach — Sammy Virji
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,22,Computer Science,,,53703,17.4203,78.4029,mushroom,dog,Yes,no preference,Maybe,Popular (feat. Playboi Carti) by The Weeknd & Madonna
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Data Science,,Computer Science,53705,37.45,-122.2,pineapple,cat,No,early bird,Maybe,Natural - What If
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,Yes,night owl,Yes,All Falls Down by Kanye West
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,Other,dog,Yes,early bird,No,Fishing in the Dark - Nitty Gritty Dirt Band
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Other (please provide details below).,Economics,,53703,22.5431,114.0579,pepperoni,dog,Yes,night owl,No,snowman-sia
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Data Science,,,53706,28.5383,-81.3792,sausage,dog,No,early bird,No,Come On Eileen by Dexys Midnight Runners
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,39,Data Science,xxx,Biomedical Data Science,53713,47.3006,-88.0459,pepperoni,cat,Yes,no preference,Yes,"Our Song, Joe Henry"
COMP SCI 319:LEC001,LEC001,23,Science: Other,information science,,53718,40.4259,-86.9081,pepperoni,dog,No,no preference,Yes,Young and Beautiful by Lana Del Rey
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Computer Science,,,53703,39.3597,111.5863,pepperoni,dog,No,night owl,Yes,Baby I'm bleeding - Jpeg Mafia
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Engineering: Biomedical,,,57303,41.8,-72,sausage,dog,No,early bird,No,Money - The Drums
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC001,20,Data Science,,Math Econ,53711,48.1376,11.5799,pepperoni,cat,No,no preference,Maybe,FE!N by Travis Scott
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,Spanish,53706,44.7666,-85.5946,none (just cheese),dog,Yes,no preference,No,Single ladies - Beyoncé
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53718,40.7584,-73.9843,none (just cheese),dog,Yes,early bird,Maybe,"Spectrum - Florence + The Machine, Calvin Harris"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Computer Science,,,53706,22.3072,73.1812,none (just cheese),neither,Yes,no preference,Maybe,I have no such preference for songs.
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Computer Science,I am a computer science major.,Not Mandatory,53706,25.2048,55.2708,pepperoni,dog,Yes,early bird,No,Titi me pregunto by bad bunny.
COMP SCI 319:LEC004,LEC004,24,Other (please provide details below).,Econometrics,,53711,24.8801,102.8329,pineapple,cat,No,night owl,Yes,Resting Ground by Christopher Larkin
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,economics,data science,53703,5.4203,100.3119,none (just cheese),cat,No,no preference,Maybe,You give love a bad name bon jovi
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,,Business: Finance,,,53703,52.3702,4.8952,pepperoni,dog,No,night owl,Yes,Radio Ga Ga by Queen.
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Science: Biology/Life,,,53706,-8.6399,115.1402,Other,dog,No,night owl,Yes,Rise
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Data Science,,,53706,,,pepperoni,dog,No,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Biomedical,,Spanish,53715,44.8504,93.7876,pineapple,dog,Yes,night owl,Yes,Nonstop by Drake
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53711,-33.9249,18.4241,pineapple,dog,Yes,early bird,Yes,Violent Crimes - Kanye West
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Data Science,,Information Systems,53175,28.5383,-81.3792,sausage,dog,No,early bird,No,Come On Eileen by Dexys Midnight Runners
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Mathematics/AMEP,,Psychology,53715,38.9072,-77.0369,pineapple,dog,No,early bird,Yes,Love Story - Taylor Swift
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Engineering: Industrial,N/A,N/A,53711,42.6507,18.0944,pepperoni,dog,Yes,no preference,Yes,Holanda - Jhayco
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53715,40.7128,-74.006,pepperoni,neither,Yes,night owl,Yes,《花海》from 周杰伦;Floral Sea by Jay Chou
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,22,Other (please provide details below).,Mechanical Engineering,Physics,53711,39.7392,-104.9903,pineapple,dog,No,night owl,Yes,"""The Weight of Dreams"" by Greta Van Fleet (modern day copy-cat of Led Zeppelin)"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Mechanical,,,53715,49.7938,-93.1955,mushroom,dog,Yes,night owl,Yes,Hurt Feelings by Mac Miller
COMP SCI 319:LEC002,LEC002,23,Science: Other,master of science information (data analyst),none,53703,44.0521,-123.0868,sausage,cat,No,night owl,Yes,beside you - keshi
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,21,Statistics,,,53703,44.51,88.01,basil/spinach,cat,No,night owl,Yes,Dunno - mac miller
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,23,Computer Science,,Economics,53715,55.6761,12.5683,sausage,dog,Yes,no preference,Yes,Uden dig - ukendt kunster
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Cellular and Molecular Biology,Japanese,53703,35.3032,139.5657,basil/spinach,dog,No,night owl,Yes,Memories by Maroon 5
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Computer Science,,,53706,37.5326,127.0246,sausage,cat,Yes,no preference,Yes,"Title: Some might say (Oasis)
"
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Finance,Finance ,Marketing,53715,64.9631,-19.0208,sausage,dog,No,night owl,Yes,Jump Around by House of Pain
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,Undecided,,53715,41.8781,-87.6298,basil/spinach,dog,No,early bird,Yes,New Beat by Toro y moi
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Economics,,53818,43,0,sausage,neither,No,night owl,Maybe,None
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,39.9526,-75.1652,pepperoni,dog,No,night owl,Yes,All the Stars by Kendrick Lamar and SZA
COMP SCI 319:LEC004,LEC004,22,Computer Science,,,53715,22.5431,114.0579,sausage,cat,No,night owl,Yes,cruel summer!!! Taylor swift!!!
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Accounting,Finance,53715,41.8781,-87.6298,sausage,dog,Yes,night owl,Yes,Change- Bailey Zimmerman
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Political Science,,53703,41.8781,-87.6298,Other,cat,Yes,early bird,Maybe,"Nashville, TN by Chris Stapleton"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Computer Science,,,53715,22.5886,88.4043,Other,dog,No,no preference,Yes,Elevated - Shubh
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC004,20,Data Science,,,53703,35.9078,127.7669,pepperoni,dog,Yes,early bird,Yes,One Call Away - Charlie Puth
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53703,49.2827,-123.1207,pineapple,cat,No,no preference,Yes,"before he cheats
by carrie underwoods"
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Engineering: Biomedical,,,53706,35.6895,139.6917,basil/spinach,dog,Yes,no preference,Yes,Wind Blows - Dreamcatcher
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Mechanical,n/a,n/a,53706,43.0517,-89.3427,macaroni/pasta,dog,Yes,no preference,Yes,"title: wonderwall
artist: Oasis "
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Data Science,,,53716,44.5133,-88.0133,green pepper,dog,No,night owl,Yes,Mr. Rager by Kid Audi
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Business: Finance,,"Mathamatics for finance, Economics",53703,24.4798,118.0894,Other,cat,Yes,no preference,Maybe,Not good enough for you-Jay Chou
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Business: Other,Marketing,,53715,43.0389,-87.9065,none (just cheese),cat,Yes,no preference,Maybe,I guess that's why they call it the blues - Elton John
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Data Science,I plan to major in Data science.,no second major,53711,33.6225,113.3418,basil/spinach,dog,No,night owl,Maybe,That Girl by Olly Murs
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,23,Other (please provide details below).,Economics,Political Science,53703,43.0731,-89.4012,pepperoni,cat,Yes,night owl,No,500 Miles
COMP SCI 319:LEC001,LEC001,30,Engineering: Other,,,53705,-34.4909,-58.4892,pepperoni,dog,Yes,early bird,Maybe,Sweet Child O' Mine - Guns N' Roses
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economic,,53705,31.2304,121.4737,none (just cheese),cat,No,early bird,Yes,Closer by the chainsmokers
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Business: Information Systems,,,53706,33.4484,-112.074,none (just cheese),dog,No,no preference,Yes,runaway by Kanye West
COMP SCI 319:LEC002,LEC002,25,Engineering: Other,,,53705,37.1765,-3.5979,basil/spinach,cat,No,night owl,Maybe,Time of Our life - DAY6
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,21,Science: Biology/Life,,French,53703,44.9019,-93.3388,basil/spinach,dog,Yes,no preference,Yes,Brazil- Declan McKenna
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Data Science,,Economics,53715,43.7696,11.2558,none (just cheese),cat,Yes,night owl,Yes,November Rain Guns N' Roses
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Finance,Econ with data science certificate ,53703,41.3851,2.1734,pepperoni,dog,No,no preference,No,(It goes like) nanana by Peggy Gou
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,38.7223,-9.1393,basil/spinach,dog,Yes,no preference,No,Nice For What by Drake
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Information Systems,,"Supply chain, operation technology managment ",53703,12.4964,41.9028,pineapple,dog,No,night owl,Yes,My favorite song is probably dancing queen by ABBA
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Mechanical,,,53706,47.6775,11.2041,basil/spinach,dog,No,no preference,Yes,Uptown Girl by Billy Joel
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Data Science,,,53703,31.8433,117.2457,Other,dog,No,night owl,Yes,"Title: [Mrs. Shexiang] (https://www.last.fm/music/Phoenix+Legend/_/Mrs.+Shexiang)
Artist: Phoenix Legend"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Data Science,,,53706,55.68,12.58,pepperoni,cat,No,night owl,Maybe,Love Lost - Mac Miller
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,economics BA,,53711,35.6895,139.6917,mushroom,dog,No,no preference,Yes,My favorite song is Favorite Song.
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,18,Computer Science,,,53706,45.4642,9.19,pepperoni,cat,No,night owl,Maybe,"****************************
The Weeknd - Save Your Tears
****************************"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,31.8089,120.6153,Other,cat,No,no preference,Yes,Blood Type-Viktor Tsoi
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Engineering: Biomedical,,,53703,40.4855,-106.8336,pepperoni,dog,Yes,early bird,Maybe,When it Rains it Pours by Luke Combs
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Business: Finance,,Real Estate,94024,40.7128,-74.006,sausage,dog,Yes,night owl,Maybe,
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Finance,N/A,N/A,53703,1.2,4.2,pepperoni,dog,No,no preference,Maybe,I'm gonna be (500miles) by the proclaimers
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,,Engineering: Mechanical,,,53703,39.6456,-77.4205,pepperoni,dog,No,no preference,Yes,Jimmy Cooks by Drake
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Business: Finance,N/A,Data science,53706,13.8079,108.1094,basil/spinach,dog,No,early bird,Maybe,"Truoc khi em ton tai - Thang
Mirror ball - Taylor Swift"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Other,Environmental Science,,53715,41.8781,-87.6298,green pepper,dog,Yes,night owl,Yes,Black Swan by BTS
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,19,Mathematics/AMEP,,,53715,44.79,-89.7,pepperoni,dog,No,no preference,No,I don't have a favorite
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Data Science,Information and data science,,53703,43.0389,-87.9065,pepperoni,dog,No,night owl,Maybe,mayonaise smashing pumpkins
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,My primary major is Economics.,My secondary major is Psychology. I have declared a certificate in data science.,53703,35.6895,139.6917,pepperoni,neither,No,no preference,Maybe,"Hype boy - New Jeans
Paris in the rain - Lauv
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,21,Data Science,,,53703,32.8328,-117.2713,Other,dog,Yes,night owl,Maybe,The Pale Moonlight - Kid Cudi
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,information science ,data science,53706,41.3851,2.1734,green pepper,dog,Yes,night owl,Yes,Jungle - Drake
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,22,Science: Biology/Life,,,53715,47.0502,8.3093,macaroni/pasta,dog,No,night owl,Yes,Under Pressure by Queen and David Bowie
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Industrial,,,53703,18.0231,-63.0482,Other,cat,No,no preference,No,Could you be loved - Bob Marley
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Information Science,,53703,49.2827,-123.1207,pepperoni,dog,No,night owl,Yes,tell me what you want - dacelynn
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Statistics,I selected Statistics above.,I am considering double majoring in data science.,53703,60.1699,24.9384,pepperoni,dog,Yes,early bird,Yes,Mrs. Hollywood - Go-Jo
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,I am undecided but planning on potentially majoring in Data Science or at least getting a certificate. ,"I am also potentially majoring in International Studies, but am currently undecided.",53706,37.7749,-122.4194,basil/spinach,dog,Yes,night owl,Maybe,"""The Air That I Breathe"" The Hollies "
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,N/A,N/A,53706,43.0389,-87.9065,pepperoni,dog,Yes,early bird,Yes,Jungle by Andre Nickatina. Its Christian Yelich's walk up song.
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Business: Finance,,Psychology,53715,51.5074,-0.1278,basil/spinach,cat,No,night owl,Yes,Daydreaming by Harry Styles
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,Mech E,,53715,41.1579,-8.6291,basil/spinach,dog,No,night owl,Yes,Zach Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Data Science,,,53706,19.64,-156,pepperoni,dog,Yes,night owl,Yes,From Time by Drake
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Actuarial,,Data Science,53706,43.485,-89.754,mushroom,neither,No,night owl,Yes,"New Romantics, Taylor Swift"
COMP SCI 319:LEC001,LEC001,22,Other (please provide details below).,Information Science,No,53703,31.23,121.47,mushroom,dog,No,night owl,Maybe,"Artist: BLACKPINK, Title: Shut Down"
COMP SCI 319:LEC001,LEC001,22,Other (please provide details below).,Information science,,53703,31.23,121.47,mushroom,dog,No,night owl,Yes,"Song: Shut Down, Artist: Black Pink"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Engineering: Mechanical,,,53706,47.6062,-122.3321,pineapple,dog,Yes,early bird,No,Flashing Light by Kanye West
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53714,45.8713,-89.7116,pepperoni,cat,Yes,night owl,Yes,Africa by Toto
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Science: Physics,,,53726,60.39,5.32,mushroom,dog,Yes,night owl,Yes,Heat Above by Greta Van Fleet
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,21,Other (please provide details below).,Genetics and Genomics,,53703,36.7234,25.2822,basil/spinach,dog,Yes,early bird,Maybe,Kiss of Venus - Dominic Fike
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Other (please provide details below).,Data Science and Mathematics ,,53706,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,Heart Throb - Pritam
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Business: Finance,,,53703,41.8818,-87.8367,pepperoni,dog,No,night owl,No,"Boogie Wonderland by Earth, Wind, and Fire and The Emotions"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Legal Studies major,,10075,40.7131,-74.0072,pepperoni,dog,Yes,no preference,Yes,Dancing in the Moonlight
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Computer Science,,,53703,43.0731,-89.4012,pineapple,cat,No,no preference,Yes,Hits Different - Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Data Science,,,53715,45.4642,9.19,pineapple,dog,No,night owl,Yes,Passionfruit - Drake
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Computer Science,,Data Science,53715,25.2345,110.18,mushroom,cat,No,night owl,Maybe,Midsummer Madness by 88rising
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Engineering: Industrial,,,53706,60.8525,7.1136,pepperoni,dog,Yes,no preference,No,Boulevard of Broken Dreams by Green Day
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Engineering: Industrial,,,53715,51.5074,-0.1278,none (just cheese),dog,No,night owl,Yes,"unruly NSG,Meeks"
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Data Science,,Global Health,53715,18.58,-68.41,macaroni/pasta,cat,Yes,early bird,Yes,"November Rain, Guns N' Roses"
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,44.5004,-88.0613,pepperoni,cat,Yes,early bird,Maybe,"""Take It Easy"", Eagles"
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,21,Science: Biology/Life,,,53590,59.9,10.7,macaroni/pasta,cat,Yes,early bird,Yes,Trouble by Elvis Presley
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Engineering: Mechanical,,,53703,44.5133,-88.0133,pepperoni,dog,No,early bird,No,Revival by Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Business: Information Systems,,,53590,45.5017,73.5674,pepperoni,neither,Yes,night owl,Maybe,Teeth by 5 Seconds of Summer (please do play this one sometime!)
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53706,47.227,-88.164,pineapple,cat,No,night owl,Yes,stacy's mom by fountains of wayne
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Other (please provide details below).,Undecided,,53706,42.3314,-83.0458,pepperoni,dog,No,night owl,Maybe,Always Forever by Cults
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,36.3719,-94.2027,mushroom,dog,Yes,early bird,No,At the Beach by the Avett Brothers
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Other (please provide details below).,Economics,,53703,41.9028,12.4964,pepperoni,dog,Yes,night owl,Yes,Free bird - lynyrd skynyrd
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Other (please provide details below).,Behavioral Economics,"Mathematics, Data Science Minor",53715,42.3601,-71.0589,basil/spinach,dog,Yes,early bird,No,Sitting on Top of the World - Burna Boy
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Mechanical,,,53706,34.4208,-119.6982,pineapple,dog,No,early bird,Maybe,snooze by SZA
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53706,42.584,-87.82,pepperoni,dog,Yes,no preference,Maybe,Outside- Calvin Harris
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Business: Other,,,53703,37.1324,24.815,pepperoni,dog,No,night owl,Yes,Thunder by Imagine Dragons
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,44.79,-89.723,pepperoni,dog,No,no preference,No,Eye of the Tiger
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Engineering: Mechanical,,,53703,-33.9249,18.4241,pepperoni,dog,No,no preference,Yes,The Adults Are Talking - The Strokes
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Science: Other,My primary major is Atmospheric and Oceanic Science.,I am considering double majoring in either Environmental Studies or Math. ,53715,40.5853,-105.0844,none (just cheese),dog,Yes,no preference,Yes,"""Tidal"" Noah Kahan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Mechanical,,,53703,41.9,-87.6,pepperoni,dog,No,night owl,No,Revival by Zach Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC002,20,Other (please provide details below).,Economics.,Data Science.,53703,44.972,-93.51,pepperoni,dog,Yes,night owl,Maybe,Broken Clocks by SZA.
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Other (please provide details below).,Economics and Data Science,,57315,42.6256,-71.3853,pepperoni,dog,Yes,night owl,Yes,Style by Taylor Swift
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Data Science,-,Econ ,53711,1.3521,43.0731,mushroom,dog,Yes,early bird,Maybe,low-key - Nikki
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Computer Science,,,53703,61.2114,-149.7313,mushroom,cat,Yes,night owl,No,"""I Wonder"" by Kanye West"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Mechanical,,,53726,46.5436,-87.3954,basil/spinach,cat,Yes,night owl,Yes,"Snow, Red Hot Chili Peppers "
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53715,43,-89.3,pepperoni,dog,No,night owl,Yes,"FIEN, Travis Scott"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Mathematics/AMEP,,Statistics,53715,27.2195,78.0216,Other,neither,No,night owl,Yes,Taylor Swift- Style
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Science: Physics,n/a,n/a,53706,31.2304,121.4737,mushroom,cat,No,night owl,Yes,"Concorde -- Black Country, New Road"
COMP SCI 319:LEC001,LEC001,,Other (please provide details below).,economics,no,53705,39.9042,116.4074,mushroom,cat,Yes,night owl,Yes,What you mean to me -- Matthew Morrison/Laura Michelle Kelly
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC003,18,Engineering: Industrial,n/a,n/a,53706,1.3521,103.8198,pepperoni,dog,Yes,night owl,Yes,When the Day is Done by Grent Perez
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Science: Biology/Life,,,53719,51.5074,-0.1278,Other,cat,No,night owl,Maybe,Father Time - Kendrick Lamar
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Business: Other,Business related but undecided.,n/a,53706,37.5326,127.0246,mushroom,dog,No,night owl,Yes,"New Jeans - ETA
New Jeans - OMG"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,42.2387,-87.9596,pepperoni,neither,Yes,night owl,Maybe,Laugh Now Cry Later - Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,21,Data Science,,,53703,43.4714,-110.7688,sausage,dog,Yes,night owl,Yes,My Old School - Steely Dan
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53715,43.07,-89.4,sausage,dog,No,no preference,Maybe,I Hope That's True by Morgan Wallen
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,,Other (please provide details below).,Undecided.,,53706,35.6895,139.6917,sausage,cat,No,night owl,Yes,Stitches-Shawn Mendes
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,Finance,Information Systems,53718,43.6511,-79.347,sausage,dog,No,night owl,Maybe,Over by Drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Science: Biology/Life,,Data Science,53715,13.7563,100.5018,pepperoni,dog,No,night owl,Yes,Hurricane Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Business: Finance,,,53715,50.0755,14.4378,pepperoni,dog,No,night owl,Yes,Nonstop by Drake
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,22,Science: Biology/Life,,"Data Science, BS",53703,37.5683,126.9978,pepperoni,cat,No,night owl,No,'Mourning' - Post Malone
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,20,Data Science,,,53703,37.44,25.37,pepperoni,cat,No,night owl,Yes,Spotless- Zach Bryan ft. The Lumineers
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Business: Finance,,Business: Information Systems,53715,52.3702,4.8952,Other,cat,No,early bird,Yes,As It Was by Harry Styles
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53703,24.4882,54.3773,none (just cheese),cat,No,night owl,Yes,
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Computer Science,,,53703,42.9856,-88.0761,Other,dog,No,night owl,No,"Aries - Fools gold
"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Data Science,,,53703,33.4484,-112.074,mushroom,cat,No,night owl,Yes,fire burning -sean kingston
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53715,40.7128,-74.006,none (just cheese),dog,No,early bird,Yes,"Ordinaryish People, by AJR"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,22,Other (please provide details below).,"Economics, with data science certificate.",,53711,34.7466,113.6253,pepperoni,cat,Yes,no preference,Maybe,"One Last Kiss, by Utada Hikaru"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Data Science,,,53726,43.2815,-88.4091,sausage,dog,No,night owl,No,Normal Girl by SZA
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Engineering: Industrial,,,53703,39.6349,-106.5283,pepperoni,dog,Yes,night owl,Yes,Dark Necessities by The Red Hot Chilli Peppers
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Mathematics/AMEP,,Statistics,53706,31.2304,121.4737,sausage,cat,Yes,early bird,Yes,Scared 2 be Lonely--Lil Tjay
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,,Computer Science,,Data Science,53715,42.3601,-71.0589,sausage,dog,No,night owl,Yes,The Ladder - Margolnick
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Data Science,,Economics,53706,60.1282,18.6435,Other,dog,No,night owl,Maybe,Smells like teen spirit-Nirvana & Pretender- Foo Fighters (I'm never able to select my most favourite out of these two)
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Atmospheric and Oceanic Studies,,53726,44.447,88.889,pepperoni,dog,No,night owl,Yes,Julia - Mt. Joy
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53706,47.3886,-88.0226,pepperoni,dog,Yes,night owl,Maybe,"""Need 2"" by Pinegrove"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC004,19,Science: Other,,,53703,29.4316,106.9123,mushroom,neither,No,night owl,No,“FIREWORK” by &TEAM
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,44.5133,-88.0133,pineapple,dog,Yes,early bird,Yes,At the End of the Day -Wallows
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,,Data Science,,,53713,3.139,101.6869,basil/spinach,cat,Yes,no preference,Yes,Lady Gaga - Bad Romance
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Other (please provide details below).,Economics,N/A,53703,42.3601,-71.0589,basil/spinach,dog,No,night owl,Maybe,Revival - Zach Bryan
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,No,night owl,Yes,"""Passionfruit"" by Drake"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Engineering: Mechanical,,,53706,46.8108,-90.8182,pepperoni,dog,No,night owl,Maybe,"""My Hero"" by Foo Fighters "
"COMP SCI 220:LEC003, COMP SCI 220:LAB334, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,25.3176,82.9739,pepperoni,dog,Yes,early bird,Maybe,"Safe and Sound, by Capital cities"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Languages,N/A,N/A,53706,12.9716,77.5946,basil/spinach,cat,Yes,night owl,No,baseball - Hippocampus
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Data Science,,,53706,42.3601,-71.0589,sausage,dog,Yes,night owl,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,40.7128,-74.006,none (just cheese),dog,No,night owl,Yes,Father Stretch My Hands - Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Data Science,,,2038,,-71.0589,pepperoni,dog,Yes,night owl,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Mathematics/AMEP,,"Statistics, B.S.",53703,30.2741,120.1551,none (just cheese),dog,Yes,night owl,Maybe,Careless Whisper by Wham!
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Other,Material Science and Engineering,,53706,47.608,-122.3352,sausage,dog,No,night owl,Maybe,"************
Sixteen Tons
************
Geoff Castellucci
"
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,I am an economics major.,I may double major in data science but for now it is a minor.,53703,40.4987,-111.8188,green pepper,cat,No,night owl,Yes,Walking On A Dream by Empire of The Sun.
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Other (please provide details below).,economics,,53706,45.0938,-93.4976,Other,dog,No,no preference,Maybe,Drift Away - Uncle Kracker
COMP SCI 319:LEC004,LEC004,23,Science: Other,Economics,nope,53703,41.7407,123.4399,pepperoni,cat,No,night owl,No,Kiss Goodbye
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Business: Finance,,,54143,37.3891,-5.9845,pepperoni,dog,Yes,early bird,No,The House of the Rising Sun - The Animals
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,46.5,-94.3,sausage,dog,No,night owl,Yes,As She's Walking Away by Zac Brown Band
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Engineering: Mechanical,,,53703,40.7128,-74.006,pepperoni,dog,Yes,night owl,Yes,"Junio, Maluma
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,,54636,41.8781,-87.6298,mushroom,dog,No,early bird,Yes,Cherry by Harry Styles
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53597,44.7866,20.4489,macaroni/pasta,cat,No,night owl,Yes,bad dream baby - hippo campus
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Other (please provide details below).,Economics ,N/A,53703,43,-89,sausage,dog,No,early bird,Maybe,Cough Syrup - Young the Giant
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Biomedical,,,53706,40.7865,-74.3921,sausage,dog,No,night owl,Yes,"Fancy
Drake"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Mechanical,,,53706,-8.6786,115.4556,pepperoni,dog,Yes,no preference,Maybe,Hotel California-Eagles
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53703,40.7131,-74.0072,pineapple,dog,Yes,night owl,Yes,Freestyle by Lil Baby
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,Deciding between Biology and Biomedical Engineering,,53706,45.2658,-111.3003,pepperoni,dog,No,night owl,No,Best of You by the Foo Fighters
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Other (please provide details below).,Economics (Minor in Data Science),,53715,43.0722,-89.4012,sausage,dog,Yes,night owl,No,Art of Living - Mat Kerekes
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,51.5035,-0.1278,macaroni/pasta,neither,No,night owl,Yes,Movin' Out by Billy Joel
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53703,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,I Know - Travis Scott
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Science: Physics,NA,Currently in astrophysics but trying to transfer into the school of Engineering for Mechanical Engineering. ,53703,21.3069,-157.8583,sausage,cat,Yes,no preference,Maybe,"It's my Life, Bon Jovi"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,,Computer Science,,Maybe majoring in data science but I might minor it.,53706,60.1282,18.6435,none (just cheese),cat,No,no preference,Yes,Mad at the World - Heffron Drive
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Science: Physics,,,53706,44.9778,-93.265,basil/spinach,cat,No,night owl,Yes,Out of My League - Fitz and the Trantrums
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Business: Other,,,53726,43,-89,pepperoni,neither,No,no preference,Maybe,post malone
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53705,31,121,pepperoni,cat,No,night owl,Yes,Something Just Like This - The Chainsmokers & Coldplay
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics and Data Science.,,53703,26.6141,-81.8258,pepperoni,dog,Yes,night owl,Maybe,"Sweet Caroline, Neil Diamond"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,25,Other (please provide details below).,Zoology Major,n/a,53719,41.8781,-87.6298,basil/spinach,dog,No,night owl,Yes,"Dirty Little Secret
Song by The All-American Rejects"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,39,116,mushroom,cat,Yes,night owl,Maybe,see you again
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Yes,Fear and Fridays - Zach Bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Data Science,,,53706,40.7128,-74.006,pepperoni,dog,No,early bird,Maybe,Holy Ground by Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,mushroom,dog,No,no preference,No,"Wish You Were Here - Pink Floyd
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53715,38.5733,-109.5498,pineapple,dog,No,early bird,No,Don't You Worry Child by Swedish House Mafia
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53715,46.2044,6.1432,sausage,dog,Yes,no preference,No,"""Woods"" by Mac Miller"
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,"Economics major, data science minor ",,53703,38.4187,27.1296,green pepper,cat,Yes,no preference,No,Piano Man by Billy Joel
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Engineering: Industrial,,,53705,24.7136,46.6753,pepperoni,dog,Yes,early bird,No,"Mohammed Abdu- Artist
Wienak ya darb al mahaba"
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,40,Data Science,"Data Science is my primary major.
I am a returning student. My past Major was AMEP. Data Science majors didnt exist then. It fits better with what I was working towards. I love probablility and statistics.",NA,53705,43,88,sausage,cat,Yes,no preference,No,"Moonlight Sonata Movement #1 played on the piano vs the radio while it rains or at night with the windows open is awesome!!!!!!
Movement #3 will blow your mind.
If you dont like any of those, louisiana harmonica is good."
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,NA,NA,53703,45.8733,-63.5841,pepperoni,cat,No,early bird,Maybe,"Revival, Zach Bryan "
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Other (please provide details below).,"Still deciding from Mathematics, Statistics, and Economics.",,53706,39.9042,116.4074,sausage,neither,Yes,early bird,Maybe,"Title: Croatian Rhapsody
Artist: Tonci Huljic"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Science: Other,Nursing,Global Health minor ,53706,43.8376,10.4951,pepperoni,dog,Yes,night owl,Maybe,Gimme! Gimme! Gimme! by ABBA
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Data Science,,Economics (Math Emphasis) or Math for Econ and finance (still thinking),53706,55.7558,37.6173,pepperoni,dog,No,no preference,Maybe,Safe and Sound by Capital Cities
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Science: Other,Atmospheric and Oceanic Sciences,,53711,48.8566,2.3522,pineapple,dog,Yes,night owl,Maybe,Lady May by Tyler Childers
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,43.0742,89.3838,macaroni/pasta,dog,Yes,night owl,Yes,Little Wing - Jimi Hendrix
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53711,43.0731,-89.4012,sausage,dog,Yes,night owl,Yes,"Encore by the Red Hot Chili Peppers
"
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Other (please provide details below).,undecided,,53703,40.7306,73.9352,basil/spinach,dog,No,night owl,Yes,"Erase Me, Lizzie McAlpine"
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53726,45.5152,122.6784,pepperoni,dog,Yes,night owl,Yes,Pennies - Smashing Pumpkins
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,,Engineering: Industrial,,,53715,44.4047,8.9291,sausage,dog,Yes,early bird,Yes,"You Don't Love Me (No, No, No) - Dawn Penn"
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53715,40.7128,-74.006,pepperoni,dog,Yes,early bird,No,"""What You Know"" by Two Door Cinema Club"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC003,18,Data Science,,,53706,18.7897,98.9844,pineapple,dog,No,night owl,Yes,"One of my favorite songs is ""Bahamas"" by HARBOUR. "
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Computer Science,,,53704,43.0739,-89.3852,pepperoni,dog,Yes,night owl,Maybe,Bang Bang - K'NAAN
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,nuclear engineering,.,53715,47.6,-122.33,sausage,dog,Yes,night owl,Yes,"smells like teen spirit
-nirvana"
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53703,39.0742,21.8243,mushroom,dog,No,night owl,Yes,Cardigan - Don Toliver
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Business: Other,"Other: Accounting
",Business- Information Systems,53726,51.5074,-0.1278,none (just cheese),dog,Yes,early bird,No,Abba- Dancing Queen
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Science: Biology/Life,I am planning to major in neurobiology.,"Data Science
total 2 majors. Neurobiology and Data Science.",53706,36.9741,-122.0288,none (just cheese),cat,Yes,no preference,Maybe,Learn To Fly - Foo Fighters
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,42.3601,-71.0589,pepperoni,cat,No,night owl,Maybe,Show No Regret by Daniel Caesar
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,17,Engineering: Mechanical,,,53706,57.6202,-133.2372,pineapple,dog,No,night owl,Maybe,I Wanna Dance with Somebody by Whitney Houston
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Science: Other,Atmospheric and Oceanic Sciences,N/A,53726,42.7,-89.8679,none (just cheese),cat,No,night owl,Maybe,Might Be Right - White Reaper
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics ,N/a,53703,25.1931,55.279,pepperoni,neither,No,early bird,No,6th Sense-Kodak Black
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Data Science,,,53706,40.4168,-3.7038,basil/spinach,dog,Yes,early bird,No,Polaris Remix Saiko ft. Mora Feid Quevedo
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,42.3601,-71.0589,pineapple,cat,No,night owl,Yes,"zz melt - Jagger Finn
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Data Science,,,53703,44.7394,-93.1258,pepperoni,dog,No,night owl,No,"Self Care, Mac Miller"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Other (please provide details below).,international studies,,53703,41.3851,2.1734,pineapple,dog,Yes,no preference,Yes,"American Pie, Don Mclean"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53706,43.039,-87.906,pepperoni,neither,No,no preference,Yes,Flashing Lights - Kanye West
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Engineering: Industrial,N/A,N/A,53715,88.384,43.0058,pepperoni,dog,Yes,night owl,Maybe,"Stick Season
Noah Kahan"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC003,19,Data Science,,,53713,35.6895,139.6917,sausage,cat,No,night owl,Yes,Its You by Keshi
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Data Science,,,53715,45.9141,-89.2558,mushroom,dog,No,no preference,Yes,"Making Eyes by Archers. Madison based metalcore band! (beware of the screamo sections to some of their songs, lol)"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Engineering: Biomedical,,,53706,22.9068,43.172,mushroom,dog,Yes,early bird,Maybe,Out of Reach- BoywithUke
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,21,Business: Actuarial,,Risk Management & Insurance,53703,43.0731,-89.4012,green pepper,dog,Yes,early bird,No,Layla by Eric Clapton
COMP SCI 319:LEC004,LEC004,24,Other (please provide details below).,Econ,,53703,39.9042,116.4074,pineapple,neither,No,night owl,Maybe,"Savage Daughter
Sarah Hester Ross"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,cat,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Business: Finance,,,53703,40.7128,-74.006,pineapple,dog,No,night owl,Yes,FE!N- Travis Scott
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Business: Finance,,I am doing a data science certificate and planning on a double major in information systems.,53703,41.8781,-87.6298,mushroom,dog,No,early bird,No,"Hozier
Cherry Wine"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,,53711,21.3069,-157.8583,sausage,dog,Yes,night owl,Yes,I KNOW ? - Travis Scott
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,18,Engineering: Industrial,,,55337,48.8566,2.3522,mushroom,dog,No,night owl,Yes,The Other Side of the Door - Taylor Swift
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,17,Data Science,None,Biology,53706,52.3702,4.8952,Other,dog,Yes,early bird,No,Counting Stars by One Republic
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53703,1.3521,103.8198,pineapple,cat,Yes,night owl,Maybe,Someone Like You by Adele
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53726,44.988,-87.243,sausage,dog,No,early bird,No,Chattahochee by Alan Jackson
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Industrial,,,53705,23.5859,58.4059,pepperoni,neither,No,no preference,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,,Data Science,,Economics,53706,1.3521,103.8198,mushroom,cat,No,night owl,Yes,Cupid by Fifty Fifty
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Business: Other,Marketing,,53703,41.3851,2.1734,basil/spinach,dog,No,no preference,No,What is Love by Haddaway
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Data Science,,,53706,43.1132,-87.9997,sausage,cat,Yes,early bird,Yes,Viva la Vida by Coldplay
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Other (please provide details below).,Urban Studies,,53715,37.9838,23.7275,pepperoni,cat,No,no preference,No,Eat The Rich by Aerosmith
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Engineering: Mechanical,,,53715,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Yes,"""If I Know Me"" by Morgan Wallen"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Engineering: Industrial,,,53706,18.3288,-66.9713,pineapple,dog,No,night owl,No,Dancing Queen - Abba
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Industrial,,,53706,43.0739,-89.3852,pepperoni,dog,No,no preference,Maybe,Be Happy by 347aidan
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Science: Biology/Life,,,53726,30.2741,120.1551,pepperoni,cat,No,night owl,Maybe,N/A. I don't have a favorite song.
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,17,Data Science,,,53706,39.9042,116.4074,sausage,dog,No,night owl,No,"Red Eye
Justin Bieber"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,40.7128,-74.006,Other,dog,Yes,night owl,Maybe,September by Earth Wind and Fire
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Other (please provide details below).,Psychology,,53706,45.9857,-123.9082,pepperoni,dog,No,early bird,No,"""Stay"" by Post Malone"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Computer Science,,,53711,43.0739,-89.3852,Other,dog,No,night owl,Yes,Little Wing by Jimi Hendrix
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Mathematics/AMEP,,English - Creative Writing,53715,41.8661,-88.107,pepperoni,neither,No,early bird,Maybe,Unending Stream of Life -- David Maslanka
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,17,Data Science,,,53711,32.2259,35.2549,none (just cheese),cat,No,night owl,No,Dakiti - Bad Bunny
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Other (please provide details below).,Computer Science,"Along with CS, I plan to do Data Science, and maybe a certificate on Marketing.",53706,29.1523,48.1212,mushroom,dog,Yes,early bird,Maybe,Dance Monkey - Tones and I
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,20,Business: Finance,,"Economics, Information Systems",53703,43.0731,-89.4012,pepperoni,dog,No,night owl,No,White Room - Cream
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Industrial,N/A,N/A,53706,51.1785,-115.5743,none (just cheese),cat,No,night owl,Yes,green light by lorde
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Science: Physics,,"Data Science, Mathematics",53706,25.2048,55.2708,pepperoni,dog,Yes,night owl,No,AM Gold by Train
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC001,20,Engineering: Mechanical,,,53925,55.9533,-3.1883,pepperoni,cat,No,early bird,Yes,Wonderwall by Oasis
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC002,19,Other (please provide details below).,economics,,53703,33.6052,-117.8886,pepperoni,dog,No,early bird,Maybe,23 chayce beckham
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Mathematics/AMEP,,,53703,45.374,-84.9556,basil/spinach,dog,Yes,night owl,Maybe,Fire and Rain by James Taylor
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Other (please provide details below).,Atmospheric and Oceanic Science,Mathematics ,53715,45.2464,-93.3028,Other,dog,Yes,early bird,Maybe,Mr. Blue Sky by Electric Light Orchestra
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Computer Science,N/A,N/A,53715,43.0731,-89.4012,sausage,dog,No,night owl,Maybe,What You Know - Two Door Cinema Club
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Statistics,,,53706,44.3,-88.4,pepperoni,dog,Yes,early bird,Maybe,"Sing About me, I'm dying of thirst by Kendrick Lamar"
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Business: Actuarial,,"Finance, Risk Management and Insurance",53715,40.015,-105.2705,pepperoni,dog,No,night owl,Yes,Sweet Child O' Mine
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Data Science,,,53711,37.664,127.9,pepperoni,dog,Yes,night owl,Yes,Never go wrong
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,48.8566,2.3522,pepperoni,dog,No,night owl,Yes,moonwalking in the Calabasas by ddg.
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC004,20,Engineering: Mechanical,,,53703,39.9481,-74.077,sausage,dog,No,night owl,Yes,Set fire to the rain - Adele
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Data Science,,,53706,25.1204,121.5103,pineapple,cat,No,early bird,No,Studio Ghibli movie music
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Business: Information Systems,NA,Real Estate,53703,18.3368,-64.7281,mushroom,cat,Yes,no preference,Yes,"You Proof, Morgan Wallen"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC001,18,Engineering: Mechanical,,,53706,63.4195,-18.9986,none (just cheese),dog,Yes,no preference,Yes,Ticking by Zach Bryan
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Science: Biology/Life,,,53706,45.2646,-111.2533,pineapple,dog,Yes,early bird,No,Romeo and Juliet by the Dire Straits
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,37.7654,-122.4511,pepperoni,dog,No,early bird,No,All I Do - Stevie Wonder
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Astronomy/Physics,Physics,53711,43.0731,-89.4012,Other,dog,Yes,night owl,Maybe,Bank Account 21 Savage
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,Idk if this counts but I'm doing the game design certificate,53706,38.9072,-77.0369,pepperoni,cat,No,night owl,Maybe,Osmosis by Good Kid
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Industrial,,,53703,40.4168,-3.7038,sausage,dog,Yes,early bird,No,Pepas by farruco
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,,Data Science,,Statistics,53706,47.1212,-88.5645,pepperoni,dog,No,early bird,Maybe,Party in the USA
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,18,Engineering: Industrial,,,53706,43.6047,1.4442,Other,dog,Yes,night owl,Yes,Cigarettes out the window-Tv Girl
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Engineering: Mechanical,,Business ,53703,27.0993,-82.4315,pepperoni,dog,Yes,no preference,Yes,Island In The Sun
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Science: Biology/Life,,,53706,64.9631,-19.0208,mushroom,cat,No,night owl,Maybe,cardigan - Taylor Swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Other (please provide details below).,Journalism,,53706,41.3974,2.13,pepperoni,cat,Yes,no preference,Maybe,Maps - Yeah Yeah Yeahs
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,,Other (please provide details below).,Economics,,53703,47.608,122.3352,Other,cat,Yes,night owl,Yes,Revival Zach Bryan
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Statistics,Mathematics,,53706,50.8476,4.3572,pepperoni,dog,Yes,early bird,Maybe,"New Person, Same Old Mistakes - Tame Impala"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC002,19,Computer Science,N/A,N/A,53706,37.8715,112.5512,sausage,neither,Yes,no preference,Maybe,N/A
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,35.9802,-75.6421,sausage,dog,No,early bird,Yes,Gypsy - Fleetwood Mac
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Mechanical,,,53726,45.4408,12.3155,sausage,dog,No,night owl,Yes,Sultans of Swing by Dire Straights
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,40.7128,-73.9352,pepperoni,dog,Yes,night owl,Yes,Virtual Insanity - Jamiroquai
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.6403,-106.3709,sausage,dog,Yes,no preference,Maybe,Whiskey Friends by Morgan Wallen
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Engineering: Mechanical,,,53711,39.1907,-106.8192,Other,neither,No,early bird,No,Try that in a small town - Jason Aldean
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Other (please provide details below).,Undecided,,53703,40.7721,-73.9578,none (just cheese),dog,No,night owl,Yes,Company by Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Data Science,,,53706,41.2974,-96.6059,sausage,dog,Yes,night owl,Yes,m.y l.i.f.e. J cole
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53703,-33.9014,151.0576,pepperoni,dog,No,no preference,Yes,Zach Bryan - Revival
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC001,21,Business: Actuarial,,statistics ,53703,23.1291,113.2644,pineapple,dog,Yes,night owl,Yes,love story Taylor swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Other (please provide details below).,I am currently undecided but I am seriously considering Data Science at the moment.,,53715,48.7786,2.45,Other,dog,Yes,night owl,Yes,My Eyes - Travis Scott
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC004,20,Science: Biology/Life,,,53703,-81.7136,-109.3253,pineapple,neither,No,no preference,Maybe,"capybara song
just search it and you will find"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Computer Science,,,53715,41.8781,-87.6298,none (just cheese),dog,No,no preference,No,Too comfortable - Future
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Other,Civil Engineering,Spanish,53715,43.0731,-89.4012,pepperoni,dog,Yes,night owl,Maybe,Aint no mountain high enough - Marvin Gaye
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,22,Computer Science,,Data Science,53703,23.1291,113.2644,basil/spinach,cat,No,night owl,Yes,Bohemian Rhapsody - Queen
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53715,49.1747,-123.0194,green pepper,dog,No,night owl,Yes,"Gangsters Paradise
"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Science: Other,Double majoring in Biochemistry and Data Science.,"Data Science, Biochemistry ",53703,32.7157,-117.1611,Other,dog,Yes,night owl,Yes,Don't Stop; Fleetwood Mac
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Biomedical,,,53715,43.0389,-87.9065,sausage,dog,No,early bird,Maybe,505 - Artic Monkeys
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Industrial,,Business,53706,46.2388,-97.3636,sausage,dog,No,night owl,Maybe,Solo - Future
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Computer Science,,Data Science,53715,41.8781,-87.6298,Other,cat,No,night owl,Yes,Heartless by The Weeknd
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Statistics,,"Econ, Statistics",53706,55.9502,-3.1875,sausage,dog,Yes,night owl,Yes,Demons by Imagine Dragons
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Computer Science,,My second major is Data Science. My minors are Consulting and Leadership.,53711,34.0522,-118.2437,macaroni/pasta,cat,No,night owl,Yes,Consume by Chase Atlantic
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53706,41.9028,12.4964,sausage,dog,Yes,night owl,Yes,Secrets by The Weekend
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Business: Finance,,"Finance, Real Estate",53706,38.8707,-106.9809,sausage,dog,Yes,night owl,Maybe,Look after you - The Fray
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Engineering: Mechanical,,,53715,38.9828,-76.8819,basil/spinach,neither,No,night owl,Maybe,The Vampire Masquerade by Peter Gundry
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,18,Engineering: Other,,,53713,43.0663,-89.4049,pepperoni,dog,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Mechanical,1,1,53711,37,-122,sausage,cat,No,night owl,Yes,For Whom the Bell Tolls by Metallica
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,,53706,55.6761,12.5683,sausage,cat,No,no preference,Maybe,Poe Mans Dreams by Kendrick Lamar
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Data Science,,,53703,43,87,sausage,dog,Yes,night owl,Maybe,Better ma. By Pearl jam
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,23,Other (please provide details below).,Information Science,,53703,32.0853,34.7818,pepperoni,dog,No,early bird,No,Funkytown by Lipps
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC001,19,Business: Actuarial,,,53703,48.86,2.35,pepperoni,cat,No,night owl,Yes,imperial - j^p^n
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,,Statistics,53706,22.3964,114.1095,basil/spinach,neither,No,no preference,Maybe,"""Put Your Records On"" by Corinne Bailey Rae"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Other,Engineering Physics,,53703,44.9204,-93.2802,basil/spinach,dog,Yes,early bird,No,Houdini - Foster the People
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Data Science,,,53703,40.4168,-3.7038,basil/spinach,dog,No,night owl,Yes,19.10 by Childish Gambino
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Data Science,,data science,53703,56,51,mushroom,cat,No,night owl,Maybe,"too many night, metro boomin"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,My major is Economics with Mathematics Emphasis (BS),N/A,53705,51.5074,-0.1278,green pepper,dog,Yes,early bird,Maybe,"English language
Return of the Mack by Mark Morrison
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Engineering: Mechanical,,,53706,45.8,89.7,pepperoni,dog,Yes,night owl,Maybe,Hannukah Song- Adam Sandler
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Other,,,53715,45.9495,-89.151,macaroni/pasta,dog,Yes,early bird,No,More Than a Feeling by Boston
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,57703,74.8,41.33,mushroom,dog,No,night owl,No,Dancing with Myself by Billy Idol
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53715,29.9511,-90.0715,none (just cheese),cat,No,night owl,No,Shut up and Dance -Walk the moon
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,N/A,Risk Management & Insurance,53711,29.9511,-90.0715,pepperoni,dog,Yes,night owl,Maybe,The jeopardy song
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,43.0389,-87.9065,pepperoni,neither,No,night owl,Yes,"After Last Night by Bruno Mars, Anderson Paak, Silk Sonic "
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Other (please provide details below).,Accounting,Information Systems,53703,41.9028,12.4964,mushroom,cat,Yes,early bird,Yes,"Steady Love, Ben Rector"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53726,53.4645,-2.2896,pineapple,cat,Yes,night owl,Yes,"Juke Box Hero
Foreigner"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,Mathematics ,Data Science ,53715,43.0731,-89.4012,pineapple,dog,Yes,early bird,No,"""The Changing Times"" by Earth, Wind & Fire "
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,23,Engineering: Mechanical,,,53703,40,-76,Other,dog,No,early bird,Maybe,Better Now - Post Malone
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Genetics,N/A,53715,41.8781,-87.6298,Other,dog,No,night owl,Yes,Pursuit of Happiness- Kid Cudi
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Data Science,,Economics,53706,43.0722,89.4008,pepperoni,cat,Yes,night owl,Yes,Caribbean Queen (No More Love On The Run) By Billy Ocean
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Business: Other,,,53706,41.8847,-87.6166,pepperoni,dog,No,night owl,Yes,Overdue (feat. Travis Scott) by Metro Boomin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Genetics,Certificate: Data Science & Global Health,53715,41.8781,-87.6298,Other,dog,No,night owl,Yes,Pursuit of Happiness- Kid Cudi
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53706,43.0592,141.3555,sausage,dog,No,no preference,Maybe,Top of the World - Carpenters
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,,,53703,43.7696,11.2558,sausage,dog,No,night owl,Yes,Little wing Jimi Hendrix
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,43.2286,-88.1104,pepperoni,dog,Yes,early bird,Yes,"Let's Get It On, Marvin Gaye"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Engineering: Industrial,N/A,Entrepreneurship certificate. ,53715,41,87,pepperoni,dog,Yes,early bird,Maybe,Margaritaville - Jimmy Buffett
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,Possibly business finance ,53706,35.2488,24.9132,pepperoni,dog,Yes,night owl,Maybe,Letter from Houston by Rod Wave
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pepperoni,cat,No,no preference,Maybe,Virtual Insanity - Jamiroquai
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Other (please provide details below).,My major is Information Science.,I'd like to pursue the Data Science Certificate or major as well.,53703,38.1157,13.3615,mushroom,cat,No,early bird,Yes,Snooze by SZA
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53703,23,114,Other,neither,No,no preference,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,43.1101,-87.9074,sausage,dog,No,night owl,Maybe,God's Plan- Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Data Science,,,53705,-19.9173,-43.9346,sausage,dog,Yes,no preference,No,Clube da Esquina 7 - Milton Nascimento
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Data Science,,Journalism,53706,30.3935,-86.4958,macaroni/pasta,dog,Yes,night owl,Maybe,One Man Band by Old Dominion
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Computer Science,,,28431,48.8647,2.349,pineapple,dog,No,night owl,Yes,Here with me by dv4d
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Data Science,,,53703,38.9433,-94.7342,pineapple,cat,No,early bird,Yes,Sun to Me- Zach Bryan
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Other,,,53703,40.7608,111.891,pepperoni,dog,Yes,night owl,No,Alors On Danse - Stromae
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53706,40.7128,-74.006,sausage,dog,No,night owl,Yes,Impossible - Travis Scott
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Mathematics/AMEP,,,53706,64.8367,-147.7389,Other,dog,No,early bird,Yes,Back in Black by AC/DC
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,,,53701,45.1027,-93.4649,sausage,cat,Yes,early bird,Maybe,"I prefer anything country, but my favorite song right now is Life Changes by Thomas Rhett. "
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Biomedical,,,53703,35.2271,-80.8431,pineapple,dog,No,early bird,No,Amazing by Rex Orange County
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Science: Other,I am currently undecided but interested in the STEM and Business fields,,53706,37.3891,-5.9845,basil/spinach,dog,Yes,no preference,Yes,"""If I Can Dream"" by Elvis Presley"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,,Engineering: Mechanical,,,53703,50.0755,14.4378,pepperoni,neither,No,early bird,Maybe,"What You Won't Do For Love by Bobby Caldwell
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Economics,Data Science,53703,-37.8136,144.9631,pepperoni,dog,Yes,no preference,Maybe,Need to know -John Newman
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Biomedical,BME,N/A,53711,22.54,114,sausage,dog,Yes,no preference,No,A sky full of stars - coldplay
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Industrial,,,53706,36.1627,-86.7816,sausage,dog,Yes,night owl,Maybe,Like We Used To by A Rocket To The Moon
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,20,Engineering: Biomedical,,,53719,47.6062,-122.3321,pepperoni,cat,Yes,night owl,Yes,Ex-factor by Lauryn Hill
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Other (please provide details below).,Economics,,53703,53.3501,6.2662,none (just cheese),dog,Yes,night owl,Yes,Heavy Eyes by Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Business: Actuarial,,"Finance, RMI, Economics",53726,42.9765,88.1084,pineapple,dog,Yes,early bird,No,"7 & 7, Turnpike Troubadours"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,22,Other (please provide details below).,Education Studies,Psychology,53703,35.8714,128.6014,pepperoni,cat,No,no preference,Yes,Top of the World - Carpenters
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Other (please provide details below).,Economics,,53706,43,-89,pepperoni,dog,Yes,night owl,Yes,Baby Shark
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Data Science,,Mathematics,53706,37.9659,23.7325,sausage,cat,Yes,night owl,Yes,No Surprises by Radiohead
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,21,Science: Other,environmental sciences,,53703,48.1351,11.582,pepperoni,cat,No,no preference,Maybe,I lived-One Republic
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Data Science,,Mathematics,53715,41.8781,-87.6298,pineapple,dog,No,night owl,No,All My Love by Noah Kahan
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,20,Engineering: Biomedical,,,53715,36.16,-86.78,pepperoni,dog,Yes,early bird,No,I Remember Everything by Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,No,early bird,Maybe,Take a Walk by Passion Pit
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Data Science,,CS,53706,26.0745,119.2965,green pepper,cat,Yes,night owl,Yes,We will Rock you
COMP SCI 319:LEC003,LEC003,27,Other (please provide details below).,Information Science,No,53705,19.7418,-155.8444,none (just cheese),cat,No,no preference,Maybe,Don't look back in anger
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,53.3456,-6.2559,basil/spinach,dog,Yes,no preference,Yes,"Stick Season, Noah Kahan"
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53703,41.3851,2.1734,pepperoni,dog,No,night owl,Maybe,The Other Side of the Door by Taylor Swift
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,22,Science: Physics,,"Mathematics in the Physical and Biological Sciences(BS), Computer Science Certificate ",53703,42.8501,-106.3252,pepperoni,cat,Yes,early bird,Maybe,Dopesmoker - 2022 Remastered Version - Sleep
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC004,20,Other (please provide details below).,Psychology and Spanish,,53701,45.891,-123.9619,basil/spinach,dog,Yes,early bird,Yes,Ella Baila Sola by Peso Pluma
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,My primary field of study is Economics but I am also pursuing a certificate in data science. ,,53703,41.8781,87.6298,pepperoni,dog,No,night owl,Maybe,Hey driver - Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,30.2672,-97.7431,Other,dog,No,no preference,No,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Engineering: Mechanical,,,53703,39.7392,-104.9903,pepperoni,dog,Yes,night owl,Maybe,Nikes on my feet Mac Miller
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Computer Science,,,53703,40.2436,-109.01,pepperoni,dog,No,no preference,Maybe,RAVE RATS VOLUME 1: INTERDIMENSIONAL LIFE by ooxygen
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Business: Information Systems,,,53703,41.8781,-87.6298,basil/spinach,dog,Yes,night owl,Yes,Margaritaville by Jimmy Buffet
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53715,24.4539,54.3773,pepperoni,cat,Yes,early bird,No,IDK
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,21,Engineering: Other,,,53703,48.2082,16.3738,sausage,dog,Yes,night owl,No,Shallow - Lady Gaga
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Business: Information Systems,,BUS: Finance,53706,44.9537,-93.09,sausage,dog,No,night owl,No,"Baby, Justin Bieber"
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,20,Computer Science,,,53703,42.3601,-71.0589,pineapple,dog,No,night owl,Maybe,"Erase Me, Kid Cudi"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53715,44.8945,-93.6728,pepperoni,dog,No,night owl,Maybe,Hey Driver- Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53706,47.7502,-90.3356,sausage,dog,No,no preference,Yes,"Fly me to the moon, Frank Sinatra"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,,,53706,59.9139,10.7522,pepperoni,dog,Yes,night owl,Yes,Normal Girl - SZA
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC001,18,Data Science,,,53706,50.0755,14.4378,Other,dog,No,night owl,Yes,Break From Toronto - PARTYNEXTDOOR
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Business: Information Systems,,Accounting,53597,25.7617,-80.1918,pepperoni,cat,No,no preference,Maybe,Graduation - Kanye West
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,39.74,-104.98,mushroom,cat,Yes,night owl,Yes,temperature-sean paul
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,,53706,45.4408,12.3155,mushroom,cat,Yes,no preference,No,Santeria by Sublime
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53703,45.056,92.8088,basil/spinach,dog,Yes,early bird,No,More Than A Feeling by Boston
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,21,Business: Other,Marketing,,53703,41.4174,2.2122,mushroom,dog,No,early bird,Yes,One of my favorite songs is Pull me out of this by Fred Again
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Computer Science,,,53703,35.6895,139.6917,mushroom,cat,Yes,night owl,Yes,Never gonna give you up -Rick Astley
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,37.4605,-122.1703,sausage,dog,No,no preference,Yes,saturday night
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Business: Information Systems,,Finance,53703,6.5244,3.3792,Other,cat,Yes,early bird,No,The Color Violet - Tory Lanez
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC003,20,Data Science,Comm Arts,no,53703,39.9042,116.4074,pineapple,dog,No,night owl,Maybe,For Tonight --- Giveon
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Industrial,,,53703,39.74,-104.98,mushroom,dog,Yes,night owl,No,"vienna, Billy Joel"
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Mechanical,,,53706,49.2764,-0.7056,sausage,dog,Yes,early bird,Maybe,Stairway to Heaven by Led Zeppelin
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Science: Other,economics,DS,53703,31.2304,121.4737,sausage,dog,No,night owl,Yes,“the greatest” Lana Del Rey
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53706,17.385,78.4867,pepperoni,dog,No,early bird,Maybe,Saint Pablo - Kanye West
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Science: Other,,,53703,44.424,-124.069,basil/spinach,dog,No,night owl,Yes,Waltz No. 2 by Dmitri Shostakovich
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Data Science,,,53715,42.3601,-71.0589,Other,dog,Yes,night owl,Maybe,All Your'n by Tyler Childers
COMP SCI 319:LEC003,LEC003,,Statistics,,,53715,24.18,102.98,pineapple,neither,Yes,no preference,No, Never gonna give you up
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Engineering: Industrial,,,53703,42.3601,-71.0589,mushroom,dog,No,no preference,Yes,"Heavy Eyes, Zach Bryan
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Science: Biology/Life,,,53703,35.6895,139.6917,none (just cheese),cat,No,night owl,No,Cake by the Ocean by DNCE
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,Economics,Political Science,53715,40.7128,74.006,sausage,dog,No,night owl,Yes,Stacey's Mom
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Data Science,,,53706,22.3312,103.838,pineapple,dog,Yes,no preference,Maybe,"""2 soon"" - keshi"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Computer Science,,Intend to double major in Data Science,53706,41.8844,-87.6191,pineapple,dog,No,night owl,Yes,1998 by Monsune
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,Economics,Data Science Certificate ,53715,40.7128,-74.006,pepperoni,cat,No,night owl,Yes,"It’s all so incredibly loud, Glass Animals"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,No,no preference,Yes,Immortal by 21 Savage
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Data Science,,,53706,41.0082,28.9784,none (just cheese),dog,No,night owl,Yes,Little Dark Age by MGMT
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Computer Science,,,53703,43.0731,-89.4012,pepperoni,dog,Yes,early bird,No,Romeo and Juliet by Peter McPoland
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Data Science,Information Systems,,53706,59.9139,10.7522,Other,dog,No,early bird,Yes,"Deep Down(ft. Never Dull) - Alok
Give it to Me - Timbaland"
COMP SCI 319:LEC002,LEC001,,Data Science,,,53593,55.9502,-3.1875,pineapple,neither,No,night owl,Maybe,I Will Survive by Gloria Gaynor
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Data Science,,Economics,53703,39.9042,116.4074,pineapple,cat,No,no preference,Yes,LMLY
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Other (please provide details below).,Biochemistry,,53706,51.5099,-0.1278,basil/spinach,dog,Yes,early bird,Yes,Burn Burn Burn by Zach Byran
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,41.8894,12.4924,sausage,dog,No,early bird,Yes,"Houstonfornication, Travis Scott"
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,,,53703,42.3249,-71.0706,sausage,dog,No,night owl,Maybe,Blood on my jeans - Juice Wrld
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Biomedical,,,53703,18.582,-68.4055,pepperoni,dog,Yes,night owl,No,Rod Wave - Call Your Friends
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Business: Finance,,,53715,41.3851,2.1734,sausage,dog,No,night owl,No,Closer By the Chainsmokers
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Science: Other,,,53706,42.3601,-71.0589,Other,dog,No,no preference,No,"Electric Feel, MGMT"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,40.7128,-74.006,none (just cheese),dog,No,night owl,Yes,I dont listen to music
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Business: Actuarial,,Risk Management and Insurance,53703,42.3012,-71.3157,sausage,dog,Yes,night owl,No,Sunday by Earl Sweatshirt
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,22,Data Science,.,.,53706,37.5,127,mushroom,neither,No,early bird,No,snowman - seung hwan jeong
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,sausage,cat,No,night owl,Yes,
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,Economics,Data Science,53706,22.3964,114.1095,none (just cheese),dog,No,night owl,Yes,Black and White by Juice Wrld
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Actuarial,,"Statistics, Risk Management and Insurance, Certificate in Mathematics",53719,43.0731,-89.4012,pepperoni,dog,No,night owl,Yes,"Sovereign Light Cafe, Keane"
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC002,20,Computer Science,,,53705,31,-238,pepperoni,dog,No,night owl,Yes,Castle on the Hill - by Ed Sheeran
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53706,37.5665,126.978,pepperoni,neither,No,no preference,No,World to the wise. Matt Corman
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Engineering: Mechanical,N/A,N/A,53715,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Maybe,"STRINGS by MAX, featuring JVKE and Bazzi"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53715,43.0389,-87.9065,sausage,dog,Yes,early bird,Maybe,paranoid- Rio da yung og
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,,,53726,41.8614,-87.6114,basil/spinach,dog,Yes,no preference,No,Wildfire by Periphery
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Economics, Data Science,53711,35.7101,139.8107,mushroom,dog,Yes,early bird,Yes,Lemon Tree by the Fools Garden
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC002,21,Engineering: Biomedical,,,53703,38.5385,-75.0617,basil/spinach,cat,Yes,early bird,Maybe,"Be young, be foolish, be happy by The Tams."
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Other (please provide details below).,"Still pretty undecided but I am between Computer Science, Data Science, and business. ",,68114,39.7392,-104.9903,pepperoni,dog,No,no preference,Maybe,All Star by Smash Mouth
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53703,35.5951,-82.5515,pepperoni,dog,Yes,night owl,Yes,Good Days - SZA
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,41.8781,-87.6298,pepperoni,cat,Yes,night owl,Yes,The Adults Are Talking - The Strokes
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,22.1565,-100.9855,pepperoni,dog,Yes,early bird,No,FE!N by Travis Scott
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53706,42.8886,88.0384,green pepper,dog,Yes,night owl,Yes,One of my favorite songs is '98 Braves by Morgan Wallen.
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Science: Biology/Life,,,53711,1.2062,103.7959,green pepper,cat,No,early bird,No,Golden Hour by Mark Lee
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,17,Other (please provide details below).,Economics,,53706,51.5074,-0.1278,pepperoni,cat,Yes,night owl,Maybe,A Sky Full Of Stars- Coldplay
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Business: Finance,,Information Systems,53715,42.3601,-71.0589,none (just cheese),dog,Yes,no preference,Maybe,December 1963 (What a Night)
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Science: Biology/Life,,,53706,36.1699,-115.1398,mushroom,dog,No,night owl,Yes,Drive By by Train.
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,44.9105,-93.3487,sausage,dog,No,early bird,No,"Center Point Road by Thomas Rhett, Kelsea Ballerini"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,,53706,37.778,-122.42,pepperoni,dog,No,night owl,No,Work Song by Hozier
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Other,Materials Science and Engineering,,53703,51.5074,-0.1278,mushroom,cat,No,early bird,Yes,Good Old-Fashioned Lover Boy - Queen
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Science: Other,Microbiology,,53705,41.8781,-87.6298,pepperoni,cat,No,early bird,No,"So Right, Shaun"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Computer Science,,Mathematics,53703,38.707,-9.1356,none (just cheese),dog,No,no preference,Maybe,"Taylor Swift ""Paper Rings"""
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,40.7948,-73.9628,none (just cheese),dog,No,night owl,Yes,sk8er boi - arvil lavinge
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Data Science,Data Science ,Information Science,53706,44.37,-89.81,pepperoni,neither,No,night owl,Yes,How You Like That- Blackpink
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Computer Science,,,53715,43.0731,-89.4012,Other,cat,No,night owl,Yes,Feel Good Inc. by Gorillaz
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC003,20,Data Science,Data Science ,,53711,29.6548,91.1405,pepperoni,dog,No,night owl,Yes,608 by Salt
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Science: Other,Global Health,,53703,41.8781,87.6298,none (just cheese),dog,Yes,early bird,Maybe,Slide by Calvin Harris ft. Frank Ocean & Migos
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Other (please provide details below).,Information Science ,I have two minors; Data Science and Digital Studies ,53703,-87.6298,41.8781,green pepper,cat,No,early bird,Maybe,August by Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53703,39.9042,116.4074,none (just cheese),dog,No,early bird,No,If by Bread
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Languages,,,53703,39.74,-105,macaroni/pasta,cat,No,night owl,Yes,Water by Mother Falcon
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,144,-37,pepperoni,dog,No,no preference,Yes,[Excitable - Def Leppard] (https://www.youtube.com/watch?v=jqVfxWgfWhw)
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,41.3851,2.1734,sausage,dog,No,early bird,Yes,"Memories, by David Guetta."
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Engineering: Biomedical,,,53736,41.8781,-87.6298,pineapple,dog,No,night owl,Maybe,softly by clairo
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Engineering: Mechanical,,,53715,59.9139,10.7522,mushroom,cat,Yes,early bird,No,"Perfect places
Artist: Lorde"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53715,47.0505,8.3053,sausage,dog,Yes,no preference,Yes,"Breathe Deeper, Tame Impala"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,,Information Systems (Business),53703,33.4725,-81.9644,pepperoni,dog,No,night owl,Yes,"Last Train Home, John Mayer."
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,24,Other (please provide details below).,Economics with Mathematical Emphasis ,"Data Science,",53703,42.7165,12.1116,pepperoni,dog,Yes,night owl,Yes,Tiny Dancer by Elton John
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,43.7696,11.2558,pepperoni,dog,No,early bird,No,Pride-Kendrick Lamar
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Business: Other,,,53703,35.6895,139.6917,pineapple,dog,Yes,night owl,Maybe,"Song: Cupid
Artist: FIFTY FIFTY"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Engineering: Industrial,,,53703,41.8781,-87.6298,sausage,dog,No,early bird,No,passionfruit- drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53703,39.1031,-84.512,pepperoni,cat,No,early bird,Yes,Call Me Maybe - Carly Rae Jepsen
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Computer Science,,"Data Science
Game Design certificate",53702,28.7041,77.1025,pepperoni,dog,No,night owl,Yes,Better Now by Post Malone
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Science: Chemistry,,Biochemistry,20016,38.9072,-77.0369,pepperoni,dog,Yes,night owl,Yes,I would rather not answer
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Science: Other,Nutritional Sciences,,53703,41.8781,-87.6298,green pepper,cat,No,early bird,Yes,Sweet Virginia by The Rolling Stones
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53715,25.7575,-80.2515,pepperoni,dog,No,night owl,Yes,Touch the Sky - Kanye West
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Information science,Human development and family studies ,53726,45.4059,-86.9087,pepperoni,dog,No,night owl,Yes,Radio Lana Del Ray
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,Mathematics,53706,43.0731,-89.4012,pepperoni,dog,No,night owl,No,"*******************
Party Rock Anthem,
*******************
******
LMFAO
******"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,Pursuing certificate in Data Science. ,53711,35.0116,135.768,mushroom,dog,Yes,night owl,Yes,Nightcall- Kavinsky
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Business: Actuarial,,"Risk Management & Insurance, Finance",53703,37.4467,25.3289,none (just cheese),dog,No,early bird,Maybe,london boy by taylor swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Other (please provide details below).,Economics,Data Science Certificate,53711,40.7131,-74.0072,sausage,dog,Yes,no preference,No,https://www.youtube.com/watch?v=XjN8qEs_K7c&list=PLuVodMYS9xWblpzyNp9CwjERyndPTnCGV&index=6
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53706,44.9232,-93.4853,pepperoni,dog,No,night owl,Yes,Kodachrome- Paul Simon
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Data Science,,,53703,24.4539,54.3773,green pepper,neither,No,night owl,Yes,Kiss The Sky
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Engineering: Mechanical,n/a,n/a,53703,32.7157,-117.1611,pepperoni,dog,Yes,night owl,Maybe,Dancing With Myself by Billy Idol
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,17,Computer Science,,,53706,13.0827,80.2707,pepperoni,dog,No,night owl,No,Starships by Nicki Minaj
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,-,-,53715,44.1782,-88.4772,pepperoni,dog,Yes,night owl,Maybe,Just Wanna Rock - Lil Uzi Vert
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Other (please provide details below).,Economics,Marketing or Mathematics,53706,40,116,pineapple,dog,No,night owl,Maybe,Save Your Tears(Remix) --Ariana Grande& The Weekend
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Science: Biology/Life,,"It's not a secondary major, but I'm completing a certificate in Computer Science.",53562,55.9515,-3.1895,basil/spinach,dog,No,night owl,Yes,"Second Child, Restless Child by The Oh Hellos"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Data Science,,,53597,47.2144,14.7788,Other,cat,No,no preference,Yes,Black Summer - Red Hot Chili Peppers
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Engineering: Industrial,,,53706,24.9905,-77.3897,none (just cheese),dog,No,night owl,Yes,"East Side of Sorrow
Zach Bryan"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Economics,,53703,42.3601,-71.0589,pepperoni,dog,Yes,night owl,Yes,Life i a Highway - Rascal Flatts
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Data Science,Double majoring in Data Science and Consumer Behavior and Marketplace Studies,Consumer Behavior and Marketplace Studies,53703,35.1796,129.0756,sausage,cat,Yes,night owl,Yes,The Kid Laroi - Always do
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Statistics,,,53706,37.5519,127.0246,pepperoni,dog,Yes,early bird,Yes,"I have few.
Madvillain : Great Day
Radiohead: Let down
The Strokes: Hard to Explain"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,basil/spinach,dog,No,night owl,Yes,Zach Bryan - I remember everything
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Engineering: Industrial,,,53726,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,Bohemian Rhapsody by Queen
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53706,43,87,pineapple,dog,Yes,no preference,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,41.8781,-87.6298,basil/spinach,dog,Yes,early bird,Yes,"Blue World, Mac Miller "
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,Civil Engineering,,53715,44.513,88.013,pepperoni,dog,Yes,night owl,Yes,I Remember You- Skid Row
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53726,43.0389,-87.9065,pepperoni,cat,No,night owl,Yes,Supercut by Lorde
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,,,53703,51.5986,-0.0752,sausage,dog,Yes,early bird,Maybe,Today is a Good Day - Ice Cube
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Engineering: Industrial,,,53706,21.593,-158.1034,none (just cheese),dog,No,early bird,Yes,Doses & Mimosas by Cherub
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Mathematics/AMEP,,Data science,53719,-27.4954,-64.8601,basil/spinach,cat,No,early bird,No,Andromeda by Weyes Blood
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Business: Finance,N/A,N/A,53703,41.87,-87.6657,pepperoni,dog,No,no preference,Maybe,The world is yours- Nas
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53711,40.865,-73.4175,macaroni/pasta,dog,No,early bird,Maybe,Piano Man Billy Joel
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Science: Other,Psychology,,53706,22.5429,114.0596,none (just cheese),dog,Yes,no preference,Maybe,Ballad in G minor by Chopin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Mathematics/AMEP,,,53715,,40.7128,pineapple,cat,No,early bird,Maybe,a little bit yours by jp saxe
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Political Science,,53715,40.7094,-73.8049,pepperoni,dog,No,early bird,No,Deal by Jerry Garcia.
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,"I am a Mechanical Engineer interested in automotive engineering; car design, formula 1 etc.",,53706,45.677,-111.0429,sausage,dog,Yes,night owl,Maybe,"Oklahoma City, Zach Bryan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,,,53703,42.6507,18.0944,pineapple,dog,No,night owl,Maybe,Sick Love by The Red Hot Chili Peppers
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Biomedical,,,53706,12.9716,77.5946,basil/spinach,dog,No,night owl,Yes,Right Round - Flo Rida
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Business: Information Systems,,,53715,43.0389,-87.9065,pepperoni,dog,No,night owl,Maybe,Juice World - Wasted
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Economics,,53703,-8.4095,115.1889,Other,dog,No,night owl,No,Sinônimos
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Engineering: Biomedical,,,53703,27.5268,-82.7363,pineapple,dog,No,no preference,Yes,The Last Great American Dynasty by Taylor Swift
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53726,43,-88,pepperoni,dog,No,night owl,Yes,Wonderful World by Sam Cooke
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Psychology ,Data Science Certificate,53703,40.7831,-73.9713,none (just cheese),dog,Yes,early bird,Yes,Doo Wop - Ms. Lauryn Hill
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,n/a,n/a,53703,41.9,-87.63,pepperoni,dog,Yes,early bird,No,Crocs & Wock - Babytron
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Science: Biology/Life,,Psychology,53706,33.198,-96.615,sausage,cat,No,night owl,Maybe,Experience - Ludovico Einaudi
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Statistics,,data science,53706,43.0759,89.3991,mushroom,dog,No,no preference,No,"running up that hill
Kate Bush"
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,63105,38.6418,-90.3342,pepperoni,dog,No,night owl,Yes,Ain't No Mountain High Enough by Marvin Gaye and Tammi Terrell.
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,20,Engineering: Mechanical,,,53703,46.0216,-90.135,sausage,dog,No,night owl,Maybe,"Kickstart my heart, Motley Crue"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,22,Science: Chemistry,,,53129,10.7765,106.701,mushroom,cat,No,night owl,No,girls like me don't cry (remix) - thuy ft. MIN
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,25,Other (please provide details below).,Social Work,,53713,46.8537,-91.1071,tater tots,cat,No,no preference,Maybe,Mona Lisa by Dominic Fike
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Data Science,,,53715,48.1934,-0.6643,pepperoni,dog,No,early bird,No,Renegade by Big Red Machine (ft. Taylor Swift)
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Global Health,,53715,13.2263,72.4973,mushroom,dog,Yes,no preference,Yes,Around me - Metro Boomin
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Computer Science,,,53726,41.813,-87.629,pepperoni,dog,No,night owl,Yes,Self Control by Frank Ocean
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Other (please provide details below).,Sociology!,,53703,43.0139,-83.5983,pepperoni,dog,Yes,night owl,Yes,Thneedville by John Powell and Cinco Paul
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,43.1117,-88.5011,pepperoni,dog,No,night owl,Yes,Bucket List by Mitchell Tenpenny
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,,Science: Other,Genetics and genomics ,,53711,42.78,-89.3,pepperoni,dog,No,night owl,Yes,Sunroof- Nicky Youre
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Other (please provide details below).,ECONOMIC,,53703,43,-80,none (just cheese),cat,No,night owl,Maybe,WOLVES (Hauzer)
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Pharmacology & Toxicology,Neurobiology,53706,35.0116,135.768,mushroom,cat,Yes,night owl,Maybe,All In My Head by Whethan
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,,Engineering: Industrial,,,53715,21.3069,-157.8583,tater tots,neither,Yes,early bird,No,Brian's Movie: peach pit
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Information Systems,,Supply Chain Management,53703,44.978,-93.2707,sausage,dog,No,night owl,Yes,"Upside Down, Jack Johnson"
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Computer Science,N/A,"Economics, Data Science",53706,33.749,84.388,pineapple,dog,No,no preference,Yes,Ctrl + Del by MegaGoneFree
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Biomedical,,,53706,41.8781,-87.6298,sausage,dog,Yes,night owl,Maybe,Entropy by Daniel Caesar
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Engineering: Mechanical,,"electrical engineering
",53706,23.9314,120.5641,sausage,neither,Yes,early bird,Yes,"There is a light that never goes out, the Smiths"
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,Data Science,53715,45.4343,12.3388,pepperoni,cat,No,night owl,No,Teenagers by My Chemical Romance
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,57303,38.8339,-104.8214,pepperoni,dog,No,night owl,Yes,Run-Around by Blue Traveler
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Computer Science,,"Statistics, Data Science Certificate, Mathematics Certificate",53715,41.8781,-87.6298,Other,dog,Yes,early bird,Maybe,"FE!N
Travis Scott, Playboi Carti"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Engineering: Industrial,,,53706,47.6062,-122.3321,sausage,dog,No,no preference,Maybe,Sunday Bloody Sunday - U2
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,21,Science: Biology/Life,,,53715,46.7867,92.1005,basil/spinach,dog,Yes,night owl,No,"Santeria, Sublime"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Data Science,,Economics,53715,34.0522,-118.2437,sausage,neither,Yes,no preference,Maybe,My favorite one will be The tale of 2 Citiez by J Cole
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Engineering: Other,,International Engineering,53703,40.4168,-3.7038,pepperoni,dog,No,night owl,No,"El Dorado - Zach Bryan
Scenes from an Italian restaurant - Billy Joel
Wouldve could’ve should’ve - Taylor swift"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Mechanical,,,53715,48.1351,11.582,sausage,dog,No,no preference,Maybe,In Your Atmosphere (live) - John Mayer
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,42.3601,-71.0589,macaroni/pasta,cat,Yes,night owl,Yes,Colder weather- Zac brown band
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Data Science,no,Spanish,53706,45.4408,12.3155,pineapple,dog,No,early bird,No,August - Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,Communication Arts,Sports Communication Certificate,53703,44.2947,90.8515,pineapple,dog,No,night owl,No,Simulation Swarm - Big Thief
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Science: Physics,,Mathematics,53706,46.2044,6.1432,sausage,dog,Yes,early bird,Yes,The Color Violet - Tory Lanez
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,43.0731,-89.4012,none (just cheese),dog,Yes,no preference,Yes,Starboy - Weeknd
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Other,Chemical engineering,,53706,34.3416,108.9398,pepperoni,cat,No,night owl,Yes,You Belong With Me - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,18,Engineering: Mechanical,,,53706,43.0597,-88.0269,pineapple,dog,No,no preference,Yes,AA-Isaiah Rashad
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Mechanical,,,53715,41.8781,-87.6298,pepperoni,dog,No,no preference,Maybe,"Margaritaville, Jimmy Buffett"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Other (please provide details below).,Atmospheric and Oceanic science ,Does ROTC count?,53706,47.8864,106.9057,mushroom,dog,Yes,early bird,Yes,"I have a lot lol
Water no get enemy-Fela Kuti is probably my favorite
I also love 70s rock if you want to talk about bands from then, a little from the 80s "
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Data Science,,Personal Finance,53703,51.5074,-0.1278,sausage,dog,No,night owl,Yes,White Iverson - Post Malone
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53726,43,-89,pineapple,dog,No,early bird,No,Pretty much anything by Led Zeppelin
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Business: Information Systems,N/A,N/A,53713,37.7749,-122.4194,sausage,dog,No,night owl,Yes,GEEKALEEK by OHGEESY
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,,,53703,40.788,-74.3921,sausage,dog,No,early bird,No,"i know you hate me, midwxst"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Data Science,,Political science ,53715,40.7128,-74.006,basil/spinach,dog,Yes,early bird,No,Slide Away by Oasis
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Data Science,,,53706,41.9028,12.4964,pepperoni,dog,Yes,night owl,Yes,Headlines by Drake
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,43.7696,11.2558,macaroni/pasta,dog,No,no preference,Yes,I Remember Everything by Zach Bryan
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,computer science,53703,31,121,mushroom,dog,No,night owl,No,lemon tree
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Business: Finance,,,53703,43.4796,-110.7624,mushroom,dog,Yes,night owl,Yes,shout Pt. 1 and 2 - the isley brothers
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Mathematics/AMEP,,Data Science,53703,39.1031,-84.512,Other,dog,Yes,no preference,Maybe,
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Computer Science,,Data Science,53703,41.8781,-87.6298,pepperoni,dog,No,night owl,Maybe,Cupid by Fifty Fifty
COMP SCI 319:LEC002,LEC002,25,Business: Other,Business Analytics,None,53705,15.2993,74.124,tater tots,dog,No,early bird,No,Shake it off - By Taylor Swift
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,47.8112,13.055,macaroni/pasta,dog,Yes,night owl,Yes,Flashing Lights by Kanye West
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,22,Statistics,,,53703,37.535,126.99,mushroom,dog,Yes,no preference,Yes,Ghost of you by 5SOS
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Business: Other,,,53703,50.0755,14.4378,Other,dog,Yes,night owl,Yes,Dark Horse. Katy Perry
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Data Science,,,53703,40.6782,-73.9442,pepperoni,dog,Yes,night owl,No,Shiver - Coldplay
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Engineering: Industrial,,,53706,41.9028,12.4964,basil/spinach,dog,No,night owl,Yes,Can't Tell Me Nothing by Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Other (please provide details below).,Economics,,53703,41.8781,-87.6298,pepperoni,cat,No,early bird,No,Too many nights- Metro Boomin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Econ BS,Certificates in DS & Consulting,53703,41.8781,-87.6298,basil/spinach,dog,No,night owl,Maybe,Shiver-Coldplay
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,21,Engineering: Biomedical,,,53726,45.17,-93.87,pepperoni,dog,No,night owl,Yes,Eye of the Tiger by Survivor
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53715,-33.8688,151.2093,pepperoni,dog,No,night owl,Maybe,Read My Mind by the Killers
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Biomedical,,Computer science or data science,53706,40.7128,-74.006,basil/spinach,dog,No,early bird,Yes,any taylor swift
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53703,37.5665,126.978,sausage,cat,Yes,night owl,Yes,
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Economics,,53703,34.4208,-119.6982,pepperoni,dog,No,early bird,No,Chicken Fried-Zac Brown Band
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Science: Biology/Life,biochemistry,certificate of data science,53711,31.23,121.47,sausage,dog,No,night owl,No,"
Taylor Swift
Love Story"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Data Science,,Econ,53715,42.3601,-71.0589,sausage,dog,No,night owl,No,Let it Happen Tame Impala
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,21,Other (please provide details below).,Economics,Certificate in Data Science,53703,47.6062,122.3321,pepperoni,dog,No,no preference,Yes,Elton John- Funeral for a Friend/Love Lies Bleeding
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,21,Data Science,,,53715,43.215,-87.9955,Other,dog,Yes,night owl,Yes,
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Information Systems,,"Risk Management and Insurance, Legal Studies",53715,41.8781,-87.6298,mushroom,cat,No,night owl,Yes,"All too Well, Taylor Swift"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Mathematics/AMEP,I'm a double-major in Math and Computer Science. ,I'm a double-major in Math and Computer Science. ,53706,43.073,-89.401,pepperoni,dog,Yes,no preference,Yes,Listen to the Music: The Doobie Brothers
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Engineering: Mechanical,,,53707,43.0779,-89.3902,pepperoni,dog,No,early bird,No,"Revival, Zach bryan "
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Data Science,,Economics Major/ Data Science Minor,53703,41.2959,73.7933,none (just cheese),dog,Yes,night owl,Maybe,Sky Full of Stars- Coldplay
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Business: Information Systems,,Business: Finance,53715,39.7392,-104.9903,sausage,cat,No,night owl,Yes,Lose My Mind - Jai Wolf
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Finance,,Econ,53715,21.1619,-86.8515,pepperoni,cat,No,night owl,Maybe,Just the two of us - Washington Jr.
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,45.1865,-87.1239,pepperoni,dog,No,no preference,No,Hey Driver- Zach Bryan
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Computer Science,,,53706,36.2048,138.2529,pineapple,dog,Yes,night owl,Maybe,Pretender by OFFICIAL HIGE DANDISM
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,20,Business: Information Systems,,,53598,43.0731,-89.4012,pepperoni,dog,Yes,night owl,Yes,Holiday - Green Day
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,22,Engineering: Other,NA,NA,53703,41.8781,-87.6298,mushroom,cat,Yes,night owl,Maybe,Dancing Queen by ABBA
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53715,43.7696,11.2558,pepperoni,dog,No,early bird,Maybe,Last Nite-Strokes
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Engineering: Industrial,,,53706,35.6895,139.6917,pepperoni,neither,Yes,early bird,Maybe,"It will Rain - Bruno Mars
Blank Space - Taylor Swift
Right There - Ariana Grande
Stuck with U - Ariana Grande & Justin Bieber "
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Business: Finance,,,53706,37.9753,23.7361,none (just cheese),dog,No,night owl,Maybe,"Homecoming, Kanye West"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,Economics with certificate in data science ,,53715,45.4408,12.3155,Other,dog,No,early bird,No,Chris Stapleton White Horse
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53703,42.4173,27.6964,sausage,cat,No,no preference,Yes,S91 by Karol G
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Industrial,,,53703,38.288,-85.67,none (just cheese),dog,Yes,night owl,Yes,"Waiting on the world to change, John Mayer"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Information Systems,-,Considering another business major as well as a language certificate,53706,44.3289,-88.5391,pepperoni,dog,No,night owl,Maybe,Surf - Mac Miller
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Engineering: Mechanical,,,53706,43.4782,-110.7627,sausage,dog,Yes,no preference,Yes,Something in the Orange - Zach Bryan
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,17,Data Science,,,53706,55.9533,3.1883,sausage,dog,Yes,early bird,Yes,Build Me Up Buttercup by The Foundations
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,35.6528,139.8395,pepperoni,dog,No,night owl,Maybe,"For my hand, Burna Boy feat. Ed Sheeran "
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Other (please provide details below).,Economics,,53703,40.4406,-79.9959,sausage,dog,Yes,early bird,Maybe,Take Me Home Country Roads - John Denver
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,22,Science: Biology/Life,,"Data Science, Global Health ",53726,44.9765,-93.2652,pepperoni,dog,Yes,night owl,No,Where The Streets Have No Name - U2
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Other (please provide details below).,I intend to pursue a double major with Neurobiology and Data Science.,-,53706,25.1972,55.2744,mushroom,cat,No,no preference,Yes,Crazy by Aerosmith
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Business: Actuarial,,Data science,53706,40.7128,-74.006,basil/spinach,cat,No,early bird,No,Timeless by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Biology/Life,N/a,Certificate in Data Science,53715,43.0739,-89.3852,pineapple,dog,No,night owl,Yes,Hold on We're Going Home by Drake
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Industrial,,,53703,41.3894,2.1588,macaroni/pasta,dog,Yes,no preference,No,"Brazil- Declan Mckenna
British Bombs- Declan McKenna"
COMP SCI 319:LEC001,LEC001,26,Science: Other,,,53560,55.8931,-3.0666,pepperoni,dog,No,night owl,No,I'm Gonna Be (500 Miles) by the Proclaimers
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,GIS/Cartography,"Political Science, Data Science",35715,-88.99,45.1686,pepperoni,dog,Yes,early bird,Yes,With Arms Wide Open - Creed
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Other (please provide details below).,"My primary major is Economics.
",and my second major is Data Science.,53715,17.385,78.4867,mushroom,dog,No,no preference,Yes,"Say you won't let go- James Arthur
GASOLINA- Daddy Yankee"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,,53705,1.3521,103.8198,Other,cat,No,no preference,Yes,"Held Up in New York City - Mia Lailani, Devan Ibiza"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Business: Actuarial,,Risk management,53706,39.1333,117.1833,mushroom,cat,No,night owl,Yes,"One of my favorite songs is ""Maroon .45"" by ME3CH."
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Other (please provide details below).,economics,statistics,53706,39.9042,116.4074,mushroom,neither,Yes,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,22,Science: Biology/Life,,,53703,50.0755,14.4378,sausage,dog,Yes,early bird,No,Hundred by Khalid
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53706,37.5665,126.978,sausage,dog,No,early bird,Maybe,Don't look back in anger- Oasis
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Data Science,,Economics,53703,87.6298,41.8781,sausage,dog,No,early bird,Yes,"Franklins Tower, Dead and Company 7/14/2018"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pineapple,dog,Yes,night owl,Maybe,PRIDE. by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Data Science,,,53711,44.5133,-88.0158,sausage,dog,Yes,early bird,No,When the Levee Breaks - Led Zeppelin
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Computer Science,,,53703,43.771,11.2486,pepperoni,dog,Yes,early bird,Yes,Paranoid - Black Sabbath
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Business: Information Systems & Data Science Double Major,N/A,53706,44.5133,-88.0133,sausage,dog,No,early bird,Maybe,Another is Waiting - The Avett Brothers
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Business: Finance,,,53703,41.8781,87.6298,pepperoni,dog,No,night owl,Maybe,rich spirit by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,,Computer Science,,,53705,55.6761,12.5683,pepperoni,dog,No,night owl,Yes,Drunk in the morning - Lukas Graham
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Computer Science,,,53703,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Someday - The Strokes
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Science: Biology/Life,,,53706,32.22,-80.75,pepperoni,dog,Yes,no preference,Maybe,Homegrown by Zac Brown Band
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,41.8781,87.6298,Other,dog,Yes,early bird,Yes,Constellations - Jack Johnson
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,34.0549,118.2426,sausage,dog,Yes,night owl,Yes,"Come On Eileen
By Dexys Midnight Runners "
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,40.7128,74.006,pepperoni,cat,Yes,early bird,Yes,Free Bird - Lynyrd Skynyrd
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53703,40.416,-3.703,pepperoni,dog,Yes,no preference,Maybe,"come as you are, nirvana"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Clarity by Zedd
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics Major ,Data Science Certificate or Minor,53706,22.3964,114.1095,sausage,dog,Yes,night owl,Maybe,The Less I know The Better - Tame Impala
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Engineering: Mechanical,,,53715,44.9778,-93.265,pineapple,dog,Yes,early bird,No,Superposition Daniel Caesar
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Science: Chemistry,,,53706,41.3851,2.1734,basil/spinach,dog,Yes,early bird,No,Don't Stop Believing by Journey
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,59.9115,10.7579,pepperoni,dog,Yes,no preference,Maybe,Apologize - OneRepublic
COMP SCI 319:LEC001,LEC001,23,Science: Other,,,53726,43.0389,-87.9065,sausage,dog,No,early bird,Yes,Homesick - Noah Kahan
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Science: Biology/Life,,,53706,46.7867,92.1005,pineapple,cat,Yes,early bird,Yes,Birdhouse In Your Soul (They Might Be Giants)
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,44,-94,pineapple,dog,Yes,early bird,Maybe,Rick Astley- Never Gonna Give You Up
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Data Science,,,53705,65.6466,-21.643,macaroni/pasta,cat,Yes,no preference,No,Choose Life by Poorstacy
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Computer Science,,,53706,40.7128,-74.006,pineapple,cat,No,early bird,No,Love Story- Taylor Swift
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Mathematics/AMEP,,,53703,,,pepperoni,neither,No,night owl,Yes,"雪distance - Capper
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,17,Data Science,,,53706,51.7692,19.4018,basil/spinach,cat,Yes,night owl,Maybe,Eventually by Tame Impala
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,17,Data Science,,,53706,48.857,2.352,none (just cheese),dog,Yes,night owl,No,Clean by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,My primary major is economics and I will major in Business (Actuarial Science or Accounting).,"As a secondary major, I have an interest in Data Science.",53703,36,127.7,Other,dog,Yes,night owl,Yes,"Vancouver - BIG Naughty
"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,37.9598,-104.8202,mushroom,dog,Yes,night owl,Maybe,Hotel California by the Eagles
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,40.628,14.485,sausage,dog,No,night owl,Yes,No More by Jazzmeia Horn
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,43.4203,-88.1865,none (just cheese),dog,No,early bird,Yes,Style - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,21,Computer Science,,,53703,40.7128,-74.006,mushroom,cat,Yes,night owl,Maybe,"Welcome to New York, Taylor Swift"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,25.2048,55.2708,pineapple,cat,No,night owl,Yes,90210 - Travis Scott
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Science: Biology/Life,,,53706,39.6636,105.8792,basil/spinach,dog,Yes,early bird,No,We'll All Be Here Forever by Noah Kahan
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC001,18,Engineering: Mechanical,,,53706,44.5937,-93.4329,pepperoni,dog,No,no preference,Yes,One Beer - MF DOOM
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,"I'm a Dairy Science major, but am pursuing a Data Science certificate.",,53726,42.36,71.1,sausage,dog,No,night owl,Yes,Secrets by One Republic
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Business: Finance,,Information systems ,53706,3.139,101.6869,none (just cheese),cat,No,no preference,Yes,"Knocking on Heavens Door, Guns n roses"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53703,,,pepperoni,dog,No,early bird,Maybe,This Town's Been Too Good To Us by Dylan Scott
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Engineering: Other,,,53706,44.9608,-89.6302,none (just cheese),dog,Yes,night owl,No,Need a Favor - Jelly Roll
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,21,Engineering: Biomedical,,,53703,32.7765,-79.9311,pepperoni,cat,No,no preference,No,Revival - Zach Bryan
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53706,38.9072,-77.0369,sausage,dog,No,night owl,Yes,White Lies- Max Frost
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Other (please provide details below).,Education Studies,,53703,30.5728,104.0668,mushroom,cat,No,no preference,Maybe,Hindenburg lover-Anson Seabra
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,21,Statistics,,,53715,30,20,pineapple,cat,No,night owl,Yes,hello from adele
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53706,44.3009,-90.9505,none (just cheese),cat,Yes,early bird,No,"All along the watchtower, Jimi Hendrix"
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC005,18,Engineering: Industrial,,,53706,30.3539,97.7702,sausage,cat,Yes,early bird,Maybe,Pink + White by Frank Ocean
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,40.4855,-106.8336,pineapple,neither,No,night owl,Maybe,"Viva La Vida - Coldplay
"
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,"Economics, English",53706,60.3913,5.3221,sausage,dog,Yes,no preference,Yes,Before the Sun - Greg alan isakov
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53703,40.7128,-74.006,basil/spinach,cat,No,early bird,Yes,"Moonlight on The River, Mac Demarco"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Engineering: Biological Systems ,,53703,43.0731,-89.4012,pineapple,dog,Yes,early bird,No,Fast Car by Luke Combs
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,,53706,25.7617,-80.1918,pepperoni,dog,Yes,night owl,Yes,Favorite Song Toosii
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,32,Other (please provide details below).,Consumer Behavior and Marketplace Studies,"Digital Studies, Business Cert for non-business majors",53719,23.1136,-82.3666,Other,dog,No,no preference,Yes,Arctic Monkey’s - Do I wanna Know ( Dua Lipa Cover)
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC003,,Engineering: Industrial,,,53703,36.058,103.79,pineapple,cat,No,night owl,No,<<Love Story>>; Taylor Swift;
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,Spanish,53703,37.3891,-5.9845,basil/spinach,cat,Yes,early bird,No,Everybody wants to rule the world by Tears for fears
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53715,38.6973,-9.4218,pepperoni,dog,No,night owl,Yes,Go Your Own Way - Fleetwood Mac
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,n/a,n/a,53706,42.1491,-84.0202,sausage,dog,Yes,night owl,Yes,TNT by AC DC
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Biomedical,,,53703,35.6895,35.6895,mushroom,dog,No,night owl,Yes,Threat to Joy- Strokes
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,17,Data Science,,I am double majoring in data science and economics.,53706,41.7851,-88.2471,basil/spinach,dog,No,night owl,Yes,Back to December by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Science: Biology/Life,,,53706,44.98,93.27,sausage,cat,Yes,night owl,Yes,Fade Into You - Mazzy Star
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53590,47.9972,7.8538,pepperoni,dog,No,early bird,Maybe,Bohemian Rhapsody - Queen
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Engineering: Biomedical,,,53706,41.9,12.5,Other,neither,Yes,night owl,Maybe,Getaway car
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Engineering: Mechanical,,,53706,45.61,-94.21,basil/spinach,dog,Yes,no preference,No,Everybody Wants to Rule the World - Tears For Fears
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,,Engineering: Mechanical,,,53703,40.4168,3.7038,pepperoni,cat,No,early bird,No,One of then is Find Your Flame by SEGA
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,,53706,35.6895,139.6917,pepperoni,dog,Yes,night owl,Yes,Hotel California - Eagles
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Data Science,,Spanish,53706,46.7828,-92.1055,none (just cheese),dog,Yes,early bird,Yes,Stacy's Mom
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53703,40.7128,-74.006,mushroom,dog,Yes,early bird,No,All my love - Noah Kahan
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Engineering: Industrial,,,53706,32.8262,-117.2642,pineapple,dog,No,night owl,Maybe,"Down Low, Dombresky"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Undecided ,,53706,64.1472,-21.9424,pepperoni,dog,Yes,no preference,Maybe,i by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Economics w data science certificate,,53703,40.7306,-73.9352,pepperoni,dog,Yes,night owl,Yes,Schizo - Travis Scott & Young Thug
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Business: Other,Management & Human Resources,Data Science,53706,10.8231,106.6297,mushroom,dog,No,night owl,Maybe,Flowers - Miley Cyrus
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53534,43.0739,-89.3852,sausage,dog,No,no preference,Yes,All I wanna do-Jay Park
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,41.8781,-87.6298,Other,dog,Yes,no preference,Yes,surf - mac miller
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,23.7142,-166.205,pepperoni,dog,No,night owl,Maybe,Somthing in the Orange (Zack Bryan)
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,N/A,53706,40.5509,14.2429,pepperoni,cat,No,early bird,Yes,"Any Taylor Swift Song, one including Fearless"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Engineering: Mechanical,,,53562,19.0533,-104.3161,macaroni/pasta,dog,No,early bird,Yes,Escape (The Pina Colada Song) - Rupert Holmes
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pineapple,cat,Yes,night owl,Yes,Anything by Taylor Swift (must be Taylor's Version if the album is available)
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Industrial,,Data Science ,55424,21.1743,-86.8466,pineapple,dog,Yes,no preference,Maybe,Some nights - fun.
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Other (please provide details below).,I am a sociology major.,A few minors but no other majors at this point. ,53726,43,-88,green pepper,dog,Yes,night owl,Yes,Natural Mystic - Bob Marley
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Engineering: Industrial,,,53705,34.6819,112.4681,green pepper,neither,No,night owl,Yes,"Komm, süßer Tod (come on sweet death)"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53706,-22.9068,43.1729,Other,dog,Yes,night owl,Yes,Red Red Wine by UB40
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Engineering: Mechanical,,,53711,44.9932,-93.5635,sausage,dog,Yes,night owl,Yes,Chan Chan; Bueno Vista Social Club
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,economics,political science,53715,41.9,12.5,basil/spinach,cat,No,early bird,No,sundress Asap Rocky
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Computer Science,,Mathematics,53703,,,pineapple,cat,No,night owl,Maybe,"Blinding Lights, The Weeknd "
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Science: Biology/Life,,,53706,23.0033,120.2588,none (just cheese),dog,No,no preference,Yes,It's a Kind of Magic - Queen
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,20,Data Science,,,53706,34.4208,-119.6982,pineapple,dog,No,early bird,Yes,Cigarette Daydreams by Cage the Elephant
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,No,night owl,Yes,Can't Tell Me Nothing - Kanye West
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Other (please provide details below).,Political Science,data science,53706,39.2783,-74.5755,sausage,dog,No,night owl,Yes,Goodmorning by bleachers
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC001,19,Other (please provide details below).,A double major in Data Science and Economics,,53706,39.0742,21.8243,sausage,dog,No,no preference,Yes,New Romantics - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Engineering: Mechanical,,,53715,39.9527,-75.164,sausage,dog,Yes,early bird,Yes,Golden Hour- jVke
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,I am also planning to major in Business Management.,53706,35.6528,139.8395,pepperoni,dog,No,night owl,Maybe,"I do not really have a specific favorite song, but my all-time favorite genres are rocks with bands like Queens, The White Stripes, Linkin Park,...But mostly I listen to unlyrical songs like phonk and lofi depending on the mood. "
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,21,Science: Physics,,,53726,43.0731,-89.4012,green pepper,cat,No,night owl,No,Gymnopedie No. 1 - Eric Satie
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.6003,-105.9831,sausage,dog,No,night owl,Yes,Istanbul (Not Constantinople)
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Industrial,,,53715,19.7193,-156.0013,pepperoni,dog,No,night owl,Yes,Cuccurucucù by Franco Battiato
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Other (please provide details below).,Economics,Possibly mathematics,53706,42.3601,-71.0589,macaroni/pasta,dog,No,night owl,Yes,Castle on the Hill by Ed Sheeran
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Other (please provide details below).,Information Science ,Political Science,53715,41.8781,-87.6298,pepperoni,cat,Yes,early bird,No,Both - Tiesto & BIA
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Communication,,53715,45.0557,-92.8101,basil/spinach,dog,No,no preference,Maybe,"Meet me in the morning, Bob Dylan"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53706,35.6067,-220.2139,pepperoni,cat,No,night owl,Yes,24k magic- Bruno Mars
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,,53703,-36.8485,174.7633,pepperoni,cat,No,night owl,Yes,Eastside Banny Blanco
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Business: Actuarial,,,53703,-33.8688,151.2093,pepperoni,dog,Yes,night owl,Yes,I Remember Everything by Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC005,18,Data Science,,,53703,40.7128,74.006,none (just cheese),dog,No,night owl,Yes,Revival by Zach Bryan
COMP SCI 319:LEC002,LEC002,30,Science: Other,Geoscience,,53703,-63.9755,-57.9712,basil/spinach,dog,Yes,early bird,Yes,Un Dia - Juana Molina
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Engineering: Mechanical,na,na,53704,,,sausage,cat,No,early bird,Maybe,
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pepperoni,cat,No,night owl,Yes,No Plan By Hozier
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,23,Computer Science,,,53705,30.2741,120.1551,macaroni/pasta,neither,Yes,no preference,No,soaring-TomLeevis
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53726,18.15,-65.8,sausage,dog,Yes,night owl,Maybe,Its all coming back to me now by Celine Dion
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Biology/Life,,,53715,39.9042,116.4074,sausage,cat,No,night owl,Maybe,"[米津玄師 - アンビリーバーズ , Kenshi Yonezu - Unbelivers] (https://www.youtube.com/watch?v=naJcqMBbAn4)"
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Statistics,,mathematics ,53706,35.86,104.2,sausage,cat,No,no preference,Maybe,Lemon Tree by Fools Garden
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,Mathematics,53706,41.8781,-87.6298,pepperoni,cat,No,no preference,Yes,Kon Queso by MF DOOM
COMP SCI 319:LEC001,LEC001,22,Computer Science,,,53703,45.576,13.8475,pepperoni,dog,No,early bird,No,i dont know
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,35.6895,139.6917,pepperoni,dog,Yes,early bird,Yes,Levels - Sidhu Moosewala
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53703,29.6548,91.1405,green pepper,cat,Yes,early bird,No,Perfect by Ed Sheeran
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics,,53715,64.1472,-21.9424,Other,cat,No,no preference,Maybe,
%% Cell type:markdown id: tags:
# Lists Practice
%% Cell type:markdown id: tags:
## Warmup
%% Cell type:code id: tags:
``` python
import csv
# source: Automate the Boring Stuff with Python Ch 12
def process_csv(filename):
exampleFile = open(filename, encoding="utf-8")
exampleReader = csv.reader(exampleFile)
exampleData = list(exampleReader)
exampleFile.close()
return exampleData
cs220_csv = process_csv('cs220_survey_data.csv')
cs220_header = cs220_csv[0]
cs220_data = cs220_csv[1:]
```
%% Cell type:code id: tags:
``` python
# Warmup 0: Hotkeys
# We move quickly, it's good to know some hotkeys!
# All-around good-to-knows...
# Ctrl+A: Select all the text in a cell.
# Ctrl+C: Copy selected text.
# Ctrl+X: Cut selected text.
# Ctrl+V: Paste text from clipboard.
# Ctrl+S: Save.
# Jupyter-specific good-to-knows...
# Ctrl+Enter: Run Cell
# Ctrl+/: Comment/uncomment sections of code.
# Esc->A: Insert cell above
# Esc->B: Insert cell below
# Esc->Shift+L: Toggle line numbers.
```
%% Cell type:code id: tags:
``` python
# Warmup 1: Empty List
weekend_plans = [] # I have no weekend plans :(
print(weekend_plans)
# add three things to your weekend plans using .append
weekend_plans.append("study")
weekend_plans.append("hike")
weekend_plans.append("golf")
print(weekend_plans)
```
%% Cell type:code id: tags:
``` python
# Warmup 2: Sets
# Like a list, a set is another collection.
# However, it is unordered and unique.
# The function names are also a little different!
my_set_of_weekend_plans = set()
# .add 4 weekend plans, 1 of which is a duplicate.
my_set_of_weekend_plans.add("study")
my_set_of_weekend_plans.add("study")
my_set_of_weekend_plans.add("hike")
my_set_of_weekend_plans.add("golf")
print(my_set_of_weekend_plans)
# We can .pop... but it will remove a random item.
# See https://www.w3schools.com/python/trypython.asp?filename=demo_ref_set_pop2
what_removed = my_set_of_weekend_plans.pop()
print(what_removed)
print(my_set_of_weekend_plans)
# We can .discard a specific item!
# Unlike a list's remove, this will not throw an error if DNE.
my_set_of_weekend_plans.discard('study')
print(my_set_of_weekend_plans)
```
%% Cell type:code id: tags:
``` python
# Warmup 3: Improve the cell function...
def cell(row_idx, col_name):
col_idx = cs220_header.index(col_name)
val = cs220_data[row_idx][col_idx]
if val == "":
return None
elif col_name == "Age" or col_name == "Zip Code":
return int(val)
elif col_name == "Latitude" or col_name == "Longitude":
return float(val)
else:
return val
```
%% Cell type:code id: tags:
``` python
# Warmup 4: Does the oldest basil/spinach-loving Business major prefer cats, dogs, or neither?
oldest_idx = None
oldest_age = None
for i in range(len(cs220_data)):
current_age = cell(i, "Age")
current_pizza = cell(i, "Pizza topping")
current_major = cell(i, "Primary major")
if current_age == None:
continue
current_age = int(current_age)
if current_pizza == "basil/spinach" and current_major.startswith("Business"):
if oldest_idx == None or current_age > oldest_age:
oldest_age = current_age
oldest_idx = i
print(cell(oldest_idx, "Cats or dogs"))
```
%% Cell type:code id: tags:
``` python
# Warmup 5: Is their favorite city in the United States?
# The United States has latitudes approximately spanning from 23.101 to 49.632
# and longitudes approximately spanning from -129.306 to -65.017
spinach_lat = cell(oldest_idx, "Latitude")
spinach_lon = cell(oldest_idx, "Longitude")
if 23.101 <= spinach_lat <= 49.632 and -129.306 <= spinach_lon <= -65.017:
print('in the USA')
else:
print('NOT in the USA')
```
%% Cell type:markdown id: tags:
## Restaurants
%% Cell type:code id: tags:
``` python
restaurant_csv = process_csv('restaurants.csv')
# TODO: Display restaurant_csv. What do we call this data structure?
restaurant_csv
```
%% Cell type:code id: tags:
``` python
# Seperate the data into 2 parts...
# a header row, and a list of data rows
restaurant_header = restaurant_csv[0]
restaurant_data = restaurant_csv[1:]
print(restaurant_header)
print(restaurant_data)
```
%% Cell type:code id: tags:
``` python
# Make a list of just the names from restaurant_data
names = [] # names starts out empty, we will append to it
for row in restaurant_data:
names.append(row[1])
names
```
%% Cell type:code id: tags:
``` python
# Convert names to a unique list of names
print(names)
names = list(set(names))
print(names)
```
%% Cell type:code id: tags:
``` python
# Sorting Option 1
print(names)
# TODO: Print the sorted list without changing it.
print(sorted(names))
```
%% Cell type:code id: tags:
``` python
# Sorting Option 2
print(names)
# TODO: Sort the list and print it
names.sort()
print(names)
```
%% Cell type:code id: tags:
``` python
# This is for our debugging sake.
restaurant_header
```
%% Cell type:code id: tags:
``` python
# This is for our debugging sake.
restaurant_data
```
%% Cell type:code id: tags:
``` python
# Define the cell function.
# If there is no data (""), return None
# Return x_coord and y_coord as an int.
# Return all other data as a string.
def cell(row_idx, col_name):
col_idx = restaurant_header.index(col_name)
val = restaurant_data[row_idx][col_idx]
if val == "":
return None
elif col_name in ['x_coord', 'y_coord']:
return int(val)
else:
return val
```
%% Cell type:code id: tags:
``` python
# Write a function that is sent x y coordinates (ints)
# and returns back the business_id of that restaurant.
def get_restaurant_at_coordinates(search_x, search_y):
for i in range(len(restaurant_data)):
current_id = cell(i, "restaurant_id")
current_x = cell(i, "x_coord")
current_y = cell(i, "y_coord")
if current_x == None or current_y == None:
continue
if current_x == search_x and current_y == search_y:
return current_id
print(get_restaurant_at_coordinates(1, 3)) # should be EIN_1
print(get_restaurant_at_coordinates(0, -3)) # should be GRE_1
print(get_restaurant_at_coordinates(2, -3)) # should be None
```
%% Cell type:code id: tags:
``` python
# Write a function that is sent the business ID of a
# restaurant and returns the x and y coordinates as a string
# This should be case-insensitive.
def get_coordinates(restaurant_id):
for i in range(len(restaurant_data)):
current_id = cell(i, "restaurant_id")
current_x = cell(i, "x_coord")
current_y = cell(i, "y_coord")
if current_x == None or current_y == None:
continue
if current_id.lower() == restaurant_id.lower():
return "({}, {})".format(current_x, current_y)
print(get_coordinates("GRE_1")) # should be (0, -3)
print(get_coordinates("MCD_2")) # should be (2, 0)
print(get_coordinates("mcd_2")) # should be (2, 0)
print(get_coordinates("PAN_1")) # should be None
print(get_coordinates("ZZZ_123")) # should be None
```
%% Cell type:code id: tags:
``` python
# Define get_smallest_index to get the INDEX of the smallest value in col_name (such as 'x_coord')
# If there are ties, use the last value in the dataset.
def get_smallest_index(col_name):
smallest = None
smallest_idx = None
for i in range(len(restaurant_data)):
curr_val = cell(i, col_name)
if curr_val == None:
continue
if smallest == None or curr_val <= smallest:
smallest = curr_val
smallest_idx = i
return smallest_idx
```
%% Cell type:code id: tags:
``` python
# What is the name of the restaurant farthest to the west?
far_west_idx = get_smallest_index("x_coord")
far_west_raunt = cell(far_west_idx, 'name')
far_west_raunt
```
%% Cell type:code id: tags:
``` python
# What is the business ID of the restaurant farthest to the south?
far_north_idx = get_smallest_index("y_coord")
far_north_raunt = cell(far_north_idx, 'restaurant_id')
far_north_raunt
```
%% Cell type:code id: tags:
``` python
# Complete this function that computes the distance
# between (x1,y1) and (x2,y2)
import math
def distance(x1, y1, x2, y2):
return math.sqrt((x1 - x2) ** 2 + (y1 - y2) ** 2)
print(distance(0, 0, 3, 4)) # should be 5.0
print(distance(1, 2, 2, 3)) # should be square root of 2
print(distance(-3, 3, 2, -9)) # should be 13.0
```
%% Cell type:code id: tags:
``` python
# Write a function that is sent x and y coordinates and returns
# the name of the closest restaurant to those coordinates
# Use the distance formula to calculate distance.
def closest_restaurant(source_x, source_y):
'''return the name of the closest restaurant to the parameters given'''
closest_index = None # start with no value, to be clear if no result found
min_dist = None # why does this have to be None, not just 0?
for i in range(len(restaurant_data)):
current_x = cell(i, "x_coord")
current_y = cell(i, "y_coord")
if current_x == None or current_y == None:
continue
current_dist = distance(current_x, current_y, source_x, source_y)
if closest_index == None or current_dist < min_dist:
closest_index = i
min_dist = current_dist
return cell(closest_index, "name")
print(closest_restaurant(3, 3)) # should be Einsteins Bagels
print(closest_restaurant(0, 0)) # should be Starbucks
print(closest_restaurant(5, -2)) # should be McDonalds
print(closest_restaurant(1, -2)) # should be Greenbush Donuts
```
%% Cell type:code id: tags:
``` python
```
%% Cell type:markdown id: tags:
# Lists Practice
%% Cell type:markdown id: tags:
## Warmup
%% Cell type:code id: tags:
``` python
import csv
# source: Automate the Boring Stuff with Python Ch 12
def process_csv(filename):
exampleFile = open(filename, encoding="utf-8")
exampleReader = csv.reader(exampleFile)
exampleData = list(exampleReader)
exampleFile.close()
return exampleData
cs220_csv = process_csv('cs220_survey_data.csv')
cs220_header = cs220_csv[0]
cs220_data = cs220_csv[1:]
```
%% Cell type:code id: tags:
``` python
# Warmup 0: Hotkeys
# We move quickly, it's good to know some hotkeys!
# All-around good-to-knows...
# Ctrl+A: Select all the text in a cell.
# Ctrl+C: Copy selected text.
# Ctrl+X: Cut selected text.
# Ctrl+V: Paste text from clipboard.
# Ctrl+S: Save.
# Jupyter-specific good-to-knows...
# Ctrl+Enter: Run Cell
# Ctrl+/: Comment/uncomment sections of code.
# Esc->A: Insert cell above
# Esc->B: Insert cell below
# Esc->Shift+L: Toggle line numbers.
```
%% Cell type:code id: tags:
``` python
# Warmup 1: Empty List
weekend_plans = [] # I have no weekend plans :(
print(weekend_plans)
# TODO add three things to your weekend plans using .append
print(weekend_plans)
```
%% Cell type:code id: tags:
``` python
# Warmup 2: Sets
# Like a list, a set is another collection.
# However, it is unordered and unique.
# The function names are also a little different!
my_set_of_weekend_plans = set()
# .add 4 weekend plans, 1 of which is a duplicate.
print(my_set_of_weekend_plans)
# We can .pop... but it will remove a random item.
# See https://www.w3schools.com/python/trypython.asp?filename=demo_ref_set_pop2
print(my_set_of_weekend_plans)
# We can .discard a specific item!
# Unlike a list's remove, this will not throw an error if DNE.
print(my_set_of_weekend_plans)
```
%% Cell type:code id: tags:
``` python
# Warmup 3: Improve the cell function...
def cell(row_idx, col_name):
col_idx = cs220_header.index(col_name)
val = cs220_data[row_idx][col_idx]
if val == "":
return None
elif col_name == "Age":
return int(val)
else:
return val
```
%% Cell type:code id: tags:
``` python
# Warmup 4: Does the oldest basil/spinach-loving Business major prefer cats, dogs, or neither?
```
%% Cell type:code id: tags:
``` python
# Warmup 5: Is their favorite city in the United States?
# The United States has latitudes approximately spanning from 23.101 to 49.632
# and longitudes approximately spanning from -129.306 to -65.017
```
%% Cell type:markdown id: tags:
## Restaurants
%% Cell type:code id: tags:
``` python
restaurant_csv = process_csv('restaurants.csv')
# TODO: Display restaurant_csv. What do we call this data structure?
```
%% Cell type:code id: tags:
``` python
# TODO: Seperate the data into 2 parts...
# a header row, and a list of data rows
```
%% Cell type:code id: tags:
``` python
# TODO: Make a list of just the names from restaurant_data
names = [] # names starts out empty, we will append to it
for row in restaurant_data:
pass
names
```
%% Cell type:code id: tags:
``` python
# Convert names to a unique list of names
print(names)
# TODO Convert to a unique list of names
print(names)
```
%% Cell type:code id: tags:
``` python
# Sorting Option 1
print(names)
# TODO: Print the sorted list without changing it.
```
%% Cell type:code id: tags:
``` python
# Sorting Option 2
print(names)
# TODO: Sort the list and print it
```
%% Cell type:code id: tags:
``` python
# This is for our debugging sake.
restaurant_header
```
%% Cell type:code id: tags:
``` python
# This is for our debugging sake.
restaurant_data
```
%% Cell type:code id: tags:
``` python
# Define the cell function.
# If there is no data (""), return None
# Return x_coord and y_coord as an int.
# Return all other data as a string.
def cell(row_idx, col_name):
col_idx = restaurant_header.index(col_name)
val = restaurant_data[row_idx][col_idx]
if ???:
return None
elif ???:
return int(val)
else:
return val
```
%% Cell type:code id: tags:
``` python
# Write a function that is sent x y coordinates (ints)
# and returns back the business_id of that restaurant.
def get_restaurant_at_coordinates(search_x, search_y):
for i in range(len(restaurant_data)):
???
print(get_restaurant_at_coordinates(1, 3)) # should be EIN_1
print(get_restaurant_at_coordinates(0, -3)) # should be GRE_1
print(get_restaurant_at_coordinates(2, -3)) # should be None
```
%% Cell type:code id: tags:
``` python
# Write a function that is sent the business ID of a
# restaurant and returns the x and y coordinates as a string
# This should be case-insensitive.
def get_coordinates(restaurant_id):
for i in range(len(restaurant_data)):
???
print(get_coordinates("GRE_1")) # should be (0, -3)
print(get_coordinates("MCD_2")) # should be (2, 0)
print(get_coordinates("mcd_2")) # should be (2, 0)
print(get_coordinates("PAN_1")) # should be None
print(get_coordinates("ZZZ_123")) # should be None
```
%% Cell type:code id: tags:
``` python
# Define get_smallest_index to get the INDEX of the smallest value in col_name (such as 'x_coord')
# If there are ties, use the last value in the dataset.
def get_smallest_index(col_name):
pass
```
%% Cell type:code id: tags:
``` python
# What is the name of the restaurant farthest to the west?
```
%% Cell type:code id: tags:
``` python
# What is the business ID of the restaurant farthest to the south?
```
%% Cell type:code id: tags:
``` python
# Complete this function that computes the distance
# between (x1,y1) and (x2,y2)
import math
def distance(x1, y1, x2, y2):
pass
print(distance(0, 0, 3, 4)) # should be 5.0
print(distance(1, 2, 2, 3)) # should be square root of 2
print(distance(-3, 3, 2, -9)) # should be 13.0
```
%% Cell type:code id: tags:
``` python
# Write a function that is sent x and y coordinates and returns
# the name of the closest restaurant to those coordinates
# Use the distance formula to calculate distance.
def closest_restaurant(source_x, source_y):
'''return the name of the closest restaurant to the parameters given'''
closest_index = None # start with no value, to be clear if no result found
min_dist = None # why does this have to be None, not just 0?
for i in range(len(restaurant_data)):
current_x = cell(i, "x_coord")
current_y = cell(i, "y_coord")
if ???:
continue
current_dist = ???
if ???:
closest_index = i
min_dist = current_dist
# Why do we use index? Why not just name?
# Pretend that we instead have to get the business id!
return cell(closest_index, "name")
print(closest_restaurant(3, 3)) # should be Einsteins Bagels
print(closest_restaurant(0, 0)) # should be Starbucks
print(closest_restaurant(5, -2)) # should be McDonalds
print(closest_restaurant(1, -2)) # should be Greenbush Donuts
```
%% Cell type:code id: tags:
``` python
```
%% Cell type:code id: tags:
``` python
# Lecture 16 worksheet answers
# https://www.msyamkumar.com/cs220/s22/materials/lec-16-worksheet.pdf
# The purpose of this worksheet is to prepare you for exam questions.
# You should do the worksheet by hand, then check your work.
# If you have questions please make a public post on Piazza and include the Given
# Students, feel free to answer each other's questions
```
%% Cell type:code id: tags:
``` python
# Problem 1 Given:
nums = [100, 2, 3, 40, 99]
words = ["three", "two", "one"]
```
%% Cell type:code id: tags:
``` python
# Problem 1 answers
print(nums[-1])
print(nums[1:3])
print(words[1])
print(words[1][1])
print(words[1][-2] * nums[2])
print()
print(words.index("two"))
print(nums[words.index("two")])
print(nums[:1] + words[:1])
print(",".join(words))
print((",".join(words))[4:7])
```
%% Output
99
[2, 3]
two
w
www
1
2
[100, 'three']
three,two,one
e,t
%% Cell type:code id: tags:
``` python
```
%% Cell type:code id: tags:
``` python
# Problem 2 Given:
rows = [["x", "y","name"], [3,4,"Alice"], [9,1,"Bob"], [-3,4,"Cindy"]]
header = rows[0]
data = rows[1:]
X = 0
Y = 1
NAME = 2
```
%% Cell type:code id: tags:
``` python
# Problem 2 answers
print(len(rows))
print(len(data))
print(len(header))
print(rows[1][-1])
print(data[1][-1])
print()
print(header.index("name"))
print(data[-1][header.index("name")])
print((data[0][X] + data[1][X] + data[2][X]) / 3)
print((data[-1][X] ** 2 + data[-1][Y] ** 2) ** 0.5)
print(min(data[0][NAME], data[1][NAME], data[2][NAME]))
```
%% Output
4
3
3
Alice
Bob
2
Cindy
3.0
5.0
Alice
%% Cell type:code id: tags:
``` python
```
%% Cell type:code id: tags:
``` python
# Problem 3 Given:
rows = [ ["Food Science", "24000", "0.049188446", "62000"],
["CS", "783000", "0.049518657", "78000"],
["Microbiology", "70000", "0.050880749", "60000"],
["Math", "433000", "0.05293608", "66000"] ]
hd = ["major", "students", "unemployed", "salary"]
```
%% Cell type:code id: tags:
``` python
# Problem 3 answers
print(rows[1][0])
print(rows[3][hd.index("students")])
print(len(hd) == len(rows[1]))
print(rows[0][1] + rows[2][1])
```
%% Output
CS
433000
True
2400070000
%% Cell type:code id: tags:
``` python
```
%% Cell type:code id: tags:
``` python
# Problem 4 Given:
rows = [ ["city", "state", "y14", "y15"],
["Chicago", "Illinois", "411", "478"],
["Milwaukee", "Wisconsin", "90", "145"],
["Detroit", "Michigan", "298", "295"] ]
hd = rows[0]
rows = rows[1:] #this removes the header and stores the result in rows
```
%% Cell type:code id: tags:
``` python
# Problem 4 answers:
print(rows[0][hd.index("city")])
print(rows[0][hd.index("y14")])
print(rows[2][hd.index("y14")] < rows[2][hd.index("y15")])
print(", ".join(rows[-1][:2]))
```
%% Output
Chicago
411
False
Detroit, Michigan
%% Cell type:code id: tags:
``` python
```
%% Cell type:code id: tags:
``` python
# Problem 5 Given:
```
section,Lecture,Age,Primary major,Other Primary Major,Other majors,Zip Code,Latitude,Longitude,Pizza topping,Cats or dogs,Runner,Sleep habit,Procrastinator,Song
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Other (please provide details below).,Atmospheric and Oceanic Science,,53703,44.256,-88.409,basil/spinach,cat,No,early bird,Yes,Kanye
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53711,51.5072,-0.1257,Other,dog,No,night owl,Yes,Eyes Closed by Ed Sheeran
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Computer Science,,,53703,37.7749,-122.4194,pineapple,dog,Yes,night owl,Yes,Eight - IU
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Engineering: Other,Engineering Undecided,,53706,44.9241,-93.3474,pineapple,dog,Yes,no preference,No,"Feathered Indians, Tyler Childers"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,,Data Science,,,53715,40.7128,-74.006,sausage,dog,Yes,early bird,Yes,Post malone -overdrive
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,No secondary majors ,53715,51.5072,0.1276,pepperoni,dog,Yes,night owl,Yes,No Role Modelz - J. Cole
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,17,Mathematics/AMEP,,Computer Science,53706,19.076,72.8777,pepperoni,dog,Yes,early bird,Maybe,Do Not Disturb - Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,,Engineering: Mechanical,,,53706,37.5683,157.3409,none (just cheese),cat,Yes,night owl,Yes,
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics ,,53706,44.5133,88.0133,sausage,cat,No,night owl,Yes,"Pyro
Kings of Leon"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Other (please provide details below).,Global Health,,53706,40.7128,-74.006,none (just cheese),dog,Yes,no preference,Maybe,everywhere by fleetwood mac
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Information Systems,,,54601,25.7617,-80.1918,mushroom,cat,No,night owl,Yes,bando playboy carti
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53703,43.0658,-87.9671,none (just cheese),dog,No,early bird,Yes,Today was a good day by Ice Cube
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Statistics,,data science,53703,43.0766,-89.3972,pineapple,dog,Yes,night owl,Yes,Nikes on my feet - Mac Miller
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,,,53558,45.0854,93.0081,pepperoni,dog,Yes,no preference,Yes,Last Night - Morgan Waller
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Business: Finance,,,53706,28.3852,-81.5639,pepperoni,dog,Yes,night owl,Yes,Paradise -- Coldplay
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Science: Biology/Life,,Data Science,53706,32.0809,-81.0912,sausage,cat,Yes,no preference,Yes,Cupid de Locke - the Smashing Pumpkins
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Data Science,,,53716,77.82,86.48,pepperoni,dog,No,early bird,Yes,"Violent crimes
Kanye west"
COMP SCI 319:LEC002,LEC002,28,Engineering: Other,,,53703,24.8801,102.8329,pepperoni,neither,Yes,night owl,Yes,No,I hardly listen to music.
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Other (please provide details below).,Atmospheric and Oceanic Sciences ,Journalism ,53706,48.8566,2.3522,Other,dog,No,night owl,Maybe,"Dancing Queen
By Abba "
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Business: Finance,N/A,N/A,53703,25.7,-80.2,pepperoni,dog,No,no preference,Yes,All Me by Drake
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,,Computer Science,,,53704,0,0,sausage,cat,No,night owl,Maybe,WYS - Snowman
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Science: Other,,,53703,43.0833,-89.3725,basil/spinach,dog,Yes,early bird,Yes,Fly Love by Jamie Foxx
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,,Engineering: Mechanical,,,53706,33.3062,111.8413,mushroom,cat,No,night owl,Yes,Nerves by DPR Ian
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,,Computer Science,,,53726,35.6528,139.8395,mushroom,dog,No,night owl,No,Us by milet
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,"Comp sci, certificate in economic analytics",53715,39.7392,-104.9903,pineapple,dog,Yes,night owl,Yes,Everlong - Foo Fighters
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,BS Art,,53593,37.5665,126.978,pepperoni,cat,No,night owl,Yes,Mariah Carey - All I Want for Christmas Is You
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,43.07,-89.4,pineapple,dog,No,night owl,Yes,Vienna by Billy Joel
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Other,,,53175,42.8646,-88.3332,pepperoni,dog,Yes,night owl,Yes,Temperature by Sean Paul
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Computer Science,,Mathematics,53706,47.6081,-122.0117,pepperoni,cat,No,night owl,Yes,"Fly High!!, Burnout Syndrome "
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Engineering: Mechanical,,,53703,34,5,sausage,dog,No,night owl,Yes,say so - doja cat
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,21,Business: Information Systems,,,53715,47,86,pepperoni,dog,Yes,no preference,Yes,7 Years - Lukas Graham
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,,Business: Information Systems,information science,,53715,29.4393,106.4556,sausage,dog,Yes,early bird,No,love story
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,20,Business: Other,,Sociology,53703,43.07,-89.4,sausage,neither,Yes,night owl,Maybe,Cudi Zone- Kid Cudi
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Data Science,,,53706,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Peppas - Farruko
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,38258,46.3131,-91.4905,sausage,dog,Yes,night owl,Yes,No Remorse Metalica
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Data Science,,,53703,3.2028,73.2207,pepperoni,dog,Yes,night owl,Yes,"Rich Men North of Richmond
Oliver Anthony"
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,21,Engineering: Mechanical,,,53715,44.9778,-93.265,pepperoni,dog,Yes,no preference,Yes,"Never Gonna Give You Up -Rick Astley
"
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,1134,40.4111,-105.6413,pepperoni,dog,No,night owl,Yes,Out of Touch by Daryl Hall and John Oats
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Computer Science,,Public Health and Policy,53706,37.5,126.9,basil/spinach,cat,No,night owl,No,No One Else Like You(Adam Levine)
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Data Science,,,53703,41.9028,12.4964,pepperoni,dog,No,night owl,Yes,Pursuit of Happiness by Kid Cudi
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,,Engineering: Mechanical,,,53703,12.957,77.401,macaroni/pasta,dog,Yes,night owl,Yes,Out of Touch by Hall and Oates
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,44.5133,-88.0133,pepperoni,dog,No,night owl,Yes,Where the Boat Leaves From By Zac Brown Band
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Other,bme,,53715,42.3601,71.0589,pepperoni,dog,No,no preference,Maybe,noah kahan - mess
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Engineering: Mechanical,,,53703,39.0476,-77.132,pepperoni,dog,Yes,night owl,Yes,
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Other (please provide details below).,"Econ with math emphasis (photography certificate)
",,53703,-41.2865,174.7762,pineapple,neither,Yes,no preference,Maybe,None.
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pepperoni,dog,No,night owl,No,
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,40.7128,-74.006,pepperoni,dog,No,night owl,Maybe,Sultans of Swing - Dire Straits
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,45.3733,84.9553,macaroni/pasta,dog,Yes,night owl,Yes,kimdracula - deftones
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,21,Other (please provide details below).,My primary major is Economics.,I'm planning to get data science certificate.,53715,37.5665,126.978,sausage,dog,Yes,night owl,Maybe,Dandelions - Ruth B.
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,40.7,-74,pepperoni,dog,No,no preference,Maybe,I don't really have a favorite song.
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,Consumer behavior and marketplace studies.,,53715,44.9778,-93.265,pineapple,cat,Yes,early bird,Maybe,Love Story - Taylor Swift
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,,Data Science,,,53706,41.8781,87.6298,pepperoni,cat,No,night owl,Yes,Bright Size Life by Pat Metheny
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Data Science,,I am considering majoring in Genetics as well,53706,45.6378,-89.4113,Other,dog,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,,53726,43.0731,-89.4012,sausage,dog,Yes,early bird,Yes,Young Girls - Bruno Mars
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,,Engineering: Mechanical,,,53711,,,pepperoni,cat,Yes,no preference,Maybe,"""Wont Back Down""
-Tom Petty"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,Genetics,Data science,53706,42.0262,-88.0697,pineapple,dog,No,night owl,Yes,Merrry-Go-Round of life by joe Hisaishi
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,53715,37.5665,126.978,basil/spinach,dog,No,no preference,No,"""a lot"" by 21 savage"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53705,31.2244,121.4692,pepperoni,cat,No,night owl,Yes,ハゼ馳せる果てるまで by ずっと真夜中でいいのに
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Biomedical,,i’m considering a double major in economics or political science ,53703,48.8566,2.3522,basil/spinach,cat,No,no preference,Yes,alien superstar by beyoncé
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,23,Mathematics/AMEP,N/A,Certificate in Data Science,53703,19.4326,-99.1332,pepperoni,dog,Yes,early bird,Maybe,Runaway by Kanye West (Fyi: it’s a 10 min song)
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Data Science,,,53706,47.6062,-122.3321,pineapple,cat,No,night owl,Yes,you belong with me by taylor swift
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Industrial,,,53706,38.752,48.8466,pepperoni,cat,No,early bird,Maybe,Kerosene -Crystal Castles
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Economics and Psychology ,Possibly a Data science minor ,53703,40.4406,-79.9959,sausage,dog,No,early bird,Maybe,Wonderwall - Oasis
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Mathematics/AMEP,,Mathematics and Economics,53703,86.9212,40.4237,mushroom,cat,No,early bird,Maybe,Christmas List by Anson Seabra
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53708,42.3611,-71.0571,Other,dog,No,night owl,Yes,Sultans of Swing by Dire Straits
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Science: Chemistry,,None,53715,37.5683,126.9978,sausage,dog,No,night owl,Yes,Under the bridge - Red Hot Chili Peppers
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics,Data science. ,53703,36.6769,117.1201,sausage,dog,No,night owl,Yes,Heat waves by Glass Animals
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pepperoni,dog,No,night owl,Yes,Hey ya- outkast
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Engineering: Mechanical,,,53704,44.5133,-88.0133,pepperoni,cat,No,early bird,Yes,The adults are talking-The strokes
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,Statistics,53706,24.5551,-81.78,pepperoni,neither,Yes,no preference,No,Circles- bangers only & fawlin
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,45.4408,12.3155,pepperoni,dog,Yes,night owl,Yes,"Upside Down, Jack Johnson"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,21,Data Science,,Secondary major: Computer Science,53711,35.6528,139.8395,sausage,cat,Yes,night owl,Yes,Mayonaka no Door / Stay With Me
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economics ,maybe data science,53703,25.2048,55.2708,mushroom,cat,Yes,night owl,Maybe,"Dancing with A Stranger
Sam Smith and Normani
"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Other (please provide details below).,Pre-business.,Want to do Computer Science as my secondary major.,53718,39.9042,116.4074,pepperoni,cat,Yes,night owl,Maybe,Lose Yourself - Eminem
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,,Science: Other,Zoology ,Conservation Biology ,53706,43.0731,-89.4012,none (just cheese),cat,No,night owl,Yes,The Fall- Lovejoy
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Economics,"French, International Studies",53715,43,89.4,sausage,dog,Yes,night owl,Yes,"Tiny Dancer, Elton John"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,22,Data Science,,,53715,37.5665,126.978,pepperoni,dog,Yes,night owl,Yes,My favorite song is Hate you by Yerin Baek.
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53715,47.6062,-122.3321,pepperoni,dog,No,night owl,Maybe,"it changes often, through many genres, but currently,
Aaron Hibell - destroyer of worlds (oppenheimer trance edit)
"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC001,21,Other (please provide details below).,Economics ,Data Science,53703,0.8035,90.0425,pineapple,dog,No,night owl,Yes,Lifestyles of the Rich and Famous by Good Charlotte
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Engineering: Other,Computer Engineering,NA,53715,39.795,-74.7773,pepperoni,dog,Yes,night owl,Yes,NA
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Business: Finance,,,53706,45.4647,9.1885,sausage,dog,Yes,early bird,Maybe,Drake-Passionfruit
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,I'm a Computer Science Major. ,I'm a Data science Major.,53706,42.2475,-84.4089,Other,dog,No,no preference,Maybe,Just like me by A boogie wit da hoodie.
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,,Engineering: Mechanical,,,53706,40.7128,-74.006,pepperoni,cat,No,night owl,Yes,Love Lost - Mac Miller
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Other (please provide details below).,,"Data Science, Mathematics",53706,39.4822,-106.0462,pepperoni,dog,Yes,early bird,Yes,"Keep Your Head Up
by Andy Grammar"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Other (please provide details below).,Economics,,53073,60.3913,5.3221,pepperoni,cat,No,night owl,No,Iron Lung - King Gizzard and the Lizard Wizard
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Other (please provide details below).,Econ Major ,,53703,43.0731,-89.4012,sausage,dog,No,night owl,Yes,Follow God by Kayne West
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Engineering: Mechanical,,,53076,43.7696,11.2558,Other,dog,No,no preference,Maybe,The Difference -Flume
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Information Science.,Economics.,53703,43.0731,-89.4012,Other,cat,Yes,night owl,Yes,GEEKED N BLESSED by LUCKI
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Other (please provide details below).,Journalism,,53715,41.3874,2.1686,none (just cheese),cat,Yes,night owl,Yes,revival zach bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,Economics and certificate in Data Science ,,53703,23.2494,106.4111,pineapple,dog,No,night owl,Maybe,Sketzo by Travis Scott and Young Thug
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Business: Finance,Finance,data science,53705,200,116,mushroom,cat,Yes,night owl,Yes,Who am I- why don't we
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Mathematics/AMEP,,,53706,43.0731,-89.4012,sausage,dog,Yes,night owl,Yes,Runaway- Kanye
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,21,Business: Other,Pass,Pass,53705,40.7128,-74.006,green pepper,cat,Yes,night owl,Yes,"""Steal the show"", by Lauv
"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Computer Science,,,53706,25.7617,-80.1918,sausage,dog,No,no preference,Maybe,Bank Account - 21 Savage
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53703,-23.5505,-46.6333,Other,cat,Yes,night owl,Yes,"Violent Crimes - Kanye West
ps: Not a fan at all of him as a person, but huge fan of his work."
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,Computer Science,53706,50,21,sausage,cat,Yes,night owl,Maybe,Symphony No. 9 by Ludwig van Beethoven
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,42.7261,-87.7895,pepperoni,dog,No,no preference,Yes,Margaritaville by Jimmy Buffett
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Biomedical,,,53706,26.1242,-80.1436,basil/spinach,cat,No,no preference,Yes,"Wash it all away, Five Finger Death Punch"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Data Science,,,53703,42.1281,-88.0937,pineapple,dog,No,night owl,Yes,Thunderstruck AC/DC
COMP SCI 319:LEC004,LEC004,23,Other (please provide details below).,Economics,No,53703,30.5728,104.0668,pineapple,cat,No,early bird,Yes,蓝雨 -- Jacky Cheung
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53711,31.5879,120.2127,pineapple,neither,No,night owl,Maybe,"Samudrartha and Wildfire by HOYO-MiX
Watchtower of the East by Quadimension "
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Mechanical,,,53706,35.2401,24.8093,pepperoni,cat,Yes,night owl,No,The Seventh Sense by NCT U
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,21,Engineering: Biomedical,,,53703,43.0128,-88.2351,sausage,dog,No,night owl,Yes,Hannah Montana by the Migos
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Business: Finance,,,53703,41.3874,2.1686,pepperoni,dog,Yes,night owl,Yes,Your love - Sosa UK
COMP SCI 319:LEC001,LEC001,29,Science: Physics,,,53715,40.7128,-74.006,sausage,dog,Yes,no preference,Yes,"Beat it, Michael Jackson"
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Engineering: Other,,,53706,43.6532,-79.3832,pepperoni,dog,No,night owl,Maybe,Killer Queen - Queen
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,Computer Science,53706,41.8781,87.6298,pineapple,dog,No,night owl,No,Shampoo Bottles - Peach Pit
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,21,Mathematics/AMEP,,,53706,30.5928,114.305,none (just cheese),cat,No,night owl,Yes,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,Communication Arts,53706,52.7107,-8.879,Other,dog,No,night owl,Yes,Boomerang by Summer Set
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Atmospheric and Oceanic Science,,53703,64,21,green pepper,dog,No,no preference,No,
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Statistics,,Still deciding between math or data science,53703,,,pepperoni,cat,No,no preference,No,Mandy by Barry Manilow
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economics,,53726,22.5431,114.0579,mushroom,dog,No,early bird,Maybe,Forever Young; Blackpink
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC002,20,Engineering: Mechanical,,,53706,41.8781,87.6298,pineapple,dog,Yes,early bird,Maybe,"""Peg"" - Steely Dan
"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,Data Science ,Economics,53703,12.9,77.5,sausage,neither,Yes,night owl,Maybe,Metallica - Enter Sandman
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Engineering: Industrial,,,73506,8.538,-80.7821,none (just cheese),dog,No,no preference,Maybe,"Como has estau? -Mora
Quevedo - Quevedo
Yankee- quevedo"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Engineering: Industrial,,Data Science,53719,55.7558,37.6173,pineapple,cat,No,night owl,Yes,Cate's Brother by Maisie Peters
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53715,47.9031,-91.8565,pineapple,cat,Yes,night owl,Yes,Kiss Me - Sixpence None The Richer
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Mechanical,Mechanical Engineering,,53706,19.076,72.8777,none (just cheese),dog,No,no preference,Maybe,This Side of Paradise - Coyote Theory
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,21,Business: Other,Econ,,53703,41,-73.6,Other,dog,Yes,night owl,Yes,Sunflower seeds by bryce vine
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,25,Other (please provide details below).,Economics,,53703,35,129,Other,dog,No,night owl,Maybe,Not today - bts
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Business: Actuarial,,Math,53703,22.5431,114.0579,sausage,dog,No,night owl,Maybe,"All We Know
The Chainsmokers"
COMP SCI 319:LEC001,LEC001,26,Business: Other,MBA specializing in tech strategy and product management ,,53558,41.0082,28.9784,basil/spinach,cat,No,night owl,Yes,"Tears in the Rain, The Weeknd "
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Mathematics/AMEP,,,53703,40.6541,109.8201,sausage,cat,No,night owl,Yes,Yellow - Coldplay
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,,53706,35.0568,118.3406,Other,cat,No,night owl,Yes,"Common Jasmin Orange by Jay Chou
it's a Chinese song, so you probably can't understand the lyrics"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Biomedical,,,53703,46.7828,-92.1055,sausage,cat,Yes,night owl,Yes,I'm Just Ken by Ryan Gosling
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Business: Finance,N/A,Comp Sci ,53703,43.0731,-89.4012,pineapple,dog,Yes,no preference,No,Don't go breaking my heart - Elton John
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Industrial,,,53719,43.0731,-89.4012,pepperoni,cat,Yes,night owl,Yes,Pride by Kendrick Lamar
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53715,31.2304,121.4737,green pepper,cat,No,night owl,Yes,Talking to the Moon--Bruno Mars
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,23,Other (please provide details below).,consumer science,i don't have,53703,31.2304,121.4737,mushroom,neither,Yes,early bird,Yes,hero Mariah Carey
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Business: Other,,,53706,13.7563,100.5018,pepperoni,dog,No,night owl,Maybe,Die for you by the Weeknd
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,,Engineering: Biomedical,,,53706,37.5665,126.978,pepperoni,cat,Yes,night owl,Yes,You give love a bad name - Bon Jovi
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,21,Business: Finance,,RMI,53703,48.8566,2.3522,pepperoni,cat,No,no preference,Yes,Get out off town - Anita O'day
COMP SCI 319:LEC002,LEC002,,Science: Other,,,53703,49,-123,pepperoni,neither,No,night owl,Yes,Whatever :)
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Computer Science,,,537061127,36.1627,-86.7816,sausage,dog,No,no preference,Yes,Runnin' With the Devil - EVH
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Other (please provide details below).,Economics,Math,53703,43.0969,-89.5115,pepperoni,dog,No,early bird,Yes,Homemade - Jake Owen
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,,1000,48.8566,2.3522,pepperoni,neither,No,no preference,Maybe,"Imagine Dragons, Radioactive."
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Business: Other,,,53715,44.2134,-88.5018,pepperoni,dog,No,no preference,Yes,3005 - Childish Gambino
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Mechanical,,,53216,20.8854,-156.6653,pepperoni,neither,No,no preference,No,
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Business: Information Systems,,,53715,40.71,-74,pineapple,cat,No,night owl,Yes,Japanese Denim by Daniel Caesar
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53715,14.5995,120.9842,pepperoni,dog,Yes,night owl,No,Cherry Wine- Grent Perez
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Computer Science,,,53706,85.8398,10.2985,mushroom,dog,No,night owl,Maybe,"""Streems"" by The Symposium"
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Statistics,"I'm double majoring in mathematics and statistics; I hope to do research in some sort of applied probability theory after graduating (e.g. econometrics, mathematical biology, etc.)",n/a,53726,,,pepperoni,cat,Yes,early bird,No,"How Much a Dollar Cost, by Kendrick Lamar"
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,business,53715,27.4967,-82.6948,pepperoni,dog,No,early bird,No,Jimmy Cooks - Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Data Science,I am doing eco and plan to get a ds certificate,no,53703,39.9042,116.4074,Other,neither,No,early bird,No,''Capital''by Lo Ta-you
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Engineering: Mechanical,,,53726,41.8781,-87.6298,sausage,cat,Yes,night owl,Maybe,Shiva - Spillage Village & JID
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,35.9594,-83.9196,pepperoni,dog,Yes,early bird,No,Talkin' Tennessee by Morgan Wallen
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53706,44.5667,-92.5343,pepperoni,dog,No,night owl,Yes,street dreams by nas
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Business: Other,,,53703,37.7749,-122.4194,mushroom,dog,No,night owl,Yes,"Take it Easy - The Eagles
Otherside - Red Hot Chili Peppers"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Other (please provide details below).,Global Health,N/A,53706,42.3601,71.0589,basil/spinach,dog,Yes,night owl,Maybe,Somewhere Only We Know by Keane
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics,,53703,42.3314,-83.0458,sausage,dog,Yes,no preference,No,"Life Goes On - Lil Baby, Lil Uzi Vert, Gunna"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,"Biomechanics focus, Dance Certificate",53715,36.1627,-86.7816,pepperoni,dog,No,night owl,Maybe,"No specific songs but I love Elton John, Queen, Noah Kahan"
COMP SCI 319:LEC003,LEC003,22,Science: Biology/Life,,,53703,43.07,-89.38,mushroom,dog,No,early bird,No,Swimming Horses by Siouxsie and the Banshees
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,22,Statistics,,,53706,22.5431,114.0579,sausage,dog,Yes,no preference,Maybe,I Want My Tears Back--Nightwish
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Data Science,,Physics,53706,27.7172,85.3239,sausage,dog,Yes,early bird,No,Hall of fame
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,Economics,53706,48.8647,2.349,pepperoni,dog,Yes,night owl,Yes,Let It Happen - Tame Impala
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Business: Finance,,Data Science,53706,41.8781,-87.6298,basil/spinach,cat,No,night owl,Yes,LOYALTY FT. RIHANNA - KENDRICK LAMAR
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Other (please provide details below).,,,53706,41.9028,12.4964,Other,neither,No,no preference,Yes,Danza Kuduro - Don Omar
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Statistics,,,53706,47.3769,8.5417,mushroom,dog,No,no preference,Maybe,Blue Jay Way by the Beatles
COMP SCI 319:LEC002,LEC002,22,Business: Finance,,,53715,35,36,sausage,dog,No,early bird,Yes,TALLY BLACKPINK
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Mathematics/AMEP,,Data Sciene,53706,43.0707,-89.4142,sausage,dog,Yes,night owl,No,Build me up Buttercup- The foundations
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,23,Mathematics/AMEP,,,53703,34.34,108.93,mushroom,cat,Yes,early bird,Yes,The name is Super Gremlin. Artist is Kodak Black.
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Science: Other,,,537061127,3.139,101.6869,sausage,dog,Yes,no preference,Yes,Edge of Desire - John Mayer
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Data Science,,,53562,44.5004,-88.0613,pepperoni,dog,Yes,no preference,Maybe,
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Business: Finance,,,53703,41.8842,-87.6324,sausage,dog,No,early bird,Maybe,"Stayin Alive, Drake and DJ Khalid"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,56.4907,-4.2026,mushroom,dog,No,early bird,Maybe,Maroon by Taylor swift
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,was provided,German (maybe),53726,48.1351,11.582,pepperoni,dog,No,night owl,Yes,You Proof - Morgan Wallen
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,pepperoni,dog,No,night owl,Maybe,Springsteen - Eric Church
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,36.3932,25.4615,basil/spinach,dog,No,night owl,Yes,Mercy Now by Mary Gauthier
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC001,21,Business: Information Systems,,Data science ,53715,30.2667,-97.7333,pepperoni,dog,Yes,early bird,Yes,Hey driver Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC004,21,Business: Other,,,53703,41.3851,2.1734,pepperoni,dog,Yes,night owl,Yes,I remember by Zach Bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Mechanical,,,53715,44.0999,9.7382,pineapple,dog,No,no preference,No,Bury Me in Georgia by Kane Brown
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Business: Finance,Finance,,53726,35.6895,139.6917,sausage,cat,No,night owl,Yes,Mona Lisas and mad hatters by elton john
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53706,38,-77,Other,dog,No,night owl,Yes,dont stop believing
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53703,40.78,-73.97,none (just cheese),dog,No,night owl,Yes,"Replay by Iyaz
"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Computer Science,,,53715,43.0731,-89.4012,sausage,neither,No,no preference,Yes,Cream Soda - EXO
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC001,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,Yes,night owl,Yes,Beast of Burden - The Rolling Stones
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53715,40.7128,-74.006,pepperoni,cat,Yes,early bird,Maybe,Upside down- Jack Johnson
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Statistics,,computer science ,53706,40.7128,-74.006,pineapple,dog,Yes,early bird,No,The greatest show man
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Industrial,,,53715,41.8781,87.6298,sausage,cat,Yes,night owl,Yes,Ghost Town-Kanye West
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,sausage,dog,No,night owl,Maybe,Money by Pink Floyd
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,,Business: Information Systems,,,53703,36.107,-112.113,pepperoni,cat,Yes,night owl,Maybe,"Blinding lights, the weeknd"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Engineering: Mechanical,,,53703,44.9591,-89.6343,green pepper,dog,Yes,night owl,Yes,any wheeler walker junior song
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Engineering: Industrial,"
",,53711,43.0731,89.4012,pepperoni,cat,Yes,early bird,No,I will wait by mumford and sons
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,finance,53706,41.8781,87.6298,sausage,dog,No,night owl,Yes,"La Cancion, Bad Bunny and J Balvin"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,My primary major is Economics ,Informations Systems,53703,33.8812,-118.4072,sausage,dog,No,night owl,Yes,Lakeshore Drive Aloitta Haynes Jeramiah
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Other (please provide details below).,Economics,,53703,41.88,-87.63,mushroom,cat,Yes,night owl,Yes,"Everything She Aint, Hailey Whitters"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,23,Other (please provide details below).,Econ,no,53703,43.0731,-89.4012,mushroom,dog,No,night owl,Maybe,In the night gardeen
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Computer Science,,math,53715,,,mushroom,dog,No,night owl,Maybe,bones
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Mathematics/AMEP,\,"Economics major, Data Science certificate",53703,39.8954,116.3946,none (just cheese),cat,Yes,no preference,Maybe,no preference
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Engineering: Biomedical,,,53715,48.8566,2.3522,sausage,neither,No,night owl,Yes,ETA - New Jeans
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,economics ,"Data science
",53703,33.6188,-117.8566,pepperoni,dog,No,night owl,Maybe,"Heartache on the dance floor - jon pardi
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53703,39.9042,116.4074,mushroom,dog,No,night owl,Yes,Gone-Nelly/Kelly
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Data Science,,Statistics,53715,35.414,-79.0933,Other,dog,Yes,night owl,Yes,Revival - Zach bryan
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,21,Engineering: Other,Material Science and Engineering,.,53703,51.2094,3.2252,pineapple,dog,No,early bird,No,Aria Math
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Computer Science,,,53703,40.95,-73.73,none (just cheese),neither,Yes,early bird,Maybe,Closer - Chainsmokers
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,12.9716,77.5946,none (just cheese),dog,Yes,night owl,Yes,Any Coldplay song works!
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Data Science,,Economics,53066,43.1144,-88.5072,pepperoni,dog,No,night owl,Maybe,God tier-Baby Tron
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53073,52.3702,4.8952,pepperoni,dog,No,night owl,Yes,Vienna: Billy Joel
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,24,Other (please provide details below).,Neurobiology,Psychology,53703,60.3913,5.3221,Other,dog,Yes,early bird,Yes,"Title: Ôba, Lá Vem Ela
Artist: Jorge Ben"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Data Science,,,53703,43.0731,-89.4012,mushroom,neither,No,early bird,No,"《To have,or not to have》
Lin Sheng Hsiang"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53706,42.64,-71.1291,pepperoni,dog,No,early bird,Yes,505 - arctic monkeys
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Computer Science,,,53715,41.8781,-87.6298,mushroom,dog,Yes,night owl,Yes,Sicko Mode by Travis Scott and Drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Computer Science,,,53706,25.033,121.5654,mushroom,neither,Yes,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Business: Other,marketing,economics,53706,40,116,pineapple,dog,No,night owl,Yes,Save Your Tears (Remix)--Ariana Grande& The Weekend
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Computer Science,,Biochemistry,53706,10.8231,106.6297,none (just cheese),dog,Yes,early bird,Maybe,"""Dress""
Taylor Swift"
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,17,Data Science,,Economics,53706,31.2304,121.4737,pepperoni,dog,No,night owl,Maybe,Shed a light
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,21,Data Science,Econ,,53703,34.6937,135.5022,pineapple,dog,No,night owl,Maybe,Moon by Kanye west
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Computer Science,N/A,Certificate - Data Science,53703,-33.9235,151.1399,Other,dog,Yes,night owl,Yes,5SOS - Teeth
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Computer Science,,,53726,39.9042,116.4074,sausage,cat,No,night owl,Maybe,Planet of the bass
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,23,Business: Finance,,Data Science Certificate (reason I am taking the course),53705,39.6403,-106.3709,pineapple,cat,Yes,no preference,Yes,"professional Griefers; Deadmau5, Gerard Way"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Business: Information Systems,,International Business,53703,38.6992,-75.0968,basil/spinach,dog,Yes,early bird,No,"Revival, Zach Bryan
"
COMP SCI 319:LEC002,LEC002,27,Science: Other,Information Science,,53705,44.0164,-92.4754,sausage,dog,Yes,night owl,Yes,Enchanted - Taylor Swift
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53703,28,81,pepperoni,dog,No,night owl,Yes,More than my hometown by Morgan Wallen
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Business: Other,Business Admin,,53706,36.7194,-4.42,Other,dog,Yes,night owl,Yes,cigarette daydreams - cage the elephant
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,39.0655,85.2563,pepperoni,neither,Yes,night owl,Maybe,n/a
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Data Science,Economics,,53703,31.2304,121.4737,mushroom,cat,Yes,no preference,No,Summertime Sadness---Lana Del Rey
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Data Science,,,53706,35.6895,139.6917,basil/spinach,dog,No,night owl,Maybe,Slow Dancing from V
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Other,Materials Science and Engineering,,53711,45.9013,-89.8459,Other,cat,No,night owl,Yes,Rio by Duran Duran
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Actuarial,,,53703,35.6895,139.6917,pepperoni,dog,Yes,no preference,Maybe,"dancing in the dark by Bruce Springsteen
"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Engineering: Other,My major is Chemistry but I intend to switch to Material Science and Engineering,,53711,48.8647,2.349,macaroni/pasta,cat,No,no preference,Maybe,Anything Taylor Swift
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53703,41.8781,87.6298,basil/spinach,dog,Yes,early bird,Maybe,Landslide Fleetwood Mac
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Computer Science,,Data Science,53715,33.9835,-118.248,pepperoni,cat,No,early bird,Yes,Khai Dreams - Sunkissed
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53715,47.61,122.33,pepperoni,cat,Yes,night owl,Yes,"Maroon, Taylor Swift"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53703,38.9333,-77.0711,pepperoni,dog,No,early bird,No,Smaller acts- Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Data Science,,,53701,45.1433,-89.1518,pepperoni,dog,Yes,early bird,Yes,When I'm gone - Dirty Honey
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Data Science,,Psychology,53711,37.9838,23.7275,green pepper,neither,No,night owl,Yes,Telepatia by Kali Uchis
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,N/A,N/A,53706,43.0737,-89.4026,pepperoni,dog,No,night owl,No,Trustfall by P!nk (Pink)
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Engineering: Mechanical,,,53715,42.35,-71.06,mushroom,cat,No,night owl,Yes,Upside Down - Jack Johnson
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Computer Science,,"Computer Science, Mathematics",53706,34.6937,135.5022,mushroom,dog,Yes,early bird,Yes,Taylor Swift
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,22,Engineering: Other,,,53703,41.8781,-87.6298,pineapple,dog,No,early bird,No,Semi-Charmed Life - Third Eye Blind
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,47.6062,-122.3321,pepperoni,dog,No,early bird,Yes,Ultralight Beam- Kanye West
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Economics,Data Science,53703,31.2304,121.4737,pepperoni,dog,Yes,night owl,Yes,Excuses-- Jay Zhou
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Economics with a Mathematical Emphasis,,53703,37.7749,-122.4194,pepperoni,dog,Yes,night owl,No,Cigarette Daydreams by Cage the Elephant
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Psychology,Data Science,53719,30.5928,114.3052,pepperoni,cat,Yes,no preference,Yes,Marunouchi Sadistic
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,,Business: Information Systems,,Data Science,53715,41.8781,-87.6298,sausage,dog,No,early bird,Yes,Staying Over by Sam Grow
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Computer Science,,,53706,37.3387,121.8853,basil/spinach,dog,Yes,night owl,Maybe,All Too Well-Taylor Swift
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,,Engineering: Industrial,,,53705,47.6,-122.3,green pepper,neither,No,night owl,Maybe,Good Time (Owl City)
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Business: Other,,Data Science,57306,-33.8688,151.2093,sausage,cat,Yes,no preference,No,Time by Pink Floyd
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Business: Information Systems,,Risk Management & Insurance,53703,43.0739,-89.3852,none (just cheese),dog,Yes,night owl,Yes,Heading South by Zack Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Biomedical,//,//,53715,45.7088,-121.5252,Other,dog,Yes,early bird,No,Honeybee - the Head and the Heart
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,20,Mathematics/AMEP,,,53726,44.1495,9.6547,pepperoni,dog,Yes,early bird,No,"John Mayor - Wild Blue
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,23,Engineering: Industrial,,,53715,37.5665,126.978,pepperoni,cat,Yes,night owl,Yes,"Burning Heart, Survivor"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Computer Science,"
",Certificate in Data Science,53715,39.483,-106.0463,macaroni/pasta,dog,Yes,night owl,Yes,505 by the Arctic Monkeys
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53703,5.4164,100.3327,none (just cheese),dog,Yes,no preference,Yes,Melancholy Hill - Gorillaz
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Statistics,,,53706,55.6672,12.5512,green pepper,dog,Yes,no preference,Maybe,Pink + White by Frank Ocean
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,23,Business: Finance,ECONOMICS ,FINANCE,53703,-45.0312,168.6626,pineapple,dog,Yes,early bird,No,Kiss Me Through The Phone - Souja Boy
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,economy,no,53703,39,116,sausage,neither,Yes,no preference,Maybe,the nights Avicii
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Science: Other,Political Science,,53715,45.0813,-93.135,pepperoni,dog,No,night owl,Yes,No Surprises: Radiohead
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Other (please provide details below).,Economics ,Maybe data science,53715,19.076,72.8777,basil/spinach,dog,No,night owl,Yes,none at the moment
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Mathematics/AMEP,N/A,N/A,53703,38.914,121.6147,macaroni/pasta,cat,No,night owl,Yes,You(=I) by BOL4
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,29.9511,-90.0715,pineapple,dog,Yes,night owl,Yes,Margaritaville - Jimmy Buffett
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,20,Data Science,,,53715,60.1699,24.9384,pepperoni,dog,No,early bird,Yes,Poison - Alice Cooper
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,Economics,53703,22.5431,114.0579,basil/spinach,dog,Yes,early bird,No,Palm Springs-Virginia To Vegas
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,21,Engineering: Other,Materials Science and Engineering,,53703,32.7157,-117.1611,green pepper,dog,No,night owl,No,The Fragrance of Dark Coffee by Noriyuki Iwadare
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Other (please provide details below).,Math,"Econ, CS",53703,39.9042,116.4074,mushroom,dog,No,early bird,Maybe,"Qing tian, Jay Chou"
COMP SCI 319:LEC003,LEC003,24,Engineering: Other,,,53711,32.4,119.4301,mushroom,cat,Yes,early bird,No,Just the two of us——Jose James
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Poli Sci & History,"Business, Development Economics, Data Science, Public Policy",53715,40.1728,74.006,Other,dog,No,night owl,Maybe,"""The Adults Are Talking"" by The Strokes"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,28.3731,-81.5569,none (just cheese),cat,No,no preference,Maybe,The Story of Us by Taylor Swift
COMP SCI 319:LEC003,LEC003,24,Other (please provide details below).,Economics,,53703,38.914,121.6147,tater tots,dog,No,no preference,No,Butter—Fly by わだ こうじ
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Science: Physics,,,53706,52.3676,4.9014,pineapple,cat,No,night owl,Yes,"Orion - Metallica, first section is decent but the entire middle section is the most beautiful piece of music to me and has always been my favorite song ever."
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,39.4821,-106.0487,none (just cheese),cat,No,night owl,Yes,ivy by taylor swift
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,35.6895,139.6917,pepperoni,cat,Yes,night owl,Yes,"Title: The Less I Know the Better
Artist: Tame Impala"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53711,43.7696,11.2558,sausage,dog,No,night owl,Yes,Break My Stride Mattew Wilder
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Other (please provide details below).,Biochemistry,Data Science,53715,34.0522,-118.2437,macaroni/pasta,dog,No,night owl,Yes,Nonsense - Sabrina Carpenter
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Other,,,53706,35.6528,139.8395,pineapple,cat,Yes,night owl,Yes,"Fly me to the moon --- Frank Sinatra
Night Dancer --- imase"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,39.4784,-106.0443,pepperoni,cat,No,night owl,Yes,Style by Taylor Swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53703,42.3601,-71.0589,pineapple,dog,No,night owl,Yes,Do Not Disturb -Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,n/a,n/a,53715,25.7617,-80.1918,pineapple,cat,Yes,night owl,Yes,Chicken Tendies by Clinton Kane
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,,53715,43.0731,-89.4012,sausage,cat,Yes,early bird,Maybe,Mayonaise by The Smashing Pumpkins
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Engineering: Mechanical,,,53706,41.3851,2.1734,mushroom,dog,No,early bird,Yes,Hysteria - Muse
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,,Other (please provide details below).,not declare yet,,53711,37.5665,126.978,mushroom,dog,No,no preference,Maybe,blackpink - pink venom
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Computer Science,,Data Science certificate,53703,44.5012,-88.0611,pepperoni,cat,No,night owl,Maybe,All That by Mac Miller
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53711,51.5074,-0.1278,mushroom,dog,Yes,no preference,Maybe,"""Always There"" -Greta Van Fleet"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,,Computer Science,,,53715,49,50,pepperoni,dog,No,night owl,Maybe,Chandelier - DJ Khaled
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,22,Business: Other,,"consumer behavior & marketpace studies, economics",53703,18.2528,109.5119,mushroom,dog,No,no preference,Yes,"Angel, Mosiah"
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,44.0134,-69.3102,Other,cat,Yes,no preference,No,September by Earth Wind and Fire
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Biomedical,,,53706,41.8781,-87.6298,mushroom,dog,No,early bird,Maybe,no option post malone
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Business: Finance,,Information Systems,53703,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Wat's Wrong by Isaiah Rashad
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,"Double major: Finance, Investment, and Banking / Information Systems",,53715,43.6123,-110.7054,pepperoni,dog,No,night owl,Yes,"Looking out for you, Joy Again"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Other (please provide details below).,Economics,Data Science minor,53703,33.8847,-118.4072,pineapple,dog,Yes,no preference,Yes,Boss DJ by Sublime
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.9526,-75.1652,mushroom,dog,No,no preference,Maybe,Everybody Wants to Rule the World- Tears for Fears
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,21,Science: Biology/Life,,,53703,30.5728,104.0668,mushroom,cat,Yes,early bird,Yes,"Until I Found You
Stephen Sanchez"
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Other (please provide details below).,econ,data science,53703,0,45,pineapple,dog,No,no preference,No,fire on fire Sam Smith
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Biomedical,,Data science,53706,43.168,-89.284,basil/spinach,dog,No,night owl,Yes,505 by the artic monkeys
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Other (please provide details below).,Textiles and Fashion Design ,,53703,48.6997,-122.8756,basil/spinach,dog,Yes,night owl,Yes,32 Flavors by Alana Davis
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Science: Biology/Life,,,53706,42.9005,-88.0291,pineapple,dog,No,night owl,Maybe,Regular (English Version)- NCT 127
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Other (please provide details below).,Economics,Spanish,53715,36.1699,-115.1398,mushroom,dog,No,night owl,Yes,
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,I am an undecided freshman major right now. I am thinking about applying to the industrial engineering major or majoring in psychology and legal studies because I have an interest in going to law school. ,,53706,25.7033,-80.2828,none (just cheese),dog,Yes,night owl,Maybe,Lay All Your Love On Me by ABBA
COMP SCI 319:LEC003,LEC003,24,Other (please provide details below).,Economics,,53703,40,116,sausage,cat,No,night owl,No,"Play Date
Martinez"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Information Science. Possibly data science certificate.,,53703,48.8566,2.3522,macaroni/pasta,dog,No,night owl,Maybe,Dandelions by Ruth B.
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Computer Science,,,53715,42.1024,-88.0585,pineapple,dog,Yes,night owl,Yes,The Scientist by Coldplay
COMP SCI 319:LEC004,LEC004,23,Other (please provide details below).,Economics,,53704,39.904,116.407,pineapple,neither,Yes,early bird,Yes,Every song by Jay Chou. A Chinese singer.
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Data Science,,economics,57306,24.4798,118.0894,pepperoni,neither,No,night owl,No,The Hills by The weekend
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Business: Finance,,,53703,43.076,89.3929,pepperoni,dog,Yes,no preference,Yes,"Jake's Piano - Long Island
Zach Bryan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,Nuclear Engineering,,53703,40.7128,-74.006,Other,dog,Yes,night owl,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,,Engineering: Mechanical,,,53703,33.493,-111.9258,pepperoni,dog,No,night owl,Yes,Teguila Shots- Kid Cudi
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Mathematics/AMEP,,,53703,53.3498,-6.2603,none (just cheese),dog,No,early bird,Yes,You Can't Make Old Friend by Kenny Rogers ft. Dolly Parton
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53703,40.71,-74,none (just cheese),dog,Yes,night owl,Yes,Anything Harry Styles
COMP SCI 319:LEC004,LEC004,22,Business: Information Systems,,,53703,36.0671,120.3826,pineapple,dog,No,night owl,Maybe,lonely dance
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Mechanical,,,53715,44.9212,-93.4688,pepperoni,dog,No,night owl,Yes,Snow (Hey Oh) by Red Hot Chili Peppers
COMP SCI 319:LEC001,LEC001,23,Computer Science,,,53703,23.1291,113.2644,tater tots,neither,Yes,early bird,Maybe,《lost stars》- Adam Levine
COMP SCI 319:LEC003,LEC003,22,Other (please provide details below).,Geography - Geographic Information Science and Cartography,N/A,53715,45.5017,-73.5673,mushroom,dog,No,night owl,Yes,Afterglow - Ed Sheeran
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Other (please provide details below).,Computer Science,Data Science,53706,35.6895,139.6917,sausage,dog,No,night owl,Yes,"Lost in Paradise , Miura Jam"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53715,30.1766,-85.8055,pepperoni,dog,No,early bird,No,"Billie Jean-Micheal Jackson
or
Cum on Feel the Noize-Quiet Riot"
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,39.1898,106.8183,pepperoni,dog,No,night owl,Yes,Peach — Sammy Virji
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,22,Computer Science,,,53703,17.4203,78.4029,mushroom,dog,Yes,no preference,Maybe,Popular (feat. Playboi Carti) by The Weeknd & Madonna
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Data Science,,Computer Science,53705,37.45,-122.2,pineapple,cat,No,early bird,Maybe,Natural - What If
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,Yes,night owl,Yes,All Falls Down by Kanye West
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,Other,dog,Yes,early bird,No,Fishing in the Dark - Nitty Gritty Dirt Band
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Other (please provide details below).,Economics,,53703,22.5431,114.0579,pepperoni,dog,Yes,night owl,No,snowman-sia
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Data Science,,,53706,28.5383,-81.3792,sausage,dog,No,early bird,No,Come On Eileen by Dexys Midnight Runners
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,39,Data Science,xxx,Biomedical Data Science,53713,47.3006,-88.0459,pepperoni,cat,Yes,no preference,Yes,"Our Song, Joe Henry"
COMP SCI 319:LEC001,LEC001,23,Science: Other,information science,,53718,40.4259,-86.9081,pepperoni,dog,No,no preference,Yes,Young and Beautiful by Lana Del Rey
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Computer Science,,,53703,39.3597,111.5863,pepperoni,dog,No,night owl,Yes,Baby I'm bleeding - Jpeg Mafia
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Engineering: Biomedical,,,57303,41.8,-72,sausage,dog,No,early bird,No,Money - The Drums
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC001,20,Data Science,,Math Econ,53711,48.1376,11.5799,pepperoni,cat,No,no preference,Maybe,FE!N by Travis Scott
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,Spanish,53706,44.7666,-85.5946,none (just cheese),dog,Yes,no preference,No,Single ladies - Beyoncé
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53718,40.7584,-73.9843,none (just cheese),dog,Yes,early bird,Maybe,"Spectrum - Florence + The Machine, Calvin Harris"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Computer Science,,,53706,22.3072,73.1812,none (just cheese),neither,Yes,no preference,Maybe,I have no such preference for songs.
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Computer Science,I am a computer science major.,Not Mandatory,53706,25.2048,55.2708,pepperoni,dog,Yes,early bird,No,Titi me pregunto by bad bunny.
COMP SCI 319:LEC004,LEC004,24,Other (please provide details below).,Econometrics,,53711,24.8801,102.8329,pineapple,cat,No,night owl,Yes,Resting Ground by Christopher Larkin
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,economics,data science,53703,5.4203,100.3119,none (just cheese),cat,No,no preference,Maybe,You give love a bad name bon jovi
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,,Business: Finance,,,53703,52.3702,4.8952,pepperoni,dog,No,night owl,Yes,Radio Ga Ga by Queen.
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Science: Biology/Life,,,53706,-8.6399,115.1402,Other,dog,No,night owl,Yes,Rise
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Data Science,,,53706,,,pepperoni,dog,No,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Biomedical,,Spanish,53715,44.8504,93.7876,pineapple,dog,Yes,night owl,Yes,Nonstop by Drake
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53711,-33.9249,18.4241,pineapple,dog,Yes,early bird,Yes,Violent Crimes - Kanye West
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Data Science,,Information Systems,53175,28.5383,-81.3792,sausage,dog,No,early bird,No,Come On Eileen by Dexys Midnight Runners
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Mathematics/AMEP,,Psychology,53715,38.9072,-77.0369,pineapple,dog,No,early bird,Yes,Love Story - Taylor Swift
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Engineering: Industrial,N/A,N/A,53711,42.6507,18.0944,pepperoni,dog,Yes,no preference,Yes,Holanda - Jhayco
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53715,40.7128,-74.006,pepperoni,neither,Yes,night owl,Yes,《花海》from 周杰伦;Floral Sea by Jay Chou
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,22,Other (please provide details below).,Mechanical Engineering,Physics,53711,39.7392,-104.9903,pineapple,dog,No,night owl,Yes,"""The Weight of Dreams"" by Greta Van Fleet (modern day copy-cat of Led Zeppelin)"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Mechanical,,,53715,49.7938,-93.1955,mushroom,dog,Yes,night owl,Yes,Hurt Feelings by Mac Miller
COMP SCI 319:LEC002,LEC002,23,Science: Other,master of science information (data analyst),none,53703,44.0521,-123.0868,sausage,cat,No,night owl,Yes,beside you - keshi
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,21,Statistics,,,53703,44.51,88.01,basil/spinach,cat,No,night owl,Yes,Dunno - mac miller
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,23,Computer Science,,Economics,53715,55.6761,12.5683,sausage,dog,Yes,no preference,Yes,Uden dig - ukendt kunster
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Cellular and Molecular Biology,Japanese,53703,35.3032,139.5657,basil/spinach,dog,No,night owl,Yes,Memories by Maroon 5
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Computer Science,,,53706,37.5326,127.0246,sausage,cat,Yes,no preference,Yes,"Title: Some might say (Oasis)
"
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Finance,Finance ,Marketing,53715,64.9631,-19.0208,sausage,dog,No,night owl,Yes,Jump Around by House of Pain
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,Undecided,,53715,41.8781,-87.6298,basil/spinach,dog,No,early bird,Yes,New Beat by Toro y moi
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Economics,,53818,43,0,sausage,neither,No,night owl,Maybe,None
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,39.9526,-75.1652,pepperoni,dog,No,night owl,Yes,All the Stars by Kendrick Lamar and SZA
COMP SCI 319:LEC004,LEC004,22,Computer Science,,,53715,22.5431,114.0579,sausage,cat,No,night owl,Yes,cruel summer!!! Taylor swift!!!
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Accounting,Finance,53715,41.8781,-87.6298,sausage,dog,Yes,night owl,Yes,Change- Bailey Zimmerman
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Political Science,,53703,41.8781,-87.6298,Other,cat,Yes,early bird,Maybe,"Nashville, TN by Chris Stapleton"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Computer Science,,,53715,22.5886,88.4043,Other,dog,No,no preference,Yes,Elevated - Shubh
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC004,20,Data Science,,,53703,35.9078,127.7669,pepperoni,dog,Yes,early bird,Yes,One Call Away - Charlie Puth
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53703,49.2827,-123.1207,pineapple,cat,No,no preference,Yes,"before he cheats
by carrie underwoods"
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Engineering: Biomedical,,,53706,35.6895,139.6917,basil/spinach,dog,Yes,no preference,Yes,Wind Blows - Dreamcatcher
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Mechanical,n/a,n/a,53706,43.0517,-89.3427,macaroni/pasta,dog,Yes,no preference,Yes,"title: wonderwall
artist: Oasis "
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Data Science,,,53716,44.5133,-88.0133,green pepper,dog,No,night owl,Yes,Mr. Rager by Kid Audi
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Business: Finance,,"Mathamatics for finance, Economics",53703,24.4798,118.0894,Other,cat,Yes,no preference,Maybe,Not good enough for you-Jay Chou
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Business: Other,Marketing,,53715,43.0389,-87.9065,none (just cheese),cat,Yes,no preference,Maybe,I guess that's why they call it the blues - Elton John
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Data Science,I plan to major in Data science.,no second major,53711,33.6225,113.3418,basil/spinach,dog,No,night owl,Maybe,That Girl by Olly Murs
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,23,Other (please provide details below).,Economics,Political Science,53703,43.0731,-89.4012,pepperoni,cat,Yes,night owl,No,500 Miles
COMP SCI 319:LEC001,LEC001,30,Engineering: Other,,,53705,-34.4909,-58.4892,pepperoni,dog,Yes,early bird,Maybe,Sweet Child O' Mine - Guns N' Roses
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economic,,53705,31.2304,121.4737,none (just cheese),cat,No,early bird,Yes,Closer by the chainsmokers
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Business: Information Systems,,,53706,33.4484,-112.074,none (just cheese),dog,No,no preference,Yes,runaway by Kanye West
COMP SCI 319:LEC002,LEC002,25,Engineering: Other,,,53705,37.1765,-3.5979,basil/spinach,cat,No,night owl,Maybe,Time of Our life - DAY6
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,21,Science: Biology/Life,,French,53703,44.9019,-93.3388,basil/spinach,dog,Yes,no preference,Yes,Brazil- Declan McKenna
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Data Science,,Economics,53715,43.7696,11.2558,none (just cheese),cat,Yes,night owl,Yes,November Rain Guns N' Roses
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Finance,Econ with data science certificate ,53703,41.3851,2.1734,pepperoni,dog,No,no preference,No,(It goes like) nanana by Peggy Gou
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,38.7223,-9.1393,basil/spinach,dog,Yes,no preference,No,Nice For What by Drake
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Information Systems,,"Supply chain, operation technology managment ",53703,12.4964,41.9028,pineapple,dog,No,night owl,Yes,My favorite song is probably dancing queen by ABBA
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Mechanical,,,53706,47.6775,11.2041,basil/spinach,dog,No,no preference,Yes,Uptown Girl by Billy Joel
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Data Science,,,53703,31.8433,117.2457,Other,dog,No,night owl,Yes,"Title: [Mrs. Shexiang] (https://www.last.fm/music/Phoenix+Legend/_/Mrs.+Shexiang)
Artist: Phoenix Legend"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Data Science,,,53706,55.68,12.58,pepperoni,cat,No,night owl,Maybe,Love Lost - Mac Miller
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,economics BA,,53711,35.6895,139.6917,mushroom,dog,No,no preference,Yes,My favorite song is Favorite Song.
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,18,Computer Science,,,53706,45.4642,9.19,pepperoni,cat,No,night owl,Maybe,"****************************
The Weeknd - Save Your Tears
****************************"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,31.8089,120.6153,Other,cat,No,no preference,Yes,Blood Type-Viktor Tsoi
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Engineering: Biomedical,,,53703,40.4855,-106.8336,pepperoni,dog,Yes,early bird,Maybe,When it Rains it Pours by Luke Combs
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Business: Finance,,Real Estate,94024,40.7128,-74.006,sausage,dog,Yes,night owl,Maybe,
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Finance,N/A,N/A,53703,1.2,4.2,pepperoni,dog,No,no preference,Maybe,I'm gonna be (500miles) by the proclaimers
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,,Engineering: Mechanical,,,53703,39.6456,-77.4205,pepperoni,dog,No,no preference,Yes,Jimmy Cooks by Drake
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Business: Finance,N/A,Data science,53706,13.8079,108.1094,basil/spinach,dog,No,early bird,Maybe,"Truoc khi em ton tai - Thang
Mirror ball - Taylor Swift"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Other,Environmental Science,,53715,41.8781,-87.6298,green pepper,dog,Yes,night owl,Yes,Black Swan by BTS
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,19,Mathematics/AMEP,,,53715,44.79,-89.7,pepperoni,dog,No,no preference,No,I don't have a favorite
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Data Science,Information and data science,,53703,43.0389,-87.9065,pepperoni,dog,No,night owl,Maybe,mayonaise smashing pumpkins
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,My primary major is Economics.,My secondary major is Psychology. I have declared a certificate in data science.,53703,35.6895,139.6917,pepperoni,neither,No,no preference,Maybe,"Hype boy - New Jeans
Paris in the rain - Lauv
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,21,Data Science,,,53703,32.8328,-117.2713,Other,dog,Yes,night owl,Maybe,The Pale Moonlight - Kid Cudi
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,information science ,data science,53706,41.3851,2.1734,green pepper,dog,Yes,night owl,Yes,Jungle - Drake
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,22,Science: Biology/Life,,,53715,47.0502,8.3093,macaroni/pasta,dog,No,night owl,Yes,Under Pressure by Queen and David Bowie
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Industrial,,,53703,18.0231,-63.0482,Other,cat,No,no preference,No,Could you be loved - Bob Marley
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Information Science,,53703,49.2827,-123.1207,pepperoni,dog,No,night owl,Yes,tell me what you want - dacelynn
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Statistics,I selected Statistics above.,I am considering double majoring in data science.,53703,60.1699,24.9384,pepperoni,dog,Yes,early bird,Yes,Mrs. Hollywood - Go-Jo
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,I am undecided but planning on potentially majoring in Data Science or at least getting a certificate. ,"I am also potentially majoring in International Studies, but am currently undecided.",53706,37.7749,-122.4194,basil/spinach,dog,Yes,night owl,Maybe,"""The Air That I Breathe"" The Hollies "
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,N/A,N/A,53706,43.0389,-87.9065,pepperoni,dog,Yes,early bird,Yes,Jungle by Andre Nickatina. Its Christian Yelich's walk up song.
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Business: Finance,,Psychology,53715,51.5074,-0.1278,basil/spinach,cat,No,night owl,Yes,Daydreaming by Harry Styles
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,Mech E,,53715,41.1579,-8.6291,basil/spinach,dog,No,night owl,Yes,Zach Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Data Science,,,53706,19.64,-156,pepperoni,dog,Yes,night owl,Yes,From Time by Drake
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Actuarial,,Data Science,53706,43.485,-89.754,mushroom,neither,No,night owl,Yes,"New Romantics, Taylor Swift"
COMP SCI 319:LEC001,LEC001,22,Other (please provide details below).,Information Science,No,53703,31.23,121.47,mushroom,dog,No,night owl,Maybe,"Artist: BLACKPINK, Title: Shut Down"
COMP SCI 319:LEC001,LEC001,22,Other (please provide details below).,Information science,,53703,31.23,121.47,mushroom,dog,No,night owl,Yes,"Song: Shut Down, Artist: Black Pink"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Engineering: Mechanical,,,53706,47.6062,-122.3321,pineapple,dog,Yes,early bird,No,Flashing Light by Kanye West
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53714,45.8713,-89.7116,pepperoni,cat,Yes,night owl,Yes,Africa by Toto
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Science: Physics,,,53726,60.39,5.32,mushroom,dog,Yes,night owl,Yes,Heat Above by Greta Van Fleet
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,21,Other (please provide details below).,Genetics and Genomics,,53703,36.7234,25.2822,basil/spinach,dog,Yes,early bird,Maybe,Kiss of Venus - Dominic Fike
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Other (please provide details below).,Data Science and Mathematics ,,53706,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,Heart Throb - Pritam
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Business: Finance,,,53703,41.8818,-87.8367,pepperoni,dog,No,night owl,No,"Boogie Wonderland by Earth, Wind, and Fire and The Emotions"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Legal Studies major,,10075,40.7131,-74.0072,pepperoni,dog,Yes,no preference,Yes,Dancing in the Moonlight
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Computer Science,,,53703,43.0731,-89.4012,pineapple,cat,No,no preference,Yes,Hits Different - Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Data Science,,,53715,45.4642,9.19,pineapple,dog,No,night owl,Yes,Passionfruit - Drake
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Computer Science,,Data Science,53715,25.2345,110.18,mushroom,cat,No,night owl,Maybe,Midsummer Madness by 88rising
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Engineering: Industrial,,,53706,60.8525,7.1136,pepperoni,dog,Yes,no preference,No,Boulevard of Broken Dreams by Green Day
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Engineering: Industrial,,,53715,51.5074,-0.1278,none (just cheese),dog,No,night owl,Yes,"unruly NSG,Meeks"
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Data Science,,Global Health,53715,18.58,-68.41,macaroni/pasta,cat,Yes,early bird,Yes,"November Rain, Guns N' Roses"
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,44.5004,-88.0613,pepperoni,cat,Yes,early bird,Maybe,"""Take It Easy"", Eagles"
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,21,Science: Biology/Life,,,53590,59.9,10.7,macaroni/pasta,cat,Yes,early bird,Yes,Trouble by Elvis Presley
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Engineering: Mechanical,,,53703,44.5133,-88.0133,pepperoni,dog,No,early bird,No,Revival by Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Business: Information Systems,,,53590,45.5017,73.5674,pepperoni,neither,Yes,night owl,Maybe,Teeth by 5 Seconds of Summer (please do play this one sometime!)
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53706,47.227,-88.164,pineapple,cat,No,night owl,Yes,stacy's mom by fountains of wayne
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Other (please provide details below).,Undecided,,53706,42.3314,-83.0458,pepperoni,dog,No,night owl,Maybe,Always Forever by Cults
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,36.3719,-94.2027,mushroom,dog,Yes,early bird,No,At the Beach by the Avett Brothers
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Other (please provide details below).,Economics,,53703,41.9028,12.4964,pepperoni,dog,Yes,night owl,Yes,Free bird - lynyrd skynyrd
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Other (please provide details below).,Behavioral Economics,"Mathematics, Data Science Minor",53715,42.3601,-71.0589,basil/spinach,dog,Yes,early bird,No,Sitting on Top of the World - Burna Boy
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Mechanical,,,53706,34.4208,-119.6982,pineapple,dog,No,early bird,Maybe,snooze by SZA
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53706,42.584,-87.82,pepperoni,dog,Yes,no preference,Maybe,Outside- Calvin Harris
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Business: Other,,,53703,37.1324,24.815,pepperoni,dog,No,night owl,Yes,Thunder by Imagine Dragons
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,44.79,-89.723,pepperoni,dog,No,no preference,No,Eye of the Tiger
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Engineering: Mechanical,,,53703,-33.9249,18.4241,pepperoni,dog,No,no preference,Yes,The Adults Are Talking - The Strokes
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Science: Other,My primary major is Atmospheric and Oceanic Science.,I am considering double majoring in either Environmental Studies or Math. ,53715,40.5853,-105.0844,none (just cheese),dog,Yes,no preference,Yes,"""Tidal"" Noah Kahan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Mechanical,,,53703,41.9,-87.6,pepperoni,dog,No,night owl,No,Revival by Zach Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC002,20,Other (please provide details below).,Economics.,Data Science.,53703,44.972,-93.51,pepperoni,dog,Yes,night owl,Maybe,Broken Clocks by SZA.
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Other (please provide details below).,Economics and Data Science,,57315,42.6256,-71.3853,pepperoni,dog,Yes,night owl,Yes,Style by Taylor Swift
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Data Science,-,Econ ,53711,1.3521,43.0731,mushroom,dog,Yes,early bird,Maybe,low-key - Nikki
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Computer Science,,,53703,61.2114,-149.7313,mushroom,cat,Yes,night owl,No,"""I Wonder"" by Kanye West"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Mechanical,,,53726,46.5436,-87.3954,basil/spinach,cat,Yes,night owl,Yes,"Snow, Red Hot Chili Peppers "
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53715,43,-89.3,pepperoni,dog,No,night owl,Yes,"FIEN, Travis Scott"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Mathematics/AMEP,,Statistics,53715,27.2195,78.0216,Other,neither,No,night owl,Yes,Taylor Swift- Style
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Science: Physics,n/a,n/a,53706,31.2304,121.4737,mushroom,cat,No,night owl,Yes,"Concorde -- Black Country, New Road"
COMP SCI 319:LEC001,LEC001,,Other (please provide details below).,economics,no,53705,39.9042,116.4074,mushroom,cat,Yes,night owl,Yes,What you mean to me -- Matthew Morrison/Laura Michelle Kelly
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC003,18,Engineering: Industrial,n/a,n/a,53706,1.3521,103.8198,pepperoni,dog,Yes,night owl,Yes,When the Day is Done by Grent Perez
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Science: Biology/Life,,,53719,51.5074,-0.1278,Other,cat,No,night owl,Maybe,Father Time - Kendrick Lamar
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Business: Other,Business related but undecided.,n/a,53706,37.5326,127.0246,mushroom,dog,No,night owl,Yes,"New Jeans - ETA
New Jeans - OMG"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,42.2387,-87.9596,pepperoni,neither,Yes,night owl,Maybe,Laugh Now Cry Later - Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,21,Data Science,,,53703,43.4714,-110.7688,sausage,dog,Yes,night owl,Yes,My Old School - Steely Dan
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53715,43.07,-89.4,sausage,dog,No,no preference,Maybe,I Hope That's True by Morgan Wallen
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,,Other (please provide details below).,Undecided.,,53706,35.6895,139.6917,sausage,cat,No,night owl,Yes,Stitches-Shawn Mendes
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,Finance,Information Systems,53718,43.6511,-79.347,sausage,dog,No,night owl,Maybe,Over by Drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Science: Biology/Life,,Data Science,53715,13.7563,100.5018,pepperoni,dog,No,night owl,Yes,Hurricane Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Business: Finance,,,53715,50.0755,14.4378,pepperoni,dog,No,night owl,Yes,Nonstop by Drake
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,22,Science: Biology/Life,,"Data Science, BS",53703,37.5683,126.9978,pepperoni,cat,No,night owl,No,'Mourning' - Post Malone
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,20,Data Science,,,53703,37.44,25.37,pepperoni,cat,No,night owl,Yes,Spotless- Zach Bryan ft. The Lumineers
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Business: Finance,,Business: Information Systems,53715,52.3702,4.8952,Other,cat,No,early bird,Yes,As It Was by Harry Styles
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53703,24.4882,54.3773,none (just cheese),cat,No,night owl,Yes,
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Computer Science,,,53703,42.9856,-88.0761,Other,dog,No,night owl,No,"Aries - Fools gold
"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Data Science,,,53703,33.4484,-112.074,mushroom,cat,No,night owl,Yes,fire burning -sean kingston
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53715,40.7128,-74.006,none (just cheese),dog,No,early bird,Yes,"Ordinaryish People, by AJR"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,22,Other (please provide details below).,"Economics, with data science certificate.",,53711,34.7466,113.6253,pepperoni,cat,Yes,no preference,Maybe,"One Last Kiss, by Utada Hikaru"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Data Science,,,53726,43.2815,-88.4091,sausage,dog,No,night owl,No,Normal Girl by SZA
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Engineering: Industrial,,,53703,39.6349,-106.5283,pepperoni,dog,Yes,night owl,Yes,Dark Necessities by The Red Hot Chilli Peppers
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Mathematics/AMEP,,Statistics,53706,31.2304,121.4737,sausage,cat,Yes,early bird,Yes,Scared 2 be Lonely--Lil Tjay
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,,Computer Science,,Data Science,53715,42.3601,-71.0589,sausage,dog,No,night owl,Yes,The Ladder - Margolnick
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Data Science,,Economics,53706,60.1282,18.6435,Other,dog,No,night owl,Maybe,Smells like teen spirit-Nirvana & Pretender- Foo Fighters (I'm never able to select my most favourite out of these two)
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Atmospheric and Oceanic Studies,,53726,44.447,88.889,pepperoni,dog,No,night owl,Yes,Julia - Mt. Joy
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53706,47.3886,-88.0226,pepperoni,dog,Yes,night owl,Maybe,"""Need 2"" by Pinegrove"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC004,19,Science: Other,,,53703,29.4316,106.9123,mushroom,neither,No,night owl,No,“FIREWORK” by &TEAM
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,44.5133,-88.0133,pineapple,dog,Yes,early bird,Yes,At the End of the Day -Wallows
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,,Data Science,,,53713,3.139,101.6869,basil/spinach,cat,Yes,no preference,Yes,Lady Gaga - Bad Romance
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Other (please provide details below).,Economics,N/A,53703,42.3601,-71.0589,basil/spinach,dog,No,night owl,Maybe,Revival - Zach Bryan
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,No,night owl,Yes,"""Passionfruit"" by Drake"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Engineering: Mechanical,,,53706,46.8108,-90.8182,pepperoni,dog,No,night owl,Maybe,"""My Hero"" by Foo Fighters "
"COMP SCI 220:LEC003, COMP SCI 220:LAB334, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,25.3176,82.9739,pepperoni,dog,Yes,early bird,Maybe,"Safe and Sound, by Capital cities"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Languages,N/A,N/A,53706,12.9716,77.5946,basil/spinach,cat,Yes,night owl,No,baseball - Hippocampus
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Data Science,,,53706,42.3601,-71.0589,sausage,dog,Yes,night owl,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,40.7128,-74.006,none (just cheese),dog,No,night owl,Yes,Father Stretch My Hands - Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Data Science,,,2038,,-71.0589,pepperoni,dog,Yes,night owl,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Mathematics/AMEP,,"Statistics, B.S.",53703,30.2741,120.1551,none (just cheese),dog,Yes,night owl,Maybe,Careless Whisper by Wham!
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Other,Material Science and Engineering,,53706,47.608,-122.3352,sausage,dog,No,night owl,Maybe,"************
Sixteen Tons
************
Geoff Castellucci
"
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,I am an economics major.,I may double major in data science but for now it is a minor.,53703,40.4987,-111.8188,green pepper,cat,No,night owl,Yes,Walking On A Dream by Empire of The Sun.
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Other (please provide details below).,economics,,53706,45.0938,-93.4976,Other,dog,No,no preference,Maybe,Drift Away - Uncle Kracker
COMP SCI 319:LEC004,LEC004,23,Science: Other,Economics,nope,53703,41.7407,123.4399,pepperoni,cat,No,night owl,No,Kiss Goodbye
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Business: Finance,,,54143,37.3891,-5.9845,pepperoni,dog,Yes,early bird,No,The House of the Rising Sun - The Animals
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,46.5,-94.3,sausage,dog,No,night owl,Yes,As She's Walking Away by Zac Brown Band
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Engineering: Mechanical,,,53703,40.7128,-74.006,pepperoni,dog,Yes,night owl,Yes,"Junio, Maluma
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,,54636,41.8781,-87.6298,mushroom,dog,No,early bird,Yes,Cherry by Harry Styles
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53597,44.7866,20.4489,macaroni/pasta,cat,No,night owl,Yes,bad dream baby - hippo campus
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Other (please provide details below).,Economics ,N/A,53703,43,-89,sausage,dog,No,early bird,Maybe,Cough Syrup - Young the Giant
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Biomedical,,,53706,40.7865,-74.3921,sausage,dog,No,night owl,Yes,"Fancy
Drake"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Mechanical,,,53706,-8.6786,115.4556,pepperoni,dog,Yes,no preference,Maybe,Hotel California-Eagles
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53703,40.7131,-74.0072,pineapple,dog,Yes,night owl,Yes,Freestyle by Lil Baby
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,Deciding between Biology and Biomedical Engineering,,53706,45.2658,-111.3003,pepperoni,dog,No,night owl,No,Best of You by the Foo Fighters
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Other (please provide details below).,Economics (Minor in Data Science),,53715,43.0722,-89.4012,sausage,dog,Yes,night owl,No,Art of Living - Mat Kerekes
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,51.5035,-0.1278,macaroni/pasta,neither,No,night owl,Yes,Movin' Out by Billy Joel
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53703,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,I Know - Travis Scott
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Science: Physics,NA,Currently in astrophysics but trying to transfer into the school of Engineering for Mechanical Engineering. ,53703,21.3069,-157.8583,sausage,cat,Yes,no preference,Maybe,"It's my Life, Bon Jovi"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,,Computer Science,,Maybe majoring in data science but I might minor it.,53706,60.1282,18.6435,none (just cheese),cat,No,no preference,Yes,Mad at the World - Heffron Drive
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Science: Physics,,,53706,44.9778,-93.265,basil/spinach,cat,No,night owl,Yes,Out of My League - Fitz and the Trantrums
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Business: Other,,,53726,43,-89,pepperoni,neither,No,no preference,Maybe,post malone
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53705,31,121,pepperoni,cat,No,night owl,Yes,Something Just Like This - The Chainsmokers & Coldplay
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics and Data Science.,,53703,26.6141,-81.8258,pepperoni,dog,Yes,night owl,Maybe,"Sweet Caroline, Neil Diamond"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,25,Other (please provide details below).,Zoology Major,n/a,53719,41.8781,-87.6298,basil/spinach,dog,No,night owl,Yes,"Dirty Little Secret
Song by The All-American Rejects"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,39,116,mushroom,cat,Yes,night owl,Maybe,see you again
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Yes,Fear and Fridays - Zach Bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Data Science,,,53706,40.7128,-74.006,pepperoni,dog,No,early bird,Maybe,Holy Ground by Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,mushroom,dog,No,no preference,No,"Wish You Were Here - Pink Floyd
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53715,38.5733,-109.5498,pineapple,dog,No,early bird,No,Don't You Worry Child by Swedish House Mafia
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53715,46.2044,6.1432,sausage,dog,Yes,no preference,No,"""Woods"" by Mac Miller"
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,"Economics major, data science minor ",,53703,38.4187,27.1296,green pepper,cat,Yes,no preference,No,Piano Man by Billy Joel
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Engineering: Industrial,,,53705,24.7136,46.6753,pepperoni,dog,Yes,early bird,No,"Mohammed Abdu- Artist
Wienak ya darb al mahaba"
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,40,Data Science,"Data Science is my primary major.
I am a returning student. My past Major was AMEP. Data Science majors didnt exist then. It fits better with what I was working towards. I love probablility and statistics.",NA,53705,43,88,sausage,cat,Yes,no preference,No,"Moonlight Sonata Movement #1 played on the piano vs the radio while it rains or at night with the windows open is awesome!!!!!!
Movement #3 will blow your mind.
If you dont like any of those, louisiana harmonica is good."
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,NA,NA,53703,45.8733,-63.5841,pepperoni,cat,No,early bird,Maybe,"Revival, Zach Bryan "
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Other (please provide details below).,"Still deciding from Mathematics, Statistics, and Economics.",,53706,39.9042,116.4074,sausage,neither,Yes,early bird,Maybe,"Title: Croatian Rhapsody
Artist: Tonci Huljic"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Science: Other,Nursing,Global Health minor ,53706,43.8376,10.4951,pepperoni,dog,Yes,night owl,Maybe,Gimme! Gimme! Gimme! by ABBA
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Data Science,,Economics (Math Emphasis) or Math for Econ and finance (still thinking),53706,55.7558,37.6173,pepperoni,dog,No,no preference,Maybe,Safe and Sound by Capital Cities
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Science: Other,Atmospheric and Oceanic Sciences,,53711,48.8566,2.3522,pineapple,dog,Yes,night owl,Maybe,Lady May by Tyler Childers
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,43.0742,89.3838,macaroni/pasta,dog,Yes,night owl,Yes,Little Wing - Jimi Hendrix
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53711,43.0731,-89.4012,sausage,dog,Yes,night owl,Yes,"Encore by the Red Hot Chili Peppers
"
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Other (please provide details below).,undecided,,53703,40.7306,73.9352,basil/spinach,dog,No,night owl,Yes,"Erase Me, Lizzie McAlpine"
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53726,45.5152,122.6784,pepperoni,dog,Yes,night owl,Yes,Pennies - Smashing Pumpkins
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,,Engineering: Industrial,,,53715,44.4047,8.9291,sausage,dog,Yes,early bird,Yes,"You Don't Love Me (No, No, No) - Dawn Penn"
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53715,40.7128,-74.006,pepperoni,dog,Yes,early bird,No,"""What You Know"" by Two Door Cinema Club"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC003,18,Data Science,,,53706,18.7897,98.9844,pineapple,dog,No,night owl,Yes,"One of my favorite songs is ""Bahamas"" by HARBOUR. "
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Computer Science,,,53704,43.0739,-89.3852,pepperoni,dog,Yes,night owl,Maybe,Bang Bang - K'NAAN
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,nuclear engineering,.,53715,47.6,-122.33,sausage,dog,Yes,night owl,Yes,"smells like teen spirit
-nirvana"
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53703,39.0742,21.8243,mushroom,dog,No,night owl,Yes,Cardigan - Don Toliver
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Business: Other,"Other: Accounting
",Business- Information Systems,53726,51.5074,-0.1278,none (just cheese),dog,Yes,early bird,No,Abba- Dancing Queen
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Science: Biology/Life,I am planning to major in neurobiology.,"Data Science
total 2 majors. Neurobiology and Data Science.",53706,36.9741,-122.0288,none (just cheese),cat,Yes,no preference,Maybe,Learn To Fly - Foo Fighters
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,42.3601,-71.0589,pepperoni,cat,No,night owl,Maybe,Show No Regret by Daniel Caesar
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,17,Engineering: Mechanical,,,53706,57.6202,-133.2372,pineapple,dog,No,night owl,Maybe,I Wanna Dance with Somebody by Whitney Houston
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Science: Other,Atmospheric and Oceanic Sciences,N/A,53726,42.7,-89.8679,none (just cheese),cat,No,night owl,Maybe,Might Be Right - White Reaper
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics ,N/a,53703,25.1931,55.279,pepperoni,neither,No,early bird,No,6th Sense-Kodak Black
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Data Science,,,53706,40.4168,-3.7038,basil/spinach,dog,Yes,early bird,No,Polaris Remix Saiko ft. Mora Feid Quevedo
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,42.3601,-71.0589,pineapple,cat,No,night owl,Yes,"zz melt - Jagger Finn
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Data Science,,,53703,44.7394,-93.1258,pepperoni,dog,No,night owl,No,"Self Care, Mac Miller"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Other (please provide details below).,international studies,,53703,41.3851,2.1734,pineapple,dog,Yes,no preference,Yes,"American Pie, Don Mclean"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53706,43.039,-87.906,pepperoni,neither,No,no preference,Yes,Flashing Lights - Kanye West
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Engineering: Industrial,N/A,N/A,53715,88.384,43.0058,pepperoni,dog,Yes,night owl,Maybe,"Stick Season
Noah Kahan"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC003,19,Data Science,,,53713,35.6895,139.6917,sausage,cat,No,night owl,Yes,Its You by Keshi
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Data Science,,,53715,45.9141,-89.2558,mushroom,dog,No,no preference,Yes,"Making Eyes by Archers. Madison based metalcore band! (beware of the screamo sections to some of their songs, lol)"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Engineering: Biomedical,,,53706,22.9068,43.172,mushroom,dog,Yes,early bird,Maybe,Out of Reach- BoywithUke
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,21,Business: Actuarial,,Risk Management & Insurance,53703,43.0731,-89.4012,green pepper,dog,Yes,early bird,No,Layla by Eric Clapton
COMP SCI 319:LEC004,LEC004,24,Other (please provide details below).,Econ,,53703,39.9042,116.4074,pineapple,neither,No,night owl,Maybe,"Savage Daughter
Sarah Hester Ross"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,cat,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Business: Finance,,,53703,40.7128,-74.006,pineapple,dog,No,night owl,Yes,FE!N- Travis Scott
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Business: Finance,,I am doing a data science certificate and planning on a double major in information systems.,53703,41.8781,-87.6298,mushroom,dog,No,early bird,No,"Hozier
Cherry Wine"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,,53711,21.3069,-157.8583,sausage,dog,Yes,night owl,Yes,I KNOW ? - Travis Scott
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,18,Engineering: Industrial,,,55337,48.8566,2.3522,mushroom,dog,No,night owl,Yes,The Other Side of the Door - Taylor Swift
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,17,Data Science,None,Biology,53706,52.3702,4.8952,Other,dog,Yes,early bird,No,Counting Stars by One Republic
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53703,1.3521,103.8198,pineapple,cat,Yes,night owl,Maybe,Someone Like You by Adele
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53726,44.988,-87.243,sausage,dog,No,early bird,No,Chattahochee by Alan Jackson
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Industrial,,,53705,23.5859,58.4059,pepperoni,neither,No,no preference,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,,Data Science,,Economics,53706,1.3521,103.8198,mushroom,cat,No,night owl,Yes,Cupid by Fifty Fifty
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Business: Other,Marketing,,53703,41.3851,2.1734,basil/spinach,dog,No,no preference,No,What is Love by Haddaway
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Data Science,,,53706,43.1132,-87.9997,sausage,cat,Yes,early bird,Yes,Viva la Vida by Coldplay
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Other (please provide details below).,Urban Studies,,53715,37.9838,23.7275,pepperoni,cat,No,no preference,No,Eat The Rich by Aerosmith
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Engineering: Mechanical,,,53715,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Yes,"""If I Know Me"" by Morgan Wallen"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Engineering: Industrial,,,53706,18.3288,-66.9713,pineapple,dog,No,night owl,No,Dancing Queen - Abba
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Industrial,,,53706,43.0739,-89.3852,pepperoni,dog,No,no preference,Maybe,Be Happy by 347aidan
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Science: Biology/Life,,,53726,30.2741,120.1551,pepperoni,cat,No,night owl,Maybe,N/A. I don't have a favorite song.
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,17,Data Science,,,53706,39.9042,116.4074,sausage,dog,No,night owl,No,"Red Eye
Justin Bieber"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,40.7128,-74.006,Other,dog,Yes,night owl,Maybe,September by Earth Wind and Fire
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Other (please provide details below).,Psychology,,53706,45.9857,-123.9082,pepperoni,dog,No,early bird,No,"""Stay"" by Post Malone"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Computer Science,,,53711,43.0739,-89.3852,Other,dog,No,night owl,Yes,Little Wing by Jimi Hendrix
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Mathematics/AMEP,,English - Creative Writing,53715,41.8661,-88.107,pepperoni,neither,No,early bird,Maybe,Unending Stream of Life -- David Maslanka
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,17,Data Science,,,53711,32.2259,35.2549,none (just cheese),cat,No,night owl,No,Dakiti - Bad Bunny
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Other (please provide details below).,Computer Science,"Along with CS, I plan to do Data Science, and maybe a certificate on Marketing.",53706,29.1523,48.1212,mushroom,dog,Yes,early bird,Maybe,Dance Monkey - Tones and I
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,20,Business: Finance,,"Economics, Information Systems",53703,43.0731,-89.4012,pepperoni,dog,No,night owl,No,White Room - Cream
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Industrial,N/A,N/A,53706,51.1785,-115.5743,none (just cheese),cat,No,night owl,Yes,green light by lorde
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Science: Physics,,"Data Science, Mathematics",53706,25.2048,55.2708,pepperoni,dog,Yes,night owl,No,AM Gold by Train
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC001,20,Engineering: Mechanical,,,53925,55.9533,-3.1883,pepperoni,cat,No,early bird,Yes,Wonderwall by Oasis
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC002,19,Other (please provide details below).,economics,,53703,33.6052,-117.8886,pepperoni,dog,No,early bird,Maybe,23 chayce beckham
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Mathematics/AMEP,,,53703,45.374,-84.9556,basil/spinach,dog,Yes,night owl,Maybe,Fire and Rain by James Taylor
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Other (please provide details below).,Atmospheric and Oceanic Science,Mathematics ,53715,45.2464,-93.3028,Other,dog,Yes,early bird,Maybe,Mr. Blue Sky by Electric Light Orchestra
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Computer Science,N/A,N/A,53715,43.0731,-89.4012,sausage,dog,No,night owl,Maybe,What You Know - Two Door Cinema Club
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Statistics,,,53706,44.3,-88.4,pepperoni,dog,Yes,early bird,Maybe,"Sing About me, I'm dying of thirst by Kendrick Lamar"
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Business: Actuarial,,"Finance, Risk Management and Insurance",53715,40.015,-105.2705,pepperoni,dog,No,night owl,Yes,Sweet Child O' Mine
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Data Science,,,53711,37.664,127.9,pepperoni,dog,Yes,night owl,Yes,Never go wrong
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,48.8566,2.3522,pepperoni,dog,No,night owl,Yes,moonwalking in the Calabasas by ddg.
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC004,20,Engineering: Mechanical,,,53703,39.9481,-74.077,sausage,dog,No,night owl,Yes,Set fire to the rain - Adele
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Data Science,,,53706,25.1204,121.5103,pineapple,cat,No,early bird,No,Studio Ghibli movie music
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Business: Information Systems,NA,Real Estate,53703,18.3368,-64.7281,mushroom,cat,Yes,no preference,Yes,"You Proof, Morgan Wallen"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC001,18,Engineering: Mechanical,,,53706,63.4195,-18.9986,none (just cheese),dog,Yes,no preference,Yes,Ticking by Zach Bryan
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Science: Biology/Life,,,53706,45.2646,-111.2533,pineapple,dog,Yes,early bird,No,Romeo and Juliet by the Dire Straits
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,37.7654,-122.4511,pepperoni,dog,No,early bird,No,All I Do - Stevie Wonder
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Astronomy/Physics,Physics,53711,43.0731,-89.4012,Other,dog,Yes,night owl,Maybe,Bank Account 21 Savage
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,Idk if this counts but I'm doing the game design certificate,53706,38.9072,-77.0369,pepperoni,cat,No,night owl,Maybe,Osmosis by Good Kid
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Industrial,,,53703,40.4168,-3.7038,sausage,dog,Yes,early bird,No,Pepas by farruco
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,,Data Science,,Statistics,53706,47.1212,-88.5645,pepperoni,dog,No,early bird,Maybe,Party in the USA
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,18,Engineering: Industrial,,,53706,43.6047,1.4442,Other,dog,Yes,night owl,Yes,Cigarettes out the window-Tv Girl
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Engineering: Mechanical,,Business ,53703,27.0993,-82.4315,pepperoni,dog,Yes,no preference,Yes,Island In The Sun
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Science: Biology/Life,,,53706,64.9631,-19.0208,mushroom,cat,No,night owl,Maybe,cardigan - Taylor Swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Other (please provide details below).,Journalism,,53706,41.3974,2.13,pepperoni,cat,Yes,no preference,Maybe,Maps - Yeah Yeah Yeahs
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,,Other (please provide details below).,Economics,,53703,47.608,122.3352,Other,cat,Yes,night owl,Yes,Revival Zach Bryan
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Statistics,Mathematics,,53706,50.8476,4.3572,pepperoni,dog,Yes,early bird,Maybe,"New Person, Same Old Mistakes - Tame Impala"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC002,19,Computer Science,N/A,N/A,53706,37.8715,112.5512,sausage,neither,Yes,no preference,Maybe,N/A
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,35.9802,-75.6421,sausage,dog,No,early bird,Yes,Gypsy - Fleetwood Mac
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Mechanical,,,53726,45.4408,12.3155,sausage,dog,No,night owl,Yes,Sultans of Swing by Dire Straights
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,40.7128,-73.9352,pepperoni,dog,Yes,night owl,Yes,Virtual Insanity - Jamiroquai
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.6403,-106.3709,sausage,dog,Yes,no preference,Maybe,Whiskey Friends by Morgan Wallen
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Engineering: Mechanical,,,53711,39.1907,-106.8192,Other,neither,No,early bird,No,Try that in a small town - Jason Aldean
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Other (please provide details below).,Undecided,,53703,40.7721,-73.9578,none (just cheese),dog,No,night owl,Yes,Company by Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Data Science,,,53706,41.2974,-96.6059,sausage,dog,Yes,night owl,Yes,m.y l.i.f.e. J cole
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53703,-33.9014,151.0576,pepperoni,dog,No,no preference,Yes,Zach Bryan - Revival
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC001,21,Business: Actuarial,,statistics ,53703,23.1291,113.2644,pineapple,dog,Yes,night owl,Yes,love story Taylor swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Other (please provide details below).,I am currently undecided but I am seriously considering Data Science at the moment.,,53715,48.7786,2.45,Other,dog,Yes,night owl,Yes,My Eyes - Travis Scott
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC004,20,Science: Biology/Life,,,53703,-81.7136,-109.3253,pineapple,neither,No,no preference,Maybe,"capybara song
just search it and you will find"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Computer Science,,,53715,41.8781,-87.6298,none (just cheese),dog,No,no preference,No,Too comfortable - Future
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Other,Civil Engineering,Spanish,53715,43.0731,-89.4012,pepperoni,dog,Yes,night owl,Maybe,Aint no mountain high enough - Marvin Gaye
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,22,Computer Science,,Data Science,53703,23.1291,113.2644,basil/spinach,cat,No,night owl,Yes,Bohemian Rhapsody - Queen
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53715,49.1747,-123.0194,green pepper,dog,No,night owl,Yes,"Gangsters Paradise
"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Science: Other,Double majoring in Biochemistry and Data Science.,"Data Science, Biochemistry ",53703,32.7157,-117.1611,Other,dog,Yes,night owl,Yes,Don't Stop; Fleetwood Mac
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Biomedical,,,53715,43.0389,-87.9065,sausage,dog,No,early bird,Maybe,505 - Artic Monkeys
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Industrial,,Business,53706,46.2388,-97.3636,sausage,dog,No,night owl,Maybe,Solo - Future
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Computer Science,,Data Science,53715,41.8781,-87.6298,Other,cat,No,night owl,Yes,Heartless by The Weeknd
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Statistics,,"Econ, Statistics",53706,55.9502,-3.1875,sausage,dog,Yes,night owl,Yes,Demons by Imagine Dragons
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Computer Science,,My second major is Data Science. My minors are Consulting and Leadership.,53711,34.0522,-118.2437,macaroni/pasta,cat,No,night owl,Yes,Consume by Chase Atlantic
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53706,41.9028,12.4964,sausage,dog,Yes,night owl,Yes,Secrets by The Weekend
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Business: Finance,,"Finance, Real Estate",53706,38.8707,-106.9809,sausage,dog,Yes,night owl,Maybe,Look after you - The Fray
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Engineering: Mechanical,,,53715,38.9828,-76.8819,basil/spinach,neither,No,night owl,Maybe,The Vampire Masquerade by Peter Gundry
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,18,Engineering: Other,,,53713,43.0663,-89.4049,pepperoni,dog,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Mechanical,1,1,53711,37,-122,sausage,cat,No,night owl,Yes,For Whom the Bell Tolls by Metallica
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,,53706,55.6761,12.5683,sausage,cat,No,no preference,Maybe,Poe Mans Dreams by Kendrick Lamar
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Data Science,,,53703,43,87,sausage,dog,Yes,night owl,Maybe,Better ma. By Pearl jam
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,23,Other (please provide details below).,Information Science,,53703,32.0853,34.7818,pepperoni,dog,No,early bird,No,Funkytown by Lipps
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC001,19,Business: Actuarial,,,53703,48.86,2.35,pepperoni,cat,No,night owl,Yes,imperial - j^p^n
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,,Statistics,53706,22.3964,114.1095,basil/spinach,neither,No,no preference,Maybe,"""Put Your Records On"" by Corinne Bailey Rae"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Other,Engineering Physics,,53703,44.9204,-93.2802,basil/spinach,dog,Yes,early bird,No,Houdini - Foster the People
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Data Science,,,53703,40.4168,-3.7038,basil/spinach,dog,No,night owl,Yes,19.10 by Childish Gambino
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Data Science,,data science,53703,56,51,mushroom,cat,No,night owl,Maybe,"too many night, metro boomin"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,My major is Economics with Mathematics Emphasis (BS),N/A,53705,51.5074,-0.1278,green pepper,dog,Yes,early bird,Maybe,"English language
Return of the Mack by Mark Morrison
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Engineering: Mechanical,,,53706,45.8,89.7,pepperoni,dog,Yes,night owl,Maybe,Hannukah Song- Adam Sandler
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Other,,,53715,45.9495,-89.151,macaroni/pasta,dog,Yes,early bird,No,More Than a Feeling by Boston
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,57703,74.8,41.33,mushroom,dog,No,night owl,No,Dancing with Myself by Billy Idol
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53715,29.9511,-90.0715,none (just cheese),cat,No,night owl,No,Shut up and Dance -Walk the moon
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,N/A,Risk Management & Insurance,53711,29.9511,-90.0715,pepperoni,dog,Yes,night owl,Maybe,The jeopardy song
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,43.0389,-87.9065,pepperoni,neither,No,night owl,Yes,"After Last Night by Bruno Mars, Anderson Paak, Silk Sonic "
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Other (please provide details below).,Accounting,Information Systems,53703,41.9028,12.4964,mushroom,cat,Yes,early bird,Yes,"Steady Love, Ben Rector"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53726,53.4645,-2.2896,pineapple,cat,Yes,night owl,Yes,"Juke Box Hero
Foreigner"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,Mathematics ,Data Science ,53715,43.0731,-89.4012,pineapple,dog,Yes,early bird,No,"""The Changing Times"" by Earth, Wind & Fire "
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,23,Engineering: Mechanical,,,53703,40,-76,Other,dog,No,early bird,Maybe,Better Now - Post Malone
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Genetics,N/A,53715,41.8781,-87.6298,Other,dog,No,night owl,Yes,Pursuit of Happiness- Kid Cudi
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Data Science,,Economics,53706,43.0722,89.4008,pepperoni,cat,Yes,night owl,Yes,Caribbean Queen (No More Love On The Run) By Billy Ocean
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Business: Other,,,53706,41.8847,-87.6166,pepperoni,dog,No,night owl,Yes,Overdue (feat. Travis Scott) by Metro Boomin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Genetics,Certificate: Data Science & Global Health,53715,41.8781,-87.6298,Other,dog,No,night owl,Yes,Pursuit of Happiness- Kid Cudi
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53706,43.0592,141.3555,sausage,dog,No,no preference,Maybe,Top of the World - Carpenters
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,,,53703,43.7696,11.2558,sausage,dog,No,night owl,Yes,Little wing Jimi Hendrix
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,43.2286,-88.1104,pepperoni,dog,Yes,early bird,Yes,"Let's Get It On, Marvin Gaye"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Engineering: Industrial,N/A,Entrepreneurship certificate. ,53715,41,87,pepperoni,dog,Yes,early bird,Maybe,Margaritaville - Jimmy Buffett
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,Possibly business finance ,53706,35.2488,24.9132,pepperoni,dog,Yes,night owl,Maybe,Letter from Houston by Rod Wave
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pepperoni,cat,No,no preference,Maybe,Virtual Insanity - Jamiroquai
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Other (please provide details below).,My major is Information Science.,I'd like to pursue the Data Science Certificate or major as well.,53703,38.1157,13.3615,mushroom,cat,No,early bird,Yes,Snooze by SZA
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53703,23,114,Other,neither,No,no preference,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,43.1101,-87.9074,sausage,dog,No,night owl,Maybe,God's Plan- Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Data Science,,,53705,-19.9173,-43.9346,sausage,dog,Yes,no preference,No,Clube da Esquina 7 - Milton Nascimento
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Data Science,,Journalism,53706,30.3935,-86.4958,macaroni/pasta,dog,Yes,night owl,Maybe,One Man Band by Old Dominion
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Computer Science,,,28431,48.8647,2.349,pineapple,dog,No,night owl,Yes,Here with me by dv4d
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Data Science,,,53703,38.9433,-94.7342,pineapple,cat,No,early bird,Yes,Sun to Me- Zach Bryan
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Other,,,53703,40.7608,111.891,pepperoni,dog,Yes,night owl,No,Alors On Danse - Stromae
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53706,40.7128,-74.006,sausage,dog,No,night owl,Yes,Impossible - Travis Scott
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Mathematics/AMEP,,,53706,64.8367,-147.7389,Other,dog,No,early bird,Yes,Back in Black by AC/DC
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,,,53701,45.1027,-93.4649,sausage,cat,Yes,early bird,Maybe,"I prefer anything country, but my favorite song right now is Life Changes by Thomas Rhett. "
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Biomedical,,,53703,35.2271,-80.8431,pineapple,dog,No,early bird,No,Amazing by Rex Orange County
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Science: Other,I am currently undecided but interested in the STEM and Business fields,,53706,37.3891,-5.9845,basil/spinach,dog,Yes,no preference,Yes,"""If I Can Dream"" by Elvis Presley"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,,Engineering: Mechanical,,,53703,50.0755,14.4378,pepperoni,neither,No,early bird,Maybe,"What You Won't Do For Love by Bobby Caldwell
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Economics,Data Science,53703,-37.8136,144.9631,pepperoni,dog,Yes,no preference,Maybe,Need to know -John Newman
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Biomedical,BME,N/A,53711,22.54,114,sausage,dog,Yes,no preference,No,A sky full of stars - coldplay
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Industrial,,,53706,36.1627,-86.7816,sausage,dog,Yes,night owl,Maybe,Like We Used To by A Rocket To The Moon
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,20,Engineering: Biomedical,,,53719,47.6062,-122.3321,pepperoni,cat,Yes,night owl,Yes,Ex-factor by Lauryn Hill
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Other (please provide details below).,Economics,,53703,53.3501,6.2662,none (just cheese),dog,Yes,night owl,Yes,Heavy Eyes by Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Business: Actuarial,,"Finance, RMI, Economics",53726,42.9765,88.1084,pineapple,dog,Yes,early bird,No,"7 & 7, Turnpike Troubadours"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,22,Other (please provide details below).,Education Studies,Psychology,53703,35.8714,128.6014,pepperoni,cat,No,no preference,Yes,Top of the World - Carpenters
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Other (please provide details below).,Economics,,53706,43,-89,pepperoni,dog,Yes,night owl,Yes,Baby Shark
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Data Science,,Mathematics,53706,37.9659,23.7325,sausage,cat,Yes,night owl,Yes,No Surprises by Radiohead
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,21,Science: Other,environmental sciences,,53703,48.1351,11.582,pepperoni,cat,No,no preference,Maybe,I lived-One Republic
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Data Science,,Mathematics,53715,41.8781,-87.6298,pineapple,dog,No,night owl,No,All My Love by Noah Kahan
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,20,Engineering: Biomedical,,,53715,36.16,-86.78,pepperoni,dog,Yes,early bird,No,I Remember Everything by Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,No,early bird,Maybe,Take a Walk by Passion Pit
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Data Science,,CS,53706,26.0745,119.2965,green pepper,cat,Yes,night owl,Yes,We will Rock you
COMP SCI 319:LEC003,LEC003,27,Other (please provide details below).,Information Science,No,53705,19.7418,-155.8444,none (just cheese),cat,No,no preference,Maybe,Don't look back in anger
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,53.3456,-6.2559,basil/spinach,dog,Yes,no preference,Yes,"Stick Season, Noah Kahan"
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53703,41.3851,2.1734,pepperoni,dog,No,night owl,Maybe,The Other Side of the Door by Taylor Swift
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,22,Science: Physics,,"Mathematics in the Physical and Biological Sciences(BS), Computer Science Certificate ",53703,42.8501,-106.3252,pepperoni,cat,Yes,early bird,Maybe,Dopesmoker - 2022 Remastered Version - Sleep
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC004,20,Other (please provide details below).,Psychology and Spanish,,53701,45.891,-123.9619,basil/spinach,dog,Yes,early bird,Yes,Ella Baila Sola by Peso Pluma
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,My primary field of study is Economics but I am also pursuing a certificate in data science. ,,53703,41.8781,87.6298,pepperoni,dog,No,night owl,Maybe,Hey driver - Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,30.2672,-97.7431,Other,dog,No,no preference,No,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Engineering: Mechanical,,,53703,39.7392,-104.9903,pepperoni,dog,Yes,night owl,Maybe,Nikes on my feet Mac Miller
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Computer Science,,,53703,40.2436,-109.01,pepperoni,dog,No,no preference,Maybe,RAVE RATS VOLUME 1: INTERDIMENSIONAL LIFE by ooxygen
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Business: Information Systems,,,53703,41.8781,-87.6298,basil/spinach,dog,Yes,night owl,Yes,Margaritaville by Jimmy Buffet
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53715,24.4539,54.3773,pepperoni,cat,Yes,early bird,No,IDK
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,21,Engineering: Other,,,53703,48.2082,16.3738,sausage,dog,Yes,night owl,No,Shallow - Lady Gaga
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Business: Information Systems,,BUS: Finance,53706,44.9537,-93.09,sausage,dog,No,night owl,No,"Baby, Justin Bieber"
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,20,Computer Science,,,53703,42.3601,-71.0589,pineapple,dog,No,night owl,Maybe,"Erase Me, Kid Cudi"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53715,44.8945,-93.6728,pepperoni,dog,No,night owl,Maybe,Hey Driver- Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53706,47.7502,-90.3356,sausage,dog,No,no preference,Yes,"Fly me to the moon, Frank Sinatra"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,,,53706,59.9139,10.7522,pepperoni,dog,Yes,night owl,Yes,Normal Girl - SZA
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC001,18,Data Science,,,53706,50.0755,14.4378,Other,dog,No,night owl,Yes,Break From Toronto - PARTYNEXTDOOR
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Business: Information Systems,,Accounting,53597,25.7617,-80.1918,pepperoni,cat,No,no preference,Maybe,Graduation - Kanye West
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,39.74,-104.98,mushroom,cat,Yes,night owl,Yes,temperature-sean paul
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,,53706,45.4408,12.3155,mushroom,cat,Yes,no preference,No,Santeria by Sublime
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53703,45.056,92.8088,basil/spinach,dog,Yes,early bird,No,More Than A Feeling by Boston
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,21,Business: Other,Marketing,,53703,41.4174,2.2122,mushroom,dog,No,early bird,Yes,One of my favorite songs is Pull me out of this by Fred Again
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Computer Science,,,53703,35.6895,139.6917,mushroom,cat,Yes,night owl,Yes,Never gonna give you up -Rick Astley
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,37.4605,-122.1703,sausage,dog,No,no preference,Yes,saturday night
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Business: Information Systems,,Finance,53703,6.5244,3.3792,Other,cat,Yes,early bird,No,The Color Violet - Tory Lanez
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC003,20,Data Science,Comm Arts,no,53703,39.9042,116.4074,pineapple,dog,No,night owl,Maybe,For Tonight --- Giveon
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Industrial,,,53703,39.74,-104.98,mushroom,dog,Yes,night owl,No,"vienna, Billy Joel"
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Mechanical,,,53706,49.2764,-0.7056,sausage,dog,Yes,early bird,Maybe,Stairway to Heaven by Led Zeppelin
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Science: Other,economics,DS,53703,31.2304,121.4737,sausage,dog,No,night owl,Yes,“the greatest” Lana Del Rey
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53706,17.385,78.4867,pepperoni,dog,No,early bird,Maybe,Saint Pablo - Kanye West
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Science: Other,,,53703,44.424,-124.069,basil/spinach,dog,No,night owl,Yes,Waltz No. 2 by Dmitri Shostakovich
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Data Science,,,53715,42.3601,-71.0589,Other,dog,Yes,night owl,Maybe,All Your'n by Tyler Childers
COMP SCI 319:LEC003,LEC003,,Statistics,,,53715,24.18,102.98,pineapple,neither,Yes,no preference,No, Never gonna give you up
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Engineering: Industrial,,,53703,42.3601,-71.0589,mushroom,dog,No,no preference,Yes,"Heavy Eyes, Zach Bryan
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Science: Biology/Life,,,53703,35.6895,139.6917,none (just cheese),cat,No,night owl,No,Cake by the Ocean by DNCE
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,Economics,Political Science,53715,40.7128,74.006,sausage,dog,No,night owl,Yes,Stacey's Mom
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Data Science,,,53706,22.3312,103.838,pineapple,dog,Yes,no preference,Maybe,"""2 soon"" - keshi"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Computer Science,,Intend to double major in Data Science,53706,41.8844,-87.6191,pineapple,dog,No,night owl,Yes,1998 by Monsune
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,Economics,Data Science Certificate ,53715,40.7128,-74.006,pepperoni,cat,No,night owl,Yes,"It’s all so incredibly loud, Glass Animals"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,No,no preference,Yes,Immortal by 21 Savage
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Data Science,,,53706,41.0082,28.9784,none (just cheese),dog,No,night owl,Yes,Little Dark Age by MGMT
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Computer Science,,,53703,43.0731,-89.4012,pepperoni,dog,Yes,early bird,No,Romeo and Juliet by Peter McPoland
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Data Science,Information Systems,,53706,59.9139,10.7522,Other,dog,No,early bird,Yes,"Deep Down(ft. Never Dull) - Alok
Give it to Me - Timbaland"
COMP SCI 319:LEC002,LEC001,,Data Science,,,53593,55.9502,-3.1875,pineapple,neither,No,night owl,Maybe,I Will Survive by Gloria Gaynor
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Data Science,,Economics,53703,39.9042,116.4074,pineapple,cat,No,no preference,Yes,LMLY
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Other (please provide details below).,Biochemistry,,53706,51.5099,-0.1278,basil/spinach,dog,Yes,early bird,Yes,Burn Burn Burn by Zach Byran
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,41.8894,12.4924,sausage,dog,No,early bird,Yes,"Houstonfornication, Travis Scott"
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,,,53703,42.3249,-71.0706,sausage,dog,No,night owl,Maybe,Blood on my jeans - Juice Wrld
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Biomedical,,,53703,18.582,-68.4055,pepperoni,dog,Yes,night owl,No,Rod Wave - Call Your Friends
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Business: Finance,,,53715,41.3851,2.1734,sausage,dog,No,night owl,No,Closer By the Chainsmokers
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Science: Other,,,53706,42.3601,-71.0589,Other,dog,No,no preference,No,"Electric Feel, MGMT"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,40.7128,-74.006,none (just cheese),dog,No,night owl,Yes,I dont listen to music
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Business: Actuarial,,Risk Management and Insurance,53703,42.3012,-71.3157,sausage,dog,Yes,night owl,No,Sunday by Earl Sweatshirt
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,22,Data Science,.,.,53706,37.5,127,mushroom,neither,No,early bird,No,snowman - seung hwan jeong
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,sausage,cat,No,night owl,Yes,
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,Economics,Data Science,53706,22.3964,114.1095,none (just cheese),dog,No,night owl,Yes,Black and White by Juice Wrld
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Actuarial,,"Statistics, Risk Management and Insurance, Certificate in Mathematics",53719,43.0731,-89.4012,pepperoni,dog,No,night owl,Yes,"Sovereign Light Cafe, Keane"
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC002,20,Computer Science,,,53705,31,-238,pepperoni,dog,No,night owl,Yes,Castle on the Hill - by Ed Sheeran
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53706,37.5665,126.978,pepperoni,neither,No,no preference,No,World to the wise. Matt Corman
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Engineering: Mechanical,N/A,N/A,53715,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Maybe,"STRINGS by MAX, featuring JVKE and Bazzi"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53715,43.0389,-87.9065,sausage,dog,Yes,early bird,Maybe,paranoid- Rio da yung og
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,,,53726,41.8614,-87.6114,basil/spinach,dog,Yes,no preference,No,Wildfire by Periphery
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Economics, Data Science,53711,35.7101,139.8107,mushroom,dog,Yes,early bird,Yes,Lemon Tree by the Fools Garden
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC002,21,Engineering: Biomedical,,,53703,38.5385,-75.0617,basil/spinach,cat,Yes,early bird,Maybe,"Be young, be foolish, be happy by The Tams."
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Other (please provide details below).,"Still pretty undecided but I am between Computer Science, Data Science, and business. ",,68114,39.7392,-104.9903,pepperoni,dog,No,no preference,Maybe,All Star by Smash Mouth
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53703,35.5951,-82.5515,pepperoni,dog,Yes,night owl,Yes,Good Days - SZA
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,41.8781,-87.6298,pepperoni,cat,Yes,night owl,Yes,The Adults Are Talking - The Strokes
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,22.1565,-100.9855,pepperoni,dog,Yes,early bird,No,FE!N by Travis Scott
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53706,42.8886,88.0384,green pepper,dog,Yes,night owl,Yes,One of my favorite songs is '98 Braves by Morgan Wallen.
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Science: Biology/Life,,,53711,1.2062,103.7959,green pepper,cat,No,early bird,No,Golden Hour by Mark Lee
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,17,Other (please provide details below).,Economics,,53706,51.5074,-0.1278,pepperoni,cat,Yes,night owl,Maybe,A Sky Full Of Stars- Coldplay
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Business: Finance,,Information Systems,53715,42.3601,-71.0589,none (just cheese),dog,Yes,no preference,Maybe,December 1963 (What a Night)
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Science: Biology/Life,,,53706,36.1699,-115.1398,mushroom,dog,No,night owl,Yes,Drive By by Train.
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,44.9105,-93.3487,sausage,dog,No,early bird,No,"Center Point Road by Thomas Rhett, Kelsea Ballerini"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,,53706,37.778,-122.42,pepperoni,dog,No,night owl,No,Work Song by Hozier
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Other,Materials Science and Engineering,,53703,51.5074,-0.1278,mushroom,cat,No,early bird,Yes,Good Old-Fashioned Lover Boy - Queen
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Science: Other,Microbiology,,53705,41.8781,-87.6298,pepperoni,cat,No,early bird,No,"So Right, Shaun"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Computer Science,,Mathematics,53703,38.707,-9.1356,none (just cheese),dog,No,no preference,Maybe,"Taylor Swift ""Paper Rings"""
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,40.7948,-73.9628,none (just cheese),dog,No,night owl,Yes,sk8er boi - arvil lavinge
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Data Science,Data Science ,Information Science,53706,44.37,-89.81,pepperoni,neither,No,night owl,Yes,How You Like That- Blackpink
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Computer Science,,,53715,43.0731,-89.4012,Other,cat,No,night owl,Yes,Feel Good Inc. by Gorillaz
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC003,20,Data Science,Data Science ,,53711,29.6548,91.1405,pepperoni,dog,No,night owl,Yes,608 by Salt
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Science: Other,Global Health,,53703,41.8781,87.6298,none (just cheese),dog,Yes,early bird,Maybe,Slide by Calvin Harris ft. Frank Ocean & Migos
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Other (please provide details below).,Information Science ,I have two minors; Data Science and Digital Studies ,53703,-87.6298,41.8781,green pepper,cat,No,early bird,Maybe,August by Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53703,39.9042,116.4074,none (just cheese),dog,No,early bird,No,If by Bread
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Languages,,,53703,39.74,-105,macaroni/pasta,cat,No,night owl,Yes,Water by Mother Falcon
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,144,-37,pepperoni,dog,No,no preference,Yes,[Excitable - Def Leppard] (https://www.youtube.com/watch?v=jqVfxWgfWhw)
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,41.3851,2.1734,sausage,dog,No,early bird,Yes,"Memories, by David Guetta."
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Engineering: Biomedical,,,53736,41.8781,-87.6298,pineapple,dog,No,night owl,Maybe,softly by clairo
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Engineering: Mechanical,,,53715,59.9139,10.7522,mushroom,cat,Yes,early bird,No,"Perfect places
Artist: Lorde"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53715,47.0505,8.3053,sausage,dog,Yes,no preference,Yes,"Breathe Deeper, Tame Impala"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,,Information Systems (Business),53703,33.4725,-81.9644,pepperoni,dog,No,night owl,Yes,"Last Train Home, John Mayer."
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,24,Other (please provide details below).,Economics with Mathematical Emphasis ,"Data Science,",53703,42.7165,12.1116,pepperoni,dog,Yes,night owl,Yes,Tiny Dancer by Elton John
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,43.7696,11.2558,pepperoni,dog,No,early bird,No,Pride-Kendrick Lamar
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Business: Other,,,53703,35.6895,139.6917,pineapple,dog,Yes,night owl,Maybe,"Song: Cupid
Artist: FIFTY FIFTY"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Engineering: Industrial,,,53703,41.8781,-87.6298,sausage,dog,No,early bird,No,passionfruit- drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53703,39.1031,-84.512,pepperoni,cat,No,early bird,Yes,Call Me Maybe - Carly Rae Jepsen
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Computer Science,,"Data Science
Game Design certificate",53702,28.7041,77.1025,pepperoni,dog,No,night owl,Yes,Better Now by Post Malone
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Science: Chemistry,,Biochemistry,20016,38.9072,-77.0369,pepperoni,dog,Yes,night owl,Yes,I would rather not answer
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Science: Other,Nutritional Sciences,,53703,41.8781,-87.6298,green pepper,cat,No,early bird,Yes,Sweet Virginia by The Rolling Stones
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53715,25.7575,-80.2515,pepperoni,dog,No,night owl,Yes,Touch the Sky - Kanye West
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Information science,Human development and family studies ,53726,45.4059,-86.9087,pepperoni,dog,No,night owl,Yes,Radio Lana Del Ray
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,Mathematics,53706,43.0731,-89.4012,pepperoni,dog,No,night owl,No,"*******************
Party Rock Anthem,
*******************
******
LMFAO
******"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,Pursuing certificate in Data Science. ,53711,35.0116,135.768,mushroom,dog,Yes,night owl,Yes,Nightcall- Kavinsky
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Business: Actuarial,,"Risk Management & Insurance, Finance",53703,37.4467,25.3289,none (just cheese),dog,No,early bird,Maybe,london boy by taylor swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Other (please provide details below).,Economics,Data Science Certificate,53711,40.7131,-74.0072,sausage,dog,Yes,no preference,No,https://www.youtube.com/watch?v=XjN8qEs_K7c&list=PLuVodMYS9xWblpzyNp9CwjERyndPTnCGV&index=6
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53706,44.9232,-93.4853,pepperoni,dog,No,night owl,Yes,Kodachrome- Paul Simon
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Data Science,,,53703,24.4539,54.3773,green pepper,neither,No,night owl,Yes,Kiss The Sky
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Engineering: Mechanical,n/a,n/a,53703,32.7157,-117.1611,pepperoni,dog,Yes,night owl,Maybe,Dancing With Myself by Billy Idol
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,17,Computer Science,,,53706,13.0827,80.2707,pepperoni,dog,No,night owl,No,Starships by Nicki Minaj
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,-,-,53715,44.1782,-88.4772,pepperoni,dog,Yes,night owl,Maybe,Just Wanna Rock - Lil Uzi Vert
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Other (please provide details below).,Economics,Marketing or Mathematics,53706,40,116,pineapple,dog,No,night owl,Maybe,Save Your Tears(Remix) --Ariana Grande& The Weekend
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Science: Biology/Life,,"It's not a secondary major, but I'm completing a certificate in Computer Science.",53562,55.9515,-3.1895,basil/spinach,dog,No,night owl,Yes,"Second Child, Restless Child by The Oh Hellos"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Data Science,,,53597,47.2144,14.7788,Other,cat,No,no preference,Yes,Black Summer - Red Hot Chili Peppers
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Engineering: Industrial,,,53706,24.9905,-77.3897,none (just cheese),dog,No,night owl,Yes,"East Side of Sorrow
Zach Bryan"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Economics,,53703,42.3601,-71.0589,pepperoni,dog,Yes,night owl,Yes,Life i a Highway - Rascal Flatts
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Data Science,Double majoring in Data Science and Consumer Behavior and Marketplace Studies,Consumer Behavior and Marketplace Studies,53703,35.1796,129.0756,sausage,cat,Yes,night owl,Yes,The Kid Laroi - Always do
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Statistics,,,53706,37.5519,127.0246,pepperoni,dog,Yes,early bird,Yes,"I have few.
Madvillain : Great Day
Radiohead: Let down
The Strokes: Hard to Explain"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,basil/spinach,dog,No,night owl,Yes,Zach Bryan - I remember everything
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Engineering: Industrial,,,53726,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,Bohemian Rhapsody by Queen
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53706,43,87,pineapple,dog,Yes,no preference,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,41.8781,-87.6298,basil/spinach,dog,Yes,early bird,Yes,"Blue World, Mac Miller "
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,Civil Engineering,,53715,44.513,88.013,pepperoni,dog,Yes,night owl,Yes,I Remember You- Skid Row
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53726,43.0389,-87.9065,pepperoni,cat,No,night owl,Yes,Supercut by Lorde
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,,,53703,51.5986,-0.0752,sausage,dog,Yes,early bird,Maybe,Today is a Good Day - Ice Cube
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Engineering: Industrial,,,53706,21.593,-158.1034,none (just cheese),dog,No,early bird,Yes,Doses & Mimosas by Cherub
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Mathematics/AMEP,,Data science,53719,-27.4954,-64.8601,basil/spinach,cat,No,early bird,No,Andromeda by Weyes Blood
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Business: Finance,N/A,N/A,53703,41.87,-87.6657,pepperoni,dog,No,no preference,Maybe,The world is yours- Nas
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53711,40.865,-73.4175,macaroni/pasta,dog,No,early bird,Maybe,Piano Man Billy Joel
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Science: Other,Psychology,,53706,22.5429,114.0596,none (just cheese),dog,Yes,no preference,Maybe,Ballad in G minor by Chopin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Mathematics/AMEP,,,53715,,40.7128,pineapple,cat,No,early bird,Maybe,a little bit yours by jp saxe
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Political Science,,53715,40.7094,-73.8049,pepperoni,dog,No,early bird,No,Deal by Jerry Garcia.
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,"I am a Mechanical Engineer interested in automotive engineering; car design, formula 1 etc.",,53706,45.677,-111.0429,sausage,dog,Yes,night owl,Maybe,"Oklahoma City, Zach Bryan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,,,53703,42.6507,18.0944,pineapple,dog,No,night owl,Maybe,Sick Love by The Red Hot Chili Peppers
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Biomedical,,,53706,12.9716,77.5946,basil/spinach,dog,No,night owl,Yes,Right Round - Flo Rida
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Business: Information Systems,,,53715,43.0389,-87.9065,pepperoni,dog,No,night owl,Maybe,Juice World - Wasted
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Economics,,53703,-8.4095,115.1889,Other,dog,No,night owl,No,Sinônimos
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Engineering: Biomedical,,,53703,27.5268,-82.7363,pineapple,dog,No,no preference,Yes,The Last Great American Dynasty by Taylor Swift
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53726,43,-88,pepperoni,dog,No,night owl,Yes,Wonderful World by Sam Cooke
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Psychology ,Data Science Certificate,53703,40.7831,-73.9713,none (just cheese),dog,Yes,early bird,Yes,Doo Wop - Ms. Lauryn Hill
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,n/a,n/a,53703,41.9,-87.63,pepperoni,dog,Yes,early bird,No,Crocs & Wock - Babytron
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Science: Biology/Life,,Psychology,53706,33.198,-96.615,sausage,cat,No,night owl,Maybe,Experience - Ludovico Einaudi
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Statistics,,data science,53706,43.0759,89.3991,mushroom,dog,No,no preference,No,"running up that hill
Kate Bush"
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,63105,38.6418,-90.3342,pepperoni,dog,No,night owl,Yes,Ain't No Mountain High Enough by Marvin Gaye and Tammi Terrell.
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,20,Engineering: Mechanical,,,53703,46.0216,-90.135,sausage,dog,No,night owl,Maybe,"Kickstart my heart, Motley Crue"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,22,Science: Chemistry,,,53129,10.7765,106.701,mushroom,cat,No,night owl,No,girls like me don't cry (remix) - thuy ft. MIN
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,25,Other (please provide details below).,Social Work,,53713,46.8537,-91.1071,tater tots,cat,No,no preference,Maybe,Mona Lisa by Dominic Fike
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Data Science,,,53715,48.1934,-0.6643,pepperoni,dog,No,early bird,No,Renegade by Big Red Machine (ft. Taylor Swift)
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Global Health,,53715,13.2263,72.4973,mushroom,dog,Yes,no preference,Yes,Around me - Metro Boomin
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Computer Science,,,53726,41.813,-87.629,pepperoni,dog,No,night owl,Yes,Self Control by Frank Ocean
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Other (please provide details below).,Sociology!,,53703,43.0139,-83.5983,pepperoni,dog,Yes,night owl,Yes,Thneedville by John Powell and Cinco Paul
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,43.1117,-88.5011,pepperoni,dog,No,night owl,Yes,Bucket List by Mitchell Tenpenny
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,,Science: Other,Genetics and genomics ,,53711,42.78,-89.3,pepperoni,dog,No,night owl,Yes,Sunroof- Nicky Youre
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Other (please provide details below).,ECONOMIC,,53703,43,-80,none (just cheese),cat,No,night owl,Maybe,WOLVES (Hauzer)
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Pharmacology & Toxicology,Neurobiology,53706,35.0116,135.768,mushroom,cat,Yes,night owl,Maybe,All In My Head by Whethan
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,,Engineering: Industrial,,,53715,21.3069,-157.8583,tater tots,neither,Yes,early bird,No,Brian's Movie: peach pit
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Information Systems,,Supply Chain Management,53703,44.978,-93.2707,sausage,dog,No,night owl,Yes,"Upside Down, Jack Johnson"
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Computer Science,N/A,"Economics, Data Science",53706,33.749,84.388,pineapple,dog,No,no preference,Yes,Ctrl + Del by MegaGoneFree
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Biomedical,,,53706,41.8781,-87.6298,sausage,dog,Yes,night owl,Maybe,Entropy by Daniel Caesar
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Engineering: Mechanical,,"electrical engineering
",53706,23.9314,120.5641,sausage,neither,Yes,early bird,Yes,"There is a light that never goes out, the Smiths"
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,Data Science,53715,45.4343,12.3388,pepperoni,cat,No,night owl,No,Teenagers by My Chemical Romance
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,57303,38.8339,-104.8214,pepperoni,dog,No,night owl,Yes,Run-Around by Blue Traveler
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Computer Science,,"Statistics, Data Science Certificate, Mathematics Certificate",53715,41.8781,-87.6298,Other,dog,Yes,early bird,Maybe,"FE!N
Travis Scott, Playboi Carti"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Engineering: Industrial,,,53706,47.6062,-122.3321,sausage,dog,No,no preference,Maybe,Sunday Bloody Sunday - U2
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,21,Science: Biology/Life,,,53715,46.7867,92.1005,basil/spinach,dog,Yes,night owl,No,"Santeria, Sublime"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Data Science,,Economics,53715,34.0522,-118.2437,sausage,neither,Yes,no preference,Maybe,My favorite one will be The tale of 2 Citiez by J Cole
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Engineering: Other,,International Engineering,53703,40.4168,-3.7038,pepperoni,dog,No,night owl,No,"El Dorado - Zach Bryan
Scenes from an Italian restaurant - Billy Joel
Wouldve could’ve should’ve - Taylor swift"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Mechanical,,,53715,48.1351,11.582,sausage,dog,No,no preference,Maybe,In Your Atmosphere (live) - John Mayer
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,42.3601,-71.0589,macaroni/pasta,cat,Yes,night owl,Yes,Colder weather- Zac brown band
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Data Science,no,Spanish,53706,45.4408,12.3155,pineapple,dog,No,early bird,No,August - Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,Communication Arts,Sports Communication Certificate,53703,44.2947,90.8515,pineapple,dog,No,night owl,No,Simulation Swarm - Big Thief
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Science: Physics,,Mathematics,53706,46.2044,6.1432,sausage,dog,Yes,early bird,Yes,The Color Violet - Tory Lanez
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,43.0731,-89.4012,none (just cheese),dog,Yes,no preference,Yes,Starboy - Weeknd
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Other,Chemical engineering,,53706,34.3416,108.9398,pepperoni,cat,No,night owl,Yes,You Belong With Me - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,18,Engineering: Mechanical,,,53706,43.0597,-88.0269,pineapple,dog,No,no preference,Yes,AA-Isaiah Rashad
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Mechanical,,,53715,41.8781,-87.6298,pepperoni,dog,No,no preference,Maybe,"Margaritaville, Jimmy Buffett"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Other (please provide details below).,Atmospheric and Oceanic science ,Does ROTC count?,53706,47.8864,106.9057,mushroom,dog,Yes,early bird,Yes,"I have a lot lol
Water no get enemy-Fela Kuti is probably my favorite
I also love 70s rock if you want to talk about bands from then, a little from the 80s "
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Data Science,,Personal Finance,53703,51.5074,-0.1278,sausage,dog,No,night owl,Yes,White Iverson - Post Malone
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53726,43,-89,pineapple,dog,No,early bird,No,Pretty much anything by Led Zeppelin
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Business: Information Systems,N/A,N/A,53713,37.7749,-122.4194,sausage,dog,No,night owl,Yes,GEEKALEEK by OHGEESY
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,,,53703,40.788,-74.3921,sausage,dog,No,early bird,No,"i know you hate me, midwxst"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Data Science,,Political science ,53715,40.7128,-74.006,basil/spinach,dog,Yes,early bird,No,Slide Away by Oasis
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Data Science,,,53706,41.9028,12.4964,pepperoni,dog,Yes,night owl,Yes,Headlines by Drake
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,43.7696,11.2558,macaroni/pasta,dog,No,no preference,Yes,I Remember Everything by Zach Bryan
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,computer science,53703,31,121,mushroom,dog,No,night owl,No,lemon tree
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Business: Finance,,,53703,43.4796,-110.7624,mushroom,dog,Yes,night owl,Yes,shout Pt. 1 and 2 - the isley brothers
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Mathematics/AMEP,,Data Science,53703,39.1031,-84.512,Other,dog,Yes,no preference,Maybe,
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Computer Science,,Data Science,53703,41.8781,-87.6298,pepperoni,dog,No,night owl,Maybe,Cupid by Fifty Fifty
COMP SCI 319:LEC002,LEC002,25,Business: Other,Business Analytics,None,53705,15.2993,74.124,tater tots,dog,No,early bird,No,Shake it off - By Taylor Swift
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,47.8112,13.055,macaroni/pasta,dog,Yes,night owl,Yes,Flashing Lights by Kanye West
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,22,Statistics,,,53703,37.535,126.99,mushroom,dog,Yes,no preference,Yes,Ghost of you by 5SOS
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Business: Other,,,53703,50.0755,14.4378,Other,dog,Yes,night owl,Yes,Dark Horse. Katy Perry
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Data Science,,,53703,40.6782,-73.9442,pepperoni,dog,Yes,night owl,No,Shiver - Coldplay
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Engineering: Industrial,,,53706,41.9028,12.4964,basil/spinach,dog,No,night owl,Yes,Can't Tell Me Nothing by Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Other (please provide details below).,Economics,,53703,41.8781,-87.6298,pepperoni,cat,No,early bird,No,Too many nights- Metro Boomin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Econ BS,Certificates in DS & Consulting,53703,41.8781,-87.6298,basil/spinach,dog,No,night owl,Maybe,Shiver-Coldplay
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,21,Engineering: Biomedical,,,53726,45.17,-93.87,pepperoni,dog,No,night owl,Yes,Eye of the Tiger by Survivor
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53715,-33.8688,151.2093,pepperoni,dog,No,night owl,Maybe,Read My Mind by the Killers
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Biomedical,,Computer science or data science,53706,40.7128,-74.006,basil/spinach,dog,No,early bird,Yes,any taylor swift
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53703,37.5665,126.978,sausage,cat,Yes,night owl,Yes,
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Economics,,53703,34.4208,-119.6982,pepperoni,dog,No,early bird,No,Chicken Fried-Zac Brown Band
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Science: Biology/Life,biochemistry,certificate of data science,53711,31.23,121.47,sausage,dog,No,night owl,No,"
Taylor Swift
Love Story"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Data Science,,Econ,53715,42.3601,-71.0589,sausage,dog,No,night owl,No,Let it Happen Tame Impala
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,21,Other (please provide details below).,Economics,Certificate in Data Science,53703,47.6062,122.3321,pepperoni,dog,No,no preference,Yes,Elton John- Funeral for a Friend/Love Lies Bleeding
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,21,Data Science,,,53715,43.215,-87.9955,Other,dog,Yes,night owl,Yes,
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Information Systems,,"Risk Management and Insurance, Legal Studies",53715,41.8781,-87.6298,mushroom,cat,No,night owl,Yes,"All too Well, Taylor Swift"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Mathematics/AMEP,I'm a double-major in Math and Computer Science. ,I'm a double-major in Math and Computer Science. ,53706,43.073,-89.401,pepperoni,dog,Yes,no preference,Yes,Listen to the Music: The Doobie Brothers
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Engineering: Mechanical,,,53707,43.0779,-89.3902,pepperoni,dog,No,early bird,No,"Revival, Zach bryan "
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Data Science,,Economics Major/ Data Science Minor,53703,41.2959,73.7933,none (just cheese),dog,Yes,night owl,Maybe,Sky Full of Stars- Coldplay
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Business: Information Systems,,Business: Finance,53715,39.7392,-104.9903,sausage,cat,No,night owl,Yes,Lose My Mind - Jai Wolf
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Finance,,Econ,53715,21.1619,-86.8515,pepperoni,cat,No,night owl,Maybe,Just the two of us - Washington Jr.
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,45.1865,-87.1239,pepperoni,dog,No,no preference,No,Hey Driver- Zach Bryan
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Computer Science,,,53706,36.2048,138.2529,pineapple,dog,Yes,night owl,Maybe,Pretender by OFFICIAL HIGE DANDISM
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,20,Business: Information Systems,,,53598,43.0731,-89.4012,pepperoni,dog,Yes,night owl,Yes,Holiday - Green Day
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,22,Engineering: Other,NA,NA,53703,41.8781,-87.6298,mushroom,cat,Yes,night owl,Maybe,Dancing Queen by ABBA
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53715,43.7696,11.2558,pepperoni,dog,No,early bird,Maybe,Last Nite-Strokes
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Engineering: Industrial,,,53706,35.6895,139.6917,pepperoni,neither,Yes,early bird,Maybe,"It will Rain - Bruno Mars
Blank Space - Taylor Swift
Right There - Ariana Grande
Stuck with U - Ariana Grande & Justin Bieber "
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Business: Finance,,,53706,37.9753,23.7361,none (just cheese),dog,No,night owl,Maybe,"Homecoming, Kanye West"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,Economics with certificate in data science ,,53715,45.4408,12.3155,Other,dog,No,early bird,No,Chris Stapleton White Horse
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53703,42.4173,27.6964,sausage,cat,No,no preference,Yes,S91 by Karol G
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Industrial,,,53703,38.288,-85.67,none (just cheese),dog,Yes,night owl,Yes,"Waiting on the world to change, John Mayer"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Information Systems,-,Considering another business major as well as a language certificate,53706,44.3289,-88.5391,pepperoni,dog,No,night owl,Maybe,Surf - Mac Miller
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Engineering: Mechanical,,,53706,43.4782,-110.7627,sausage,dog,Yes,no preference,Yes,Something in the Orange - Zach Bryan
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,17,Data Science,,,53706,55.9533,3.1883,sausage,dog,Yes,early bird,Yes,Build Me Up Buttercup by The Foundations
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,35.6528,139.8395,pepperoni,dog,No,night owl,Maybe,"For my hand, Burna Boy feat. Ed Sheeran "
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Other (please provide details below).,Economics,,53703,40.4406,-79.9959,sausage,dog,Yes,early bird,Maybe,Take Me Home Country Roads - John Denver
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,22,Science: Biology/Life,,"Data Science, Global Health ",53726,44.9765,-93.2652,pepperoni,dog,Yes,night owl,No,Where The Streets Have No Name - U2
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Other (please provide details below).,I intend to pursue a double major with Neurobiology and Data Science.,-,53706,25.1972,55.2744,mushroom,cat,No,no preference,Yes,Crazy by Aerosmith
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Business: Actuarial,,Data science,53706,40.7128,-74.006,basil/spinach,cat,No,early bird,No,Timeless by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Biology/Life,N/a,Certificate in Data Science,53715,43.0739,-89.3852,pineapple,dog,No,night owl,Yes,Hold on We're Going Home by Drake
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Industrial,,,53703,41.3894,2.1588,macaroni/pasta,dog,Yes,no preference,No,"Brazil- Declan Mckenna
British Bombs- Declan McKenna"
COMP SCI 319:LEC001,LEC001,26,Science: Other,,,53560,55.8931,-3.0666,pepperoni,dog,No,night owl,No,I'm Gonna Be (500 Miles) by the Proclaimers
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,GIS/Cartography,"Political Science, Data Science",35715,-88.99,45.1686,pepperoni,dog,Yes,early bird,Yes,With Arms Wide Open - Creed
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Other (please provide details below).,"My primary major is Economics.
",and my second major is Data Science.,53715,17.385,78.4867,mushroom,dog,No,no preference,Yes,"Say you won't let go- James Arthur
GASOLINA- Daddy Yankee"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,,53705,1.3521,103.8198,Other,cat,No,no preference,Yes,"Held Up in New York City - Mia Lailani, Devan Ibiza"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Business: Actuarial,,Risk management,53706,39.1333,117.1833,mushroom,cat,No,night owl,Yes,"One of my favorite songs is ""Maroon .45"" by ME3CH."
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Other (please provide details below).,economics,statistics,53706,39.9042,116.4074,mushroom,neither,Yes,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,22,Science: Biology/Life,,,53703,50.0755,14.4378,sausage,dog,Yes,early bird,No,Hundred by Khalid
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53706,37.5665,126.978,sausage,dog,No,early bird,Maybe,Don't look back in anger- Oasis
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Data Science,,Economics,53703,87.6298,41.8781,sausage,dog,No,early bird,Yes,"Franklins Tower, Dead and Company 7/14/2018"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pineapple,dog,Yes,night owl,Maybe,PRIDE. by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Data Science,,,53711,44.5133,-88.0158,sausage,dog,Yes,early bird,No,When the Levee Breaks - Led Zeppelin
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Computer Science,,,53703,43.771,11.2486,pepperoni,dog,Yes,early bird,Yes,Paranoid - Black Sabbath
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Business: Information Systems & Data Science Double Major,N/A,53706,44.5133,-88.0133,sausage,dog,No,early bird,Maybe,Another is Waiting - The Avett Brothers
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Business: Finance,,,53703,41.8781,87.6298,pepperoni,dog,No,night owl,Maybe,rich spirit by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,,Computer Science,,,53705,55.6761,12.5683,pepperoni,dog,No,night owl,Yes,Drunk in the morning - Lukas Graham
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Computer Science,,,53703,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Someday - The Strokes
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Science: Biology/Life,,,53706,32.22,-80.75,pepperoni,dog,Yes,no preference,Maybe,Homegrown by Zac Brown Band
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,41.8781,87.6298,Other,dog,Yes,early bird,Yes,Constellations - Jack Johnson
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,34.0549,118.2426,sausage,dog,Yes,night owl,Yes,"Come On Eileen
By Dexys Midnight Runners "
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,40.7128,74.006,pepperoni,cat,Yes,early bird,Yes,Free Bird - Lynyrd Skynyrd
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53703,40.416,-3.703,pepperoni,dog,Yes,no preference,Maybe,"come as you are, nirvana"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Clarity by Zedd
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics Major ,Data Science Certificate or Minor,53706,22.3964,114.1095,sausage,dog,Yes,night owl,Maybe,The Less I know The Better - Tame Impala
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Engineering: Mechanical,,,53715,44.9778,-93.265,pineapple,dog,Yes,early bird,No,Superposition Daniel Caesar
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Science: Chemistry,,,53706,41.3851,2.1734,basil/spinach,dog,Yes,early bird,No,Don't Stop Believing by Journey
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,59.9115,10.7579,pepperoni,dog,Yes,no preference,Maybe,Apologize - OneRepublic
COMP SCI 319:LEC001,LEC001,23,Science: Other,,,53726,43.0389,-87.9065,sausage,dog,No,early bird,Yes,Homesick - Noah Kahan
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Science: Biology/Life,,,53706,46.7867,92.1005,pineapple,cat,Yes,early bird,Yes,Birdhouse In Your Soul (They Might Be Giants)
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,44,-94,pineapple,dog,Yes,early bird,Maybe,Rick Astley- Never Gonna Give You Up
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Data Science,,,53705,65.6466,-21.643,macaroni/pasta,cat,Yes,no preference,No,Choose Life by Poorstacy
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Computer Science,,,53706,40.7128,-74.006,pineapple,cat,No,early bird,No,Love Story- Taylor Swift
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Mathematics/AMEP,,,53703,,,pepperoni,neither,No,night owl,Yes,"雪distance - Capper
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,17,Data Science,,,53706,51.7692,19.4018,basil/spinach,cat,Yes,night owl,Maybe,Eventually by Tame Impala
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,17,Data Science,,,53706,48.857,2.352,none (just cheese),dog,Yes,night owl,No,Clean by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,My primary major is economics and I will major in Business (Actuarial Science or Accounting).,"As a secondary major, I have an interest in Data Science.",53703,36,127.7,Other,dog,Yes,night owl,Yes,"Vancouver - BIG Naughty
"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,37.9598,-104.8202,mushroom,dog,Yes,night owl,Maybe,Hotel California by the Eagles
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,40.628,14.485,sausage,dog,No,night owl,Yes,No More by Jazzmeia Horn
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,43.4203,-88.1865,none (just cheese),dog,No,early bird,Yes,Style - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,21,Computer Science,,,53703,40.7128,-74.006,mushroom,cat,Yes,night owl,Maybe,"Welcome to New York, Taylor Swift"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,25.2048,55.2708,pineapple,cat,No,night owl,Yes,90210 - Travis Scott
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Science: Biology/Life,,,53706,39.6636,105.8792,basil/spinach,dog,Yes,early bird,No,We'll All Be Here Forever by Noah Kahan
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC001,18,Engineering: Mechanical,,,53706,44.5937,-93.4329,pepperoni,dog,No,no preference,Yes,One Beer - MF DOOM
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,"I'm a Dairy Science major, but am pursuing a Data Science certificate.",,53726,42.36,71.1,sausage,dog,No,night owl,Yes,Secrets by One Republic
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Business: Finance,,Information systems ,53706,3.139,101.6869,none (just cheese),cat,No,no preference,Yes,"Knocking on Heavens Door, Guns n roses"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53703,,,pepperoni,dog,No,early bird,Maybe,This Town's Been Too Good To Us by Dylan Scott
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Engineering: Other,,,53706,44.9608,-89.6302,none (just cheese),dog,Yes,night owl,No,Need a Favor - Jelly Roll
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,21,Engineering: Biomedical,,,53703,32.7765,-79.9311,pepperoni,cat,No,no preference,No,Revival - Zach Bryan
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53706,38.9072,-77.0369,sausage,dog,No,night owl,Yes,White Lies- Max Frost
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Other (please provide details below).,Education Studies,,53703,30.5728,104.0668,mushroom,cat,No,no preference,Maybe,Hindenburg lover-Anson Seabra
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,21,Statistics,,,53715,30,20,pineapple,cat,No,night owl,Yes,hello from adele
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53706,44.3009,-90.9505,none (just cheese),cat,Yes,early bird,No,"All along the watchtower, Jimi Hendrix"
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC005,18,Engineering: Industrial,,,53706,30.3539,97.7702,sausage,cat,Yes,early bird,Maybe,Pink + White by Frank Ocean
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,40.4855,-106.8336,pineapple,neither,No,night owl,Maybe,"Viva La Vida - Coldplay
"
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,"Economics, English",53706,60.3913,5.3221,sausage,dog,Yes,no preference,Yes,Before the Sun - Greg alan isakov
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53703,40.7128,-74.006,basil/spinach,cat,No,early bird,Yes,"Moonlight on The River, Mac Demarco"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Engineering: Biological Systems ,,53703,43.0731,-89.4012,pineapple,dog,Yes,early bird,No,Fast Car by Luke Combs
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,,53706,25.7617,-80.1918,pepperoni,dog,Yes,night owl,Yes,Favorite Song Toosii
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,32,Other (please provide details below).,Consumer Behavior and Marketplace Studies,"Digital Studies, Business Cert for non-business majors",53719,23.1136,-82.3666,Other,dog,No,no preference,Yes,Arctic Monkey’s - Do I wanna Know ( Dua Lipa Cover)
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC003,,Engineering: Industrial,,,53703,36.058,103.79,pineapple,cat,No,night owl,No,<<Love Story>>; Taylor Swift;
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,Spanish,53703,37.3891,-5.9845,basil/spinach,cat,Yes,early bird,No,Everybody wants to rule the world by Tears for fears
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53715,38.6973,-9.4218,pepperoni,dog,No,night owl,Yes,Go Your Own Way - Fleetwood Mac
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,n/a,n/a,53706,42.1491,-84.0202,sausage,dog,Yes,night owl,Yes,TNT by AC DC
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Biomedical,,,53703,35.6895,35.6895,mushroom,dog,No,night owl,Yes,Threat to Joy- Strokes
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,17,Data Science,,I am double majoring in data science and economics.,53706,41.7851,-88.2471,basil/spinach,dog,No,night owl,Yes,Back to December by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Science: Biology/Life,,,53706,44.98,93.27,sausage,cat,Yes,night owl,Yes,Fade Into You - Mazzy Star
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53590,47.9972,7.8538,pepperoni,dog,No,early bird,Maybe,Bohemian Rhapsody - Queen
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Engineering: Biomedical,,,53706,41.9,12.5,Other,neither,Yes,night owl,Maybe,Getaway car
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Engineering: Mechanical,,,53706,45.61,-94.21,basil/spinach,dog,Yes,no preference,No,Everybody Wants to Rule the World - Tears For Fears
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,,Engineering: Mechanical,,,53703,40.4168,3.7038,pepperoni,cat,No,early bird,No,One of then is Find Your Flame by SEGA
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,,53706,35.6895,139.6917,pepperoni,dog,Yes,night owl,Yes,Hotel California - Eagles
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Data Science,,Spanish,53706,46.7828,-92.1055,none (just cheese),dog,Yes,early bird,Yes,Stacy's Mom
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53703,40.7128,-74.006,mushroom,dog,Yes,early bird,No,All my love - Noah Kahan
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Engineering: Industrial,,,53706,32.8262,-117.2642,pineapple,dog,No,night owl,Maybe,"Down Low, Dombresky"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Undecided ,,53706,64.1472,-21.9424,pepperoni,dog,Yes,no preference,Maybe,i by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Economics w data science certificate,,53703,40.7306,-73.9352,pepperoni,dog,Yes,night owl,Yes,Schizo - Travis Scott & Young Thug
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Business: Other,Management & Human Resources,Data Science,53706,10.8231,106.6297,mushroom,dog,No,night owl,Maybe,Flowers - Miley Cyrus
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53534,43.0739,-89.3852,sausage,dog,No,no preference,Yes,All I wanna do-Jay Park
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,41.8781,-87.6298,Other,dog,Yes,no preference,Yes,surf - mac miller
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,23.7142,-166.205,pepperoni,dog,No,night owl,Maybe,Somthing in the Orange (Zack Bryan)
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,N/A,53706,40.5509,14.2429,pepperoni,cat,No,early bird,Yes,"Any Taylor Swift Song, one including Fearless"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Engineering: Mechanical,,,53562,19.0533,-104.3161,macaroni/pasta,dog,No,early bird,Yes,Escape (The Pina Colada Song) - Rupert Holmes
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pineapple,cat,Yes,night owl,Yes,Anything by Taylor Swift (must be Taylor's Version if the album is available)
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Industrial,,Data Science ,55424,21.1743,-86.8466,pineapple,dog,Yes,no preference,Maybe,Some nights - fun.
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Other (please provide details below).,I am a sociology major.,A few minors but no other majors at this point. ,53726,43,-88,green pepper,dog,Yes,night owl,Yes,Natural Mystic - Bob Marley
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Engineering: Industrial,,,53705,34.6819,112.4681,green pepper,neither,No,night owl,Yes,"Komm, süßer Tod (come on sweet death)"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53706,-22.9068,43.1729,Other,dog,Yes,night owl,Yes,Red Red Wine by UB40
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Engineering: Mechanical,,,53711,44.9932,-93.5635,sausage,dog,Yes,night owl,Yes,Chan Chan; Bueno Vista Social Club
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,economics,political science,53715,41.9,12.5,basil/spinach,cat,No,early bird,No,sundress Asap Rocky
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Computer Science,,Mathematics,53703,,,pineapple,cat,No,night owl,Maybe,"Blinding Lights, The Weeknd "
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Science: Biology/Life,,,53706,23.0033,120.2588,none (just cheese),dog,No,no preference,Yes,It's a Kind of Magic - Queen
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,20,Data Science,,,53706,34.4208,-119.6982,pineapple,dog,No,early bird,Yes,Cigarette Daydreams by Cage the Elephant
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,No,night owl,Yes,Can't Tell Me Nothing - Kanye West
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Other (please provide details below).,Political Science,data science,53706,39.2783,-74.5755,sausage,dog,No,night owl,Yes,Goodmorning by bleachers
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC001,19,Other (please provide details below).,A double major in Data Science and Economics,,53706,39.0742,21.8243,sausage,dog,No,no preference,Yes,New Romantics - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Engineering: Mechanical,,,53715,39.9527,-75.164,sausage,dog,Yes,early bird,Yes,Golden Hour- jVke
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,I am also planning to major in Business Management.,53706,35.6528,139.8395,pepperoni,dog,No,night owl,Maybe,"I do not really have a specific favorite song, but my all-time favorite genres are rocks with bands like Queens, The White Stripes, Linkin Park,...But mostly I listen to unlyrical songs like phonk and lofi depending on the mood. "
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,21,Science: Physics,,,53726,43.0731,-89.4012,green pepper,cat,No,night owl,No,Gymnopedie No. 1 - Eric Satie
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.6003,-105.9831,sausage,dog,No,night owl,Yes,Istanbul (Not Constantinople)
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Industrial,,,53715,19.7193,-156.0013,pepperoni,dog,No,night owl,Yes,Cuccurucucù by Franco Battiato
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Other (please provide details below).,Economics,Possibly mathematics,53706,42.3601,-71.0589,macaroni/pasta,dog,No,night owl,Yes,Castle on the Hill by Ed Sheeran
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Other (please provide details below).,Information Science ,Political Science,53715,41.8781,-87.6298,pepperoni,cat,Yes,early bird,No,Both - Tiesto & BIA
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Communication,,53715,45.0557,-92.8101,basil/spinach,dog,No,no preference,Maybe,"Meet me in the morning, Bob Dylan"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53706,35.6067,-220.2139,pepperoni,cat,No,night owl,Yes,24k magic- Bruno Mars
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,,53703,-36.8485,174.7633,pepperoni,cat,No,night owl,Yes,Eastside Banny Blanco
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Business: Actuarial,,,53703,-33.8688,151.2093,pepperoni,dog,Yes,night owl,Yes,I Remember Everything by Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC005,18,Data Science,,,53703,40.7128,74.006,none (just cheese),dog,No,night owl,Yes,Revival by Zach Bryan
COMP SCI 319:LEC002,LEC002,30,Science: Other,Geoscience,,53703,-63.9755,-57.9712,basil/spinach,dog,Yes,early bird,Yes,Un Dia - Juana Molina
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Engineering: Mechanical,na,na,53704,,,sausage,cat,No,early bird,Maybe,
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pepperoni,cat,No,night owl,Yes,No Plan By Hozier
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,23,Computer Science,,,53705,30.2741,120.1551,macaroni/pasta,neither,Yes,no preference,No,soaring-TomLeevis
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53726,18.15,-65.8,sausage,dog,Yes,night owl,Maybe,Its all coming back to me now by Celine Dion
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Biology/Life,,,53715,39.9042,116.4074,sausage,cat,No,night owl,Maybe,"[米津玄師 - アンビリーバーズ , Kenshi Yonezu - Unbelivers] (https://www.youtube.com/watch?v=naJcqMBbAn4)"
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Statistics,,mathematics ,53706,35.86,104.2,sausage,cat,No,no preference,Maybe,Lemon Tree by Fools Garden
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,Mathematics,53706,41.8781,-87.6298,pepperoni,cat,No,no preference,Yes,Kon Queso by MF DOOM
COMP SCI 319:LEC001,LEC001,22,Computer Science,,,53703,45.576,13.8475,pepperoni,dog,No,early bird,No,i dont know
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,35.6895,139.6917,pepperoni,dog,Yes,early bird,Yes,Levels - Sidhu Moosewala
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53703,29.6548,91.1405,green pepper,cat,Yes,early bird,No,Perfect by Ed Sheeran
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics,,53715,64.1472,-21.9424,Other,cat,No,no preference,Maybe,
...|E..
...|...
.S.S...
-----M-
...|...
...|...
M..G...
\ No newline at end of file
restaurant_id,name,x_coord,y_coord
MCD_1,McDonalds,-3,-3
EIN_1,Einsteins Bagels,1,3
STA_1,Starbucks,0,1
MCD_2,McDonalds,2,0
GRE_1,Greenbush Donuts,0,-3
STA_2,Starbucks,-2,1
PAN_1,Panda Express,,
%% Cell type:code id: tags:
``` python
import csv
```
%% Cell type:code id: tags:
``` python
# Warmup 1: Read in the file 'cs220_survey_data.csv' into a lists of lists
# source: Automate the Boring Stuff with Python Ch 12
def process_csv(filename):
exampleFile = open(filename, encoding="utf-8")
exampleReader = csv.reader(exampleFile)
exampleData = list(exampleReader)
exampleFile.close()
return exampleData
survey_csv = process_csv('cs220_survey_data.csv') # change this
# show the length of this list of lists
len(survey_csv)
```
%% Output
1020
%% Cell type:code id: tags:
``` python
# Warmup 2: store the first row in a variable called header
header = survey_csv[0]
header
```
%% Output
['section',
'Lecture',
'Age',
'Primary major',
'Other Primary Major',
'Other majors',
'Zip Code',
'Latitude',
'Longitude',
'Pizza topping',
'Cats or dogs',
'Runner',
'Sleep habit',
'Procrastinator',
'Song']
%% Cell type:code id: tags:
``` python
# Warmup 3: store the rest of the data in a variable called data
data = survey_csv[1:]
```
%% Cell type:code id: tags:
``` python
# Warmup 4: show the last 3 rows of data
data[-3:]
```
%% Output
[['COMP SCI 220:LAB312, COMP SCI 220:LEC001',
'LEC001',
'19',
'Engineering: Biomedical',
'',
'',
'53706',
'35.6895',
'139.6917',
'pepperoni',
'dog',
'Yes',
'early bird',
'Yes',
'Levels - Sidhu Moosewala'],
['COMP SCI 220:LAB314, COMP SCI 220:LEC001',
'LEC001',
'20',
'Engineering: Mechanical',
'',
'',
'53703',
'29.6548',
'91.1405',
'green pepper',
'cat',
'Yes',
'early bird',
'No',
'Perfect by Ed Sheeran\xa0'],
['COMP SCI 220:LAB342, COMP SCI 220:LEC004',
'LEC004',
'20',
'Other (please provide details below).',
'Economics',
'',
'53715',
'64.1472',
'-21.9424',
'Other',
'cat',
'No',
'no preference',
'Maybe',
'']]
%% Cell type:code id: tags:
``` python
# Warmup 5: Write a function that counts the frequency of a value in a column
def count_col_frequency(value, col_name):
''' returns the frequency of value in col_name '''
count = 0
for row in data:
if row[header.index(col_name)] == value:
count += 1
return count
```
%% Cell type:code id: tags:
``` python
#test your function
count_col_frequency("pineapple", "Pizza topping")
```
%% Output
111
%% Cell type:code id: tags:
``` python
# Warmup 6: Think about it: Is there an easy way to count *every* topping frequency?
count_pineapple = count_col_frequency("pineapple", "Pizza topping")
count_basil_spinach = count_col_frequency("basil/spinach", "Pizza topping")
count_sausage = count_col_frequency("sausage", "Pizza topping")
count_pepperoni = count_col_frequency("pepperoni", "Pizza topping")
print(count_pineapple, count_basil_spinach, count_sausage, count_pepperoni)
```
%% Output
111 78 182 341
%% Cell type:markdown id: tags:
# CS220: Lecture 17
## Learning Objectives
After this lecture you will be able to...
- Use correct dictionary syntax
- to create a dictionary using either {} or dict()
- to lookup, insert, update, and pop key/value pairs
- Use a for loop, the in operator, and common methods when working with dictionaries.
- Write code that uses a dictionary
- to store frequencies
- to iterate through all key/value pairs
%% Cell type:markdown id: tags:
As we are getting more sophisticated in this course, its time to define...
### Data Structure <br>
a data structure is a collection of data values, the relationships among them, and the functions or operations that can be applied to the data (Wikipedia)
Python contains built-in Data Structures called Collections. Today you will learn how store data in Dictionaries.
#### Dictionary <br>
A dictionary is like a list, but more general. In a list, the indices have to be integers; but a dictionary they can be any **immutable** type.
You can think of a dictionary as a mapping between a set of indices (which are called keys) and a set of values. Each key maps to a value. The association of a key and a value is called a key-value pair or sometimes an item.
(from Think Python, Chapter 11)
%% Cell type:code id: tags:
``` python
# a dictionary that stores prices of bakery items
# create a dictionary of key/value pairs
# notice the curly brackets
# notice it can span over more than one line, indenting doesn't matter
price_dict = { 'pie': 3.95,
'ala mode':1.50,
'donut': 1.25, 'muffin': 2.25,
'brownie': 3.15,
'cookie': 0.79, 'milk':1.65, 'loaf': 5.99,
'hot dog': 4.99} # feel free to add some of your own here
price_dict
```
%% Output
{'pie': 3.95,
'ala mode': 1.5,
'donut': 1.25,
'muffin': 2.25,
'brownie': 3.15,
'cookie': 0.79,
'milk': 1.65,
'loaf': 5.99,
'hot dog': 4.99}
%% Cell type:code id: tags:
``` python
# print the length of the dictionary
print(len(price_dict)) # number of key/value pairs
#get the price for a certain item
print(price_dict['loaf']) # name of dict [ key]
#get the price for donut
print(price_dict['donut'])
# what's wrong with this line?
print(price_dict[1.25])
```
%% Output
9
5.99
1.25
---------------------------------------------------------------------------
KeyError Traceback (most recent call last)
Cell In[10], line 11
8 print(price_dict['donut'])
10 # what's wrong with this line?
---> 11 print(price_dict[1.25])
KeyError: 1.25
%% Cell type:markdown id: tags:
### Dictionaries are Mutable
%% Cell type:code id: tags:
``` python
# add a new key/value pair using [ ] notation
price_dict['rice_chex'] = 6.99
price_dict
```
%% Output
{'pie': 3.95,
'ala mode': 1.5,
'donut': 1.25,
'muffin': 2.25,
'brownie': 3.15,
'cookie': 0.79,
'milk': 1.65,
'loaf': 5.99,
'hot dog': 4.99,
'rice_chex': 6.99}
%% Cell type:code id: tags:
``` python
# change the value associated with a key....syntax is like add
price_dict['loaf'] = 1.99
price_dict
```
%% Output
{'pie': 3.95,
'ala mode': 1.5,
'donut': 1.25,
'muffin': 2.25,
'brownie': 3.15,
'cookie': 0.79,
'milk': 1.65,
'loaf': 1.99,
'hot dog': 4.99,
'rice_chex': 6.99}
%% Cell type:code id: tags:
``` python
# use pop to delete a key/value pair
price_dict.pop('hot dog') # or del(price_dict['hot dog'])
price_dict
```
%% Output
{'pie': 3.95,
'ala mode': 1.5,
'donut': 1.25,
'muffin': 2.25,
'brownie': 3.15,
'cookie': 0.79,
'milk': 1.65,
'loaf': 1.99,
'rice_chex': 6.99}
%% Cell type:code id: tags:
``` python
# delete another key/value pair
price_dict.pop('ala mode')
price_dict
```
%% Output
{'pie': 3.95,
'donut': 1.25,
'muffin': 2.25,
'brownie': 3.15,
'cookie': 0.79,
'milk': 1.65,
'loaf': 1.99,
'rice_chex': 6.99}
%% Cell type:code id: tags:
``` python
# try deleting something that is not there
price_dict.pop('pizza')
price_dict
```
%% Output
---------------------------------------------------------------------------
KeyError Traceback (most recent call last)
Cell In[15], line 2
1 # try deleting something that is not there
----> 2 price_dict.pop('pizza')
3 price_dict
KeyError: 'pizza'
%% Cell type:code id: tags:
``` python
# fix this with an if statement
if 'pizza' in price_dict:
price_dict.pop('pizza')
price_dict
```
%% Output
{'pie': 3.95,
'donut': 1.25,
'muffin': 2.25,
'brownie': 3.15,
'cookie': 0.79,
'milk': 1.65,
'loaf': 1.99,
'rice_chex': 6.99}
%% Cell type:code id: tags:
``` python
# get all keys and convert to a list
keys = list(price_dict.keys())
keys
```
%% Output
['pie', 'donut', 'muffin', 'brownie', 'cookie', 'milk', 'loaf', 'rice_chex']
%% Cell type:code id: tags:
``` python
# get all values and convert to a list
values = list(price_dict.values())
values
```
%% Output
[3.95, 1.25, 2.25, 3.15, 0.79, 1.65, 1.99, 6.99]
%% Cell type:code id: tags:
``` python
# use 'in' price_dict, price_dict.keys(), price_dict.values()
print(price_dict)
print('donut' in price_dict) # default is to check the keys
print(3.95 in price_dict) # default is NOT values
print('muffin' in price_dict.keys()) # can call out the keys
print(1.25 in price_dict.values()) # can check the values
```
%% Output
{'pie': 3.95, 'donut': 1.25, 'muffin': 2.25, 'brownie': 3.15, 'cookie': 0.79, 'milk': 1.65, 'loaf': 1.99, 'rice_chex': 6.99}
True
False
True
True
%% Cell type:markdown id: tags:
## Applications
%% Cell type:code id: tags:
``` python
# Example 1: given a list of items, find the total cost of the order
order = ['pie', 'donut', 'milk', 'cookie', 'tofu'] # add more items to the order
print(order)
print(price_dict)
total_cost = 0
for item in order:
if item in price_dict:
total_cost += price_dict[item]
else:
print("Could not find", item)
# find the total of the items in the order
print ("Your total is ${:.2f}".format(total_cost))
```
%% Output
['pie', 'donut', 'milk', 'cookie', 'tofu']
{'pie': 3.95, 'donut': 1.25, 'muffin': 2.25, 'brownie': 3.15, 'cookie': 0.79, 'milk': 1.65, 'loaf': 1.99, 'rice_chex': 6.99}
Could not find tofu
Your total is $7.64
%% Cell type:code id: tags:
``` python
# Example 2a: find the frequency of characters in a sentence
# start with an empty dictionary
letter_freq = {}
# letter_freq = dict() # other way
sentence = "A data structure is a collection of data values, the relationships among them, and the functions or operations that can be applied to the data."
for letter in sentence:
low_letter = letter.lower()
if not low_letter in letter_freq:
letter_freq[low_letter] = 0
letter_freq[low_letter] += 1
letter_freq
```
%% Output
{'a': 16,
' ': 24,
'd': 5,
't': 16,
's': 7,
'r': 5,
'u': 4,
'c': 5,
'e': 11,
'i': 7,
'o': 10,
'l': 5,
'n': 8,
'f': 2,
'v': 1,
',': 2,
'h': 6,
'p': 4,
'm': 2,
'g': 1,
'b': 1,
'.': 1}
%% Cell type:code id: tags:
``` python
# Example 2b: find the letter that occurred the most
# HINT: Use the dictionary above.
most_used_key = None
max_usage = 0
for current_key in letter_freq:
current_usage = letter_freq[current_key]
if current_usage > max_usage and current_key.isalpha():
most_used_key = current_key
max_usage = current_usage
print("The character {} appeared {} times".format(str(most_used_key), max_usage))
```
%% Output
The character a appeared 16 times
%% Cell type:code id: tags:
``` python
# think about it... why not use for i in range?
for i in range (len(letter_freq)):
print (i) # how is this useful in a dictionary -- it's not!
```
%% Output
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%% Cell type:code id: tags:
``` python
# Recall: survey data
data[-1]
```
%% Output
['COMP SCI 220:LAB342, COMP SCI 220:LEC004',
'LEC004',
'20',
'Other (please provide details below).',
'Economics',
'',
'53715',
'64.1472',
'-21.9424',
'Other',
'cat',
'No',
'no preference',
'Maybe',
'']
%% Cell type:code id: tags:
``` python
# Example 3a. Same as 2a, but use the survey_data
major_freq = {} # another way to make a dictionary
for i in range(len(data)):
current_major = data[i][header.index('Primary major')]
if not current_major in major_freq:
major_freq[current_major] = 0
major_freq[current_major] += 1
major_freq
```
%% Output
{'Other (please provide details below).': 178,
'Engineering: Biomedical': 46,
'Computer Science': 77,
'Engineering: Other': 30,
'Data Science': 179,
'Mathematics/AMEP': 28,
'Engineering: Mechanical': 203,
'Business: Information Systems': 25,
'Statistics': 21,
'Business: Finance': 44,
'Science: Biology/Life': 32,
'Science: Other': 32,
'Business: Other': 25,
'Engineering: Industrial': 66,
'Science: Chemistry': 4,
'Science: Physics': 10,
'Business: Actuarial': 17,
'Languages': 2}
%% Cell type:code id: tags:
``` python
# Example 3b: use the algorithm from 2b to find the major with the highest frequency
# find the frequency of each major
most_used_key = None
max_value = 0
for current_key in major_freq:
current_usage = major_freq[current_key]
if current_usage > max_value:
most_used_key = current_key
max_value = current_usage
print("The major {} appeared {} times".format(str(most_used_key), max_value))
```
%% Output
The major Engineering: Mechanical appeared 203 times
%% Cell type:markdown id: tags:
### After Lecture Practice
%% Cell type:code id: tags:
``` python
# 1. Read the slides to learn how dictionaries relate to lists and sets.
```
%% Cell type:code id: tags:
``` python
# 2. Review this summary of common dictionary methods...you should know these
# https://www.w3schools.com/python/python_ref_dictionary.asp
```
Source diff could not be displayed: it is too large. Options to address this: view the blob.
section,Lecture,Age,Primary major,Other Primary Major,Other majors,Zip Code,Latitude,Longitude,Pizza topping,Cats or dogs,Runner,Sleep habit,Procrastinator,Song
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Other (please provide details below).,Atmospheric and Oceanic Science,,53703,44.256,-88.409,basil/spinach,cat,No,early bird,Yes,Kanye
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53711,51.5072,-0.1257,Other,dog,No,night owl,Yes,Eyes Closed by Ed Sheeran
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Computer Science,,,53703,37.7749,-122.4194,pineapple,dog,Yes,night owl,Yes,Eight - IU
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Engineering: Other,Engineering Undecided,,53706,44.9241,-93.3474,pineapple,dog,Yes,no preference,No,"Feathered Indians, Tyler Childers"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,,Data Science,,,53715,40.7128,-74.006,sausage,dog,Yes,early bird,Yes,Post malone -overdrive
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,No secondary majors ,53715,51.5072,0.1276,pepperoni,dog,Yes,night owl,Yes,No Role Modelz - J. Cole
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,17,Mathematics/AMEP,,Computer Science,53706,19.076,72.8777,pepperoni,dog,Yes,early bird,Maybe,Do Not Disturb - Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,,Engineering: Mechanical,,,53706,37.5683,157.3409,none (just cheese),cat,Yes,night owl,Yes,
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics ,,53706,44.5133,88.0133,sausage,cat,No,night owl,Yes,"Pyro
Kings of Leon"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Other (please provide details below).,Global Health,,53706,40.7128,-74.006,none (just cheese),dog,Yes,no preference,Maybe,everywhere by fleetwood mac
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Information Systems,,,54601,25.7617,-80.1918,mushroom,cat,No,night owl,Yes,bando playboy carti
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53703,43.0658,-87.9671,none (just cheese),dog,No,early bird,Yes,Today was a good day by Ice Cube
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Statistics,,data science,53703,43.0766,-89.3972,pineapple,dog,Yes,night owl,Yes,Nikes on my feet - Mac Miller
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,,,53558,45.0854,93.0081,pepperoni,dog,Yes,no preference,Yes,Last Night - Morgan Waller
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Business: Finance,,,53706,28.3852,-81.5639,pepperoni,dog,Yes,night owl,Yes,Paradise -- Coldplay
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Science: Biology/Life,,Data Science,53706,32.0809,-81.0912,sausage,cat,Yes,no preference,Yes,Cupid de Locke - the Smashing Pumpkins
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Data Science,,,53716,77.82,86.48,pepperoni,dog,No,early bird,Yes,"Violent crimes
Kanye west"
COMP SCI 319:LEC002,LEC002,28,Engineering: Other,,,53703,24.8801,102.8329,pepperoni,neither,Yes,night owl,Yes,No,I hardly listen to music.
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Other (please provide details below).,Atmospheric and Oceanic Sciences ,Journalism ,53706,48.8566,2.3522,Other,dog,No,night owl,Maybe,"Dancing Queen
By Abba "
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Business: Finance,N/A,N/A,53703,25.7,-80.2,pepperoni,dog,No,no preference,Yes,All Me by Drake
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,,Computer Science,,,53704,0,0,sausage,cat,No,night owl,Maybe,WYS - Snowman
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Science: Other,,,53703,43.0833,-89.3725,basil/spinach,dog,Yes,early bird,Yes,Fly Love by Jamie Foxx
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,,Engineering: Mechanical,,,53706,33.3062,111.8413,mushroom,cat,No,night owl,Yes,Nerves by DPR Ian
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,,Computer Science,,,53726,35.6528,139.8395,mushroom,dog,No,night owl,No,Us by milet
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,"Comp sci, certificate in economic analytics",53715,39.7392,-104.9903,pineapple,dog,Yes,night owl,Yes,Everlong - Foo Fighters
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,BS Art,,53593,37.5665,126.978,pepperoni,cat,No,night owl,Yes,Mariah Carey - All I Want for Christmas Is You
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,43.07,-89.4,pineapple,dog,No,night owl,Yes,Vienna by Billy Joel
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Other,,,53175,42.8646,-88.3332,pepperoni,dog,Yes,night owl,Yes,Temperature by Sean Paul
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Computer Science,,Mathematics,53706,47.6081,-122.0117,pepperoni,cat,No,night owl,Yes,"Fly High!!, Burnout Syndrome "
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Engineering: Mechanical,,,53703,34,5,sausage,dog,No,night owl,Yes,say so - doja cat
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,21,Business: Information Systems,,,53715,47,86,pepperoni,dog,Yes,no preference,Yes,7 Years - Lukas Graham
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,,Business: Information Systems,information science,,53715,29.4393,106.4556,sausage,dog,Yes,early bird,No,love story
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,20,Business: Other,,Sociology,53703,43.07,-89.4,sausage,neither,Yes,night owl,Maybe,Cudi Zone- Kid Cudi
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Data Science,,,53706,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Peppas - Farruko
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,38258,46.3131,-91.4905,sausage,dog,Yes,night owl,Yes,No Remorse Metalica
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Data Science,,,53703,3.2028,73.2207,pepperoni,dog,Yes,night owl,Yes,"Rich Men North of Richmond
Oliver Anthony"
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,21,Engineering: Mechanical,,,53715,44.9778,-93.265,pepperoni,dog,Yes,no preference,Yes,"Never Gonna Give You Up -Rick Astley
"
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,1134,40.4111,-105.6413,pepperoni,dog,No,night owl,Yes,Out of Touch by Daryl Hall and John Oats
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Computer Science,,Public Health and Policy,53706,37.5,126.9,basil/spinach,cat,No,night owl,No,No One Else Like You(Adam Levine)
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Data Science,,,53703,41.9028,12.4964,pepperoni,dog,No,night owl,Yes,Pursuit of Happiness by Kid Cudi
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,,Engineering: Mechanical,,,53703,12.957,77.401,macaroni/pasta,dog,Yes,night owl,Yes,Out of Touch by Hall and Oates
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,44.5133,-88.0133,pepperoni,dog,No,night owl,Yes,Where the Boat Leaves From By Zac Brown Band
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Other,bme,,53715,42.3601,71.0589,pepperoni,dog,No,no preference,Maybe,noah kahan - mess
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Engineering: Mechanical,,,53703,39.0476,-77.132,pepperoni,dog,Yes,night owl,Yes,
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Other (please provide details below).,"Econ with math emphasis (photography certificate)
",,53703,-41.2865,174.7762,pineapple,neither,Yes,no preference,Maybe,None.
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pepperoni,dog,No,night owl,No,
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,40.7128,-74.006,pepperoni,dog,No,night owl,Maybe,Sultans of Swing - Dire Straits
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,45.3733,84.9553,macaroni/pasta,dog,Yes,night owl,Yes,kimdracula - deftones
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,21,Other (please provide details below).,My primary major is Economics.,I'm planning to get data science certificate.,53715,37.5665,126.978,sausage,dog,Yes,night owl,Maybe,Dandelions - Ruth B.
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,40.7,-74,pepperoni,dog,No,no preference,Maybe,I don't really have a favorite song.
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,Consumer behavior and marketplace studies.,,53715,44.9778,-93.265,pineapple,cat,Yes,early bird,Maybe,Love Story - Taylor Swift
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,,Data Science,,,53706,41.8781,87.6298,pepperoni,cat,No,night owl,Yes,Bright Size Life by Pat Metheny
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Data Science,,I am considering majoring in Genetics as well,53706,45.6378,-89.4113,Other,dog,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,,53726,43.0731,-89.4012,sausage,dog,Yes,early bird,Yes,Young Girls - Bruno Mars
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,,Engineering: Mechanical,,,53711,,,pepperoni,cat,Yes,no preference,Maybe,"""Wont Back Down""
-Tom Petty"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,Genetics,Data science,53706,42.0262,-88.0697,pineapple,dog,No,night owl,Yes,Merrry-Go-Round of life by joe Hisaishi
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,53715,37.5665,126.978,basil/spinach,dog,No,no preference,No,"""a lot"" by 21 savage"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53705,31.2244,121.4692,pepperoni,cat,No,night owl,Yes,ハゼ馳せる果てるまで by ずっと真夜中でいいのに
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Biomedical,,i’m considering a double major in economics or political science ,53703,48.8566,2.3522,basil/spinach,cat,No,no preference,Yes,alien superstar by beyoncé
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,23,Mathematics/AMEP,N/A,Certificate in Data Science,53703,19.4326,-99.1332,pepperoni,dog,Yes,early bird,Maybe,Runaway by Kanye West (Fyi: it’s a 10 min song)
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Data Science,,,53706,47.6062,-122.3321,pineapple,cat,No,night owl,Yes,you belong with me by taylor swift
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Industrial,,,53706,38.752,48.8466,pepperoni,cat,No,early bird,Maybe,Kerosene -Crystal Castles
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Economics and Psychology ,Possibly a Data science minor ,53703,40.4406,-79.9959,sausage,dog,No,early bird,Maybe,Wonderwall - Oasis
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Mathematics/AMEP,,Mathematics and Economics,53703,86.9212,40.4237,mushroom,cat,No,early bird,Maybe,Christmas List by Anson Seabra
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53708,42.3611,-71.0571,Other,dog,No,night owl,Yes,Sultans of Swing by Dire Straits
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Science: Chemistry,,None,53715,37.5683,126.9978,sausage,dog,No,night owl,Yes,Under the bridge - Red Hot Chili Peppers
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics,Data science. ,53703,36.6769,117.1201,sausage,dog,No,night owl,Yes,Heat waves by Glass Animals
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pepperoni,dog,No,night owl,Yes,Hey ya- outkast
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Engineering: Mechanical,,,53704,44.5133,-88.0133,pepperoni,cat,No,early bird,Yes,The adults are talking-The strokes
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,Statistics,53706,24.5551,-81.78,pepperoni,neither,Yes,no preference,No,Circles- bangers only & fawlin
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,45.4408,12.3155,pepperoni,dog,Yes,night owl,Yes,"Upside Down, Jack Johnson"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,21,Data Science,,Secondary major: Computer Science,53711,35.6528,139.8395,sausage,cat,Yes,night owl,Yes,Mayonaka no Door / Stay With Me
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economics ,maybe data science,53703,25.2048,55.2708,mushroom,cat,Yes,night owl,Maybe,"Dancing with A Stranger
Sam Smith and Normani
"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Other (please provide details below).,Pre-business.,Want to do Computer Science as my secondary major.,53718,39.9042,116.4074,pepperoni,cat,Yes,night owl,Maybe,Lose Yourself - Eminem
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,,Science: Other,Zoology ,Conservation Biology ,53706,43.0731,-89.4012,none (just cheese),cat,No,night owl,Yes,The Fall- Lovejoy
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Economics,"French, International Studies",53715,43,89.4,sausage,dog,Yes,night owl,Yes,"Tiny Dancer, Elton John"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,22,Data Science,,,53715,37.5665,126.978,pepperoni,dog,Yes,night owl,Yes,My favorite song is Hate you by Yerin Baek.
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53715,47.6062,-122.3321,pepperoni,dog,No,night owl,Maybe,"it changes often, through many genres, but currently,
Aaron Hibell - destroyer of worlds (oppenheimer trance edit)
"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC001,21,Other (please provide details below).,Economics ,Data Science,53703,0.8035,90.0425,pineapple,dog,No,night owl,Yes,Lifestyles of the Rich and Famous by Good Charlotte
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Engineering: Other,Computer Engineering,NA,53715,39.795,-74.7773,pepperoni,dog,Yes,night owl,Yes,NA
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Business: Finance,,,53706,45.4647,9.1885,sausage,dog,Yes,early bird,Maybe,Drake-Passionfruit
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,I'm a Computer Science Major. ,I'm a Data science Major.,53706,42.2475,-84.4089,Other,dog,No,no preference,Maybe,Just like me by A boogie wit da hoodie.
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,,Engineering: Mechanical,,,53706,40.7128,-74.006,pepperoni,cat,No,night owl,Yes,Love Lost - Mac Miller
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Other (please provide details below).,,"Data Science, Mathematics",53706,39.4822,-106.0462,pepperoni,dog,Yes,early bird,Yes,"Keep Your Head Up
by Andy Grammar"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Other (please provide details below).,Economics,,53073,60.3913,5.3221,pepperoni,cat,No,night owl,No,Iron Lung - King Gizzard and the Lizard Wizard
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Other (please provide details below).,Econ Major ,,53703,43.0731,-89.4012,sausage,dog,No,night owl,Yes,Follow God by Kayne West
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Engineering: Mechanical,,,53076,43.7696,11.2558,Other,dog,No,no preference,Maybe,The Difference -Flume
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Information Science.,Economics.,53703,43.0731,-89.4012,Other,cat,Yes,night owl,Yes,GEEKED N BLESSED by LUCKI
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Other (please provide details below).,Journalism,,53715,41.3874,2.1686,none (just cheese),cat,Yes,night owl,Yes,revival zach bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,Economics and certificate in Data Science ,,53703,23.2494,106.4111,pineapple,dog,No,night owl,Maybe,Sketzo by Travis Scott and Young Thug
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Business: Finance,Finance,data science,53705,200,116,mushroom,cat,Yes,night owl,Yes,Who am I- why don't we
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Mathematics/AMEP,,,53706,43.0731,-89.4012,sausage,dog,Yes,night owl,Yes,Runaway- Kanye
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,21,Business: Other,Pass,Pass,53705,40.7128,-74.006,green pepper,cat,Yes,night owl,Yes,"""Steal the show"", by Lauv
"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Computer Science,,,53706,25.7617,-80.1918,sausage,dog,No,no preference,Maybe,Bank Account - 21 Savage
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53703,-23.5505,-46.6333,Other,cat,Yes,night owl,Yes,"Violent Crimes - Kanye West
ps: Not a fan at all of him as a person, but huge fan of his work."
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,Computer Science,53706,50,21,sausage,cat,Yes,night owl,Maybe,Symphony No. 9 by Ludwig van Beethoven
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,42.7261,-87.7895,pepperoni,dog,No,no preference,Yes,Margaritaville by Jimmy Buffett
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Biomedical,,,53706,26.1242,-80.1436,basil/spinach,cat,No,no preference,Yes,"Wash it all away, Five Finger Death Punch"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Data Science,,,53703,42.1281,-88.0937,pineapple,dog,No,night owl,Yes,Thunderstruck AC/DC
COMP SCI 319:LEC004,LEC004,23,Other (please provide details below).,Economics,No,53703,30.5728,104.0668,pineapple,cat,No,early bird,Yes,蓝雨 -- Jacky Cheung
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53711,31.5879,120.2127,pineapple,neither,No,night owl,Maybe,"Samudrartha and Wildfire by HOYO-MiX
Watchtower of the East by Quadimension "
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Mechanical,,,53706,35.2401,24.8093,pepperoni,cat,Yes,night owl,No,The Seventh Sense by NCT U
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,21,Engineering: Biomedical,,,53703,43.0128,-88.2351,sausage,dog,No,night owl,Yes,Hannah Montana by the Migos
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Business: Finance,,,53703,41.3874,2.1686,pepperoni,dog,Yes,night owl,Yes,Your love - Sosa UK
COMP SCI 319:LEC001,LEC001,29,Science: Physics,,,53715,40.7128,-74.006,sausage,dog,Yes,no preference,Yes,"Beat it, Michael Jackson"
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Engineering: Other,,,53706,43.6532,-79.3832,pepperoni,dog,No,night owl,Maybe,Killer Queen - Queen
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,Computer Science,53706,41.8781,87.6298,pineapple,dog,No,night owl,No,Shampoo Bottles - Peach Pit
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,21,Mathematics/AMEP,,,53706,30.5928,114.305,none (just cheese),cat,No,night owl,Yes,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,Communication Arts,53706,52.7107,-8.879,Other,dog,No,night owl,Yes,Boomerang by Summer Set
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Atmospheric and Oceanic Science,,53703,64,21,green pepper,dog,No,no preference,No,
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Statistics,,Still deciding between math or data science,53703,,,pepperoni,cat,No,no preference,No,Mandy by Barry Manilow
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economics,,53726,22.5431,114.0579,mushroom,dog,No,early bird,Maybe,Forever Young; Blackpink
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC002,20,Engineering: Mechanical,,,53706,41.8781,87.6298,pineapple,dog,Yes,early bird,Maybe,"""Peg"" - Steely Dan
"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,Data Science ,Economics,53703,12.9,77.5,sausage,neither,Yes,night owl,Maybe,Metallica - Enter Sandman
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Engineering: Industrial,,,73506,8.538,-80.7821,none (just cheese),dog,No,no preference,Maybe,"Como has estau? -Mora
Quevedo - Quevedo
Yankee- quevedo"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Engineering: Industrial,,Data Science,53719,55.7558,37.6173,pineapple,cat,No,night owl,Yes,Cate's Brother by Maisie Peters
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53715,47.9031,-91.8565,pineapple,cat,Yes,night owl,Yes,Kiss Me - Sixpence None The Richer
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Mechanical,Mechanical Engineering,,53706,19.076,72.8777,none (just cheese),dog,No,no preference,Maybe,This Side of Paradise - Coyote Theory
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,21,Business: Other,Econ,,53703,41,-73.6,Other,dog,Yes,night owl,Yes,Sunflower seeds by bryce vine
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,25,Other (please provide details below).,Economics,,53703,35,129,Other,dog,No,night owl,Maybe,Not today - bts
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Business: Actuarial,,Math,53703,22.5431,114.0579,sausage,dog,No,night owl,Maybe,"All We Know
The Chainsmokers"
COMP SCI 319:LEC001,LEC001,26,Business: Other,MBA specializing in tech strategy and product management ,,53558,41.0082,28.9784,basil/spinach,cat,No,night owl,Yes,"Tears in the Rain, The Weeknd "
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Mathematics/AMEP,,,53703,40.6541,109.8201,sausage,cat,No,night owl,Yes,Yellow - Coldplay
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,,53706,35.0568,118.3406,Other,cat,No,night owl,Yes,"Common Jasmin Orange by Jay Chou
it's a Chinese song, so you probably can't understand the lyrics"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Biomedical,,,53703,46.7828,-92.1055,sausage,cat,Yes,night owl,Yes,I'm Just Ken by Ryan Gosling
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Business: Finance,N/A,Comp Sci ,53703,43.0731,-89.4012,pineapple,dog,Yes,no preference,No,Don't go breaking my heart - Elton John
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Industrial,,,53719,43.0731,-89.4012,pepperoni,cat,Yes,night owl,Yes,Pride by Kendrick Lamar
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53715,31.2304,121.4737,green pepper,cat,No,night owl,Yes,Talking to the Moon--Bruno Mars
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,23,Other (please provide details below).,consumer science,i don't have,53703,31.2304,121.4737,mushroom,neither,Yes,early bird,Yes,hero Mariah Carey
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Business: Other,,,53706,13.7563,100.5018,pepperoni,dog,No,night owl,Maybe,Die for you by the Weeknd
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,,Engineering: Biomedical,,,53706,37.5665,126.978,pepperoni,cat,Yes,night owl,Yes,You give love a bad name - Bon Jovi
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,21,Business: Finance,,RMI,53703,48.8566,2.3522,pepperoni,cat,No,no preference,Yes,Get out off town - Anita O'day
COMP SCI 319:LEC002,LEC002,,Science: Other,,,53703,49,-123,pepperoni,neither,No,night owl,Yes,Whatever :)
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Computer Science,,,537061127,36.1627,-86.7816,sausage,dog,No,no preference,Yes,Runnin' With the Devil - EVH
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Other (please provide details below).,Economics,Math,53703,43.0969,-89.5115,pepperoni,dog,No,early bird,Yes,Homemade - Jake Owen
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,,1000,48.8566,2.3522,pepperoni,neither,No,no preference,Maybe,"Imagine Dragons, Radioactive."
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Business: Other,,,53715,44.2134,-88.5018,pepperoni,dog,No,no preference,Yes,3005 - Childish Gambino
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Mechanical,,,53216,20.8854,-156.6653,pepperoni,neither,No,no preference,No,
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Business: Information Systems,,,53715,40.71,-74,pineapple,cat,No,night owl,Yes,Japanese Denim by Daniel Caesar
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53715,14.5995,120.9842,pepperoni,dog,Yes,night owl,No,Cherry Wine- Grent Perez
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Computer Science,,,53706,85.8398,10.2985,mushroom,dog,No,night owl,Maybe,"""Streems"" by The Symposium"
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Statistics,"I'm double majoring in mathematics and statistics; I hope to do research in some sort of applied probability theory after graduating (e.g. econometrics, mathematical biology, etc.)",n/a,53726,,,pepperoni,cat,Yes,early bird,No,"How Much a Dollar Cost, by Kendrick Lamar"
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,business,53715,27.4967,-82.6948,pepperoni,dog,No,early bird,No,Jimmy Cooks - Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Data Science,I am doing eco and plan to get a ds certificate,no,53703,39.9042,116.4074,Other,neither,No,early bird,No,''Capital''by Lo Ta-you
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Engineering: Mechanical,,,53726,41.8781,-87.6298,sausage,cat,Yes,night owl,Maybe,Shiva - Spillage Village & JID
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,35.9594,-83.9196,pepperoni,dog,Yes,early bird,No,Talkin' Tennessee by Morgan Wallen
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53706,44.5667,-92.5343,pepperoni,dog,No,night owl,Yes,street dreams by nas
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Business: Other,,,53703,37.7749,-122.4194,mushroom,dog,No,night owl,Yes,"Take it Easy - The Eagles
Otherside - Red Hot Chili Peppers"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Other (please provide details below).,Global Health,N/A,53706,42.3601,71.0589,basil/spinach,dog,Yes,night owl,Maybe,Somewhere Only We Know by Keane
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics,,53703,42.3314,-83.0458,sausage,dog,Yes,no preference,No,"Life Goes On - Lil Baby, Lil Uzi Vert, Gunna"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,"Biomechanics focus, Dance Certificate",53715,36.1627,-86.7816,pepperoni,dog,No,night owl,Maybe,"No specific songs but I love Elton John, Queen, Noah Kahan"
COMP SCI 319:LEC003,LEC003,22,Science: Biology/Life,,,53703,43.07,-89.38,mushroom,dog,No,early bird,No,Swimming Horses by Siouxsie and the Banshees
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,22,Statistics,,,53706,22.5431,114.0579,sausage,dog,Yes,no preference,Maybe,I Want My Tears Back--Nightwish
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Data Science,,Physics,53706,27.7172,85.3239,sausage,dog,Yes,early bird,No,Hall of fame
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,Economics,53706,48.8647,2.349,pepperoni,dog,Yes,night owl,Yes,Let It Happen - Tame Impala
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Business: Finance,,Data Science,53706,41.8781,-87.6298,basil/spinach,cat,No,night owl,Yes,LOYALTY FT. RIHANNA - KENDRICK LAMAR
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Other (please provide details below).,,,53706,41.9028,12.4964,Other,neither,No,no preference,Yes,Danza Kuduro - Don Omar
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Statistics,,,53706,47.3769,8.5417,mushroom,dog,No,no preference,Maybe,Blue Jay Way by the Beatles
COMP SCI 319:LEC002,LEC002,22,Business: Finance,,,53715,35,36,sausage,dog,No,early bird,Yes,TALLY BLACKPINK
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Mathematics/AMEP,,Data Sciene,53706,43.0707,-89.4142,sausage,dog,Yes,night owl,No,Build me up Buttercup- The foundations
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,23,Mathematics/AMEP,,,53703,34.34,108.93,mushroom,cat,Yes,early bird,Yes,The name is Super Gremlin. Artist is Kodak Black.
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Science: Other,,,537061127,3.139,101.6869,sausage,dog,Yes,no preference,Yes,Edge of Desire - John Mayer
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Data Science,,,53562,44.5004,-88.0613,pepperoni,dog,Yes,no preference,Maybe,
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Business: Finance,,,53703,41.8842,-87.6324,sausage,dog,No,early bird,Maybe,"Stayin Alive, Drake and DJ Khalid"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,56.4907,-4.2026,mushroom,dog,No,early bird,Maybe,Maroon by Taylor swift
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,was provided,German (maybe),53726,48.1351,11.582,pepperoni,dog,No,night owl,Yes,You Proof - Morgan Wallen
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,pepperoni,dog,No,night owl,Maybe,Springsteen - Eric Church
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,36.3932,25.4615,basil/spinach,dog,No,night owl,Yes,Mercy Now by Mary Gauthier
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC001,21,Business: Information Systems,,Data science ,53715,30.2667,-97.7333,pepperoni,dog,Yes,early bird,Yes,Hey driver Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC004,21,Business: Other,,,53703,41.3851,2.1734,pepperoni,dog,Yes,night owl,Yes,I remember by Zach Bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Mechanical,,,53715,44.0999,9.7382,pineapple,dog,No,no preference,No,Bury Me in Georgia by Kane Brown
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Business: Finance,Finance,,53726,35.6895,139.6917,sausage,cat,No,night owl,Yes,Mona Lisas and mad hatters by elton john
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53706,38,-77,Other,dog,No,night owl,Yes,dont stop believing
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53703,40.78,-73.97,none (just cheese),dog,No,night owl,Yes,"Replay by Iyaz
"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Computer Science,,,53715,43.0731,-89.4012,sausage,neither,No,no preference,Yes,Cream Soda - EXO
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC001,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,Yes,night owl,Yes,Beast of Burden - The Rolling Stones
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53715,40.7128,-74.006,pepperoni,cat,Yes,early bird,Maybe,Upside down- Jack Johnson
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Statistics,,computer science ,53706,40.7128,-74.006,pineapple,dog,Yes,early bird,No,The greatest show man
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Industrial,,,53715,41.8781,87.6298,sausage,cat,Yes,night owl,Yes,Ghost Town-Kanye West
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,sausage,dog,No,night owl,Maybe,Money by Pink Floyd
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,,Business: Information Systems,,,53703,36.107,-112.113,pepperoni,cat,Yes,night owl,Maybe,"Blinding lights, the weeknd"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Engineering: Mechanical,,,53703,44.9591,-89.6343,green pepper,dog,Yes,night owl,Yes,any wheeler walker junior song
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Engineering: Industrial,"
",,53711,43.0731,89.4012,pepperoni,cat,Yes,early bird,No,I will wait by mumford and sons
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,finance,53706,41.8781,87.6298,sausage,dog,No,night owl,Yes,"La Cancion, Bad Bunny and J Balvin"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,My primary major is Economics ,Informations Systems,53703,33.8812,-118.4072,sausage,dog,No,night owl,Yes,Lakeshore Drive Aloitta Haynes Jeramiah
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Other (please provide details below).,Economics,,53703,41.88,-87.63,mushroom,cat,Yes,night owl,Yes,"Everything She Aint, Hailey Whitters"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,23,Other (please provide details below).,Econ,no,53703,43.0731,-89.4012,mushroom,dog,No,night owl,Maybe,In the night gardeen
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Computer Science,,math,53715,,,mushroom,dog,No,night owl,Maybe,bones
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Mathematics/AMEP,\,"Economics major, Data Science certificate",53703,39.8954,116.3946,none (just cheese),cat,Yes,no preference,Maybe,no preference
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Engineering: Biomedical,,,53715,48.8566,2.3522,sausage,neither,No,night owl,Yes,ETA - New Jeans
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,economics ,"Data science
",53703,33.6188,-117.8566,pepperoni,dog,No,night owl,Maybe,"Heartache on the dance floor - jon pardi
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53703,39.9042,116.4074,mushroom,dog,No,night owl,Yes,Gone-Nelly/Kelly
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Data Science,,Statistics,53715,35.414,-79.0933,Other,dog,Yes,night owl,Yes,Revival - Zach bryan
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,21,Engineering: Other,Material Science and Engineering,.,53703,51.2094,3.2252,pineapple,dog,No,early bird,No,Aria Math
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Computer Science,,,53703,40.95,-73.73,none (just cheese),neither,Yes,early bird,Maybe,Closer - Chainsmokers
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,12.9716,77.5946,none (just cheese),dog,Yes,night owl,Yes,Any Coldplay song works!
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Data Science,,Economics,53066,43.1144,-88.5072,pepperoni,dog,No,night owl,Maybe,God tier-Baby Tron
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53073,52.3702,4.8952,pepperoni,dog,No,night owl,Yes,Vienna: Billy Joel
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,24,Other (please provide details below).,Neurobiology,Psychology,53703,60.3913,5.3221,Other,dog,Yes,early bird,Yes,"Title: Ôba, Lá Vem Ela
Artist: Jorge Ben"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Data Science,,,53703,43.0731,-89.4012,mushroom,neither,No,early bird,No,"《To have,or not to have》
Lin Sheng Hsiang"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53706,42.64,-71.1291,pepperoni,dog,No,early bird,Yes,505 - arctic monkeys
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Computer Science,,,53715,41.8781,-87.6298,mushroom,dog,Yes,night owl,Yes,Sicko Mode by Travis Scott and Drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Computer Science,,,53706,25.033,121.5654,mushroom,neither,Yes,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Business: Other,marketing,economics,53706,40,116,pineapple,dog,No,night owl,Yes,Save Your Tears (Remix)--Ariana Grande& The Weekend
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Computer Science,,Biochemistry,53706,10.8231,106.6297,none (just cheese),dog,Yes,early bird,Maybe,"""Dress""
Taylor Swift"
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,17,Data Science,,Economics,53706,31.2304,121.4737,pepperoni,dog,No,night owl,Maybe,Shed a light
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,21,Data Science,Econ,,53703,34.6937,135.5022,pineapple,dog,No,night owl,Maybe,Moon by Kanye west
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Computer Science,N/A,Certificate - Data Science,53703,-33.9235,151.1399,Other,dog,Yes,night owl,Yes,5SOS - Teeth
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Computer Science,,,53726,39.9042,116.4074,sausage,cat,No,night owl,Maybe,Planet of the bass
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,23,Business: Finance,,Data Science Certificate (reason I am taking the course),53705,39.6403,-106.3709,pineapple,cat,Yes,no preference,Yes,"professional Griefers; Deadmau5, Gerard Way"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Business: Information Systems,,International Business,53703,38.6992,-75.0968,basil/spinach,dog,Yes,early bird,No,"Revival, Zach Bryan
"
COMP SCI 319:LEC002,LEC002,27,Science: Other,Information Science,,53705,44.0164,-92.4754,sausage,dog,Yes,night owl,Yes,Enchanted - Taylor Swift
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53703,28,81,pepperoni,dog,No,night owl,Yes,More than my hometown by Morgan Wallen
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Business: Other,Business Admin,,53706,36.7194,-4.42,Other,dog,Yes,night owl,Yes,cigarette daydreams - cage the elephant
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,39.0655,85.2563,pepperoni,neither,Yes,night owl,Maybe,n/a
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Data Science,Economics,,53703,31.2304,121.4737,mushroom,cat,Yes,no preference,No,Summertime Sadness---Lana Del Rey
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Data Science,,,53706,35.6895,139.6917,basil/spinach,dog,No,night owl,Maybe,Slow Dancing from V
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Other,Materials Science and Engineering,,53711,45.9013,-89.8459,Other,cat,No,night owl,Yes,Rio by Duran Duran
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Actuarial,,,53703,35.6895,139.6917,pepperoni,dog,Yes,no preference,Maybe,"dancing in the dark by Bruce Springsteen
"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Engineering: Other,My major is Chemistry but I intend to switch to Material Science and Engineering,,53711,48.8647,2.349,macaroni/pasta,cat,No,no preference,Maybe,Anything Taylor Swift
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53703,41.8781,87.6298,basil/spinach,dog,Yes,early bird,Maybe,Landslide Fleetwood Mac
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Computer Science,,Data Science,53715,33.9835,-118.248,pepperoni,cat,No,early bird,Yes,Khai Dreams - Sunkissed
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53715,47.61,122.33,pepperoni,cat,Yes,night owl,Yes,"Maroon, Taylor Swift"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53703,38.9333,-77.0711,pepperoni,dog,No,early bird,No,Smaller acts- Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Data Science,,,53701,45.1433,-89.1518,pepperoni,dog,Yes,early bird,Yes,When I'm gone - Dirty Honey
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Data Science,,Psychology,53711,37.9838,23.7275,green pepper,neither,No,night owl,Yes,Telepatia by Kali Uchis
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,N/A,N/A,53706,43.0737,-89.4026,pepperoni,dog,No,night owl,No,Trustfall by P!nk (Pink)
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Engineering: Mechanical,,,53715,42.35,-71.06,mushroom,cat,No,night owl,Yes,Upside Down - Jack Johnson
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Computer Science,,"Computer Science, Mathematics",53706,34.6937,135.5022,mushroom,dog,Yes,early bird,Yes,Taylor Swift
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,22,Engineering: Other,,,53703,41.8781,-87.6298,pineapple,dog,No,early bird,No,Semi-Charmed Life - Third Eye Blind
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,47.6062,-122.3321,pepperoni,dog,No,early bird,Yes,Ultralight Beam- Kanye West
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Economics,Data Science,53703,31.2304,121.4737,pepperoni,dog,Yes,night owl,Yes,Excuses-- Jay Zhou
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Economics with a Mathematical Emphasis,,53703,37.7749,-122.4194,pepperoni,dog,Yes,night owl,No,Cigarette Daydreams by Cage the Elephant
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Psychology,Data Science,53719,30.5928,114.3052,pepperoni,cat,Yes,no preference,Yes,Marunouchi Sadistic
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,,Business: Information Systems,,Data Science,53715,41.8781,-87.6298,sausage,dog,No,early bird,Yes,Staying Over by Sam Grow
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Computer Science,,,53706,37.3387,121.8853,basil/spinach,dog,Yes,night owl,Maybe,All Too Well-Taylor Swift
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,,Engineering: Industrial,,,53705,47.6,-122.3,green pepper,neither,No,night owl,Maybe,Good Time (Owl City)
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Business: Other,,Data Science,57306,-33.8688,151.2093,sausage,cat,Yes,no preference,No,Time by Pink Floyd
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Business: Information Systems,,Risk Management & Insurance,53703,43.0739,-89.3852,none (just cheese),dog,Yes,night owl,Yes,Heading South by Zack Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Biomedical,//,//,53715,45.7088,-121.5252,Other,dog,Yes,early bird,No,Honeybee - the Head and the Heart
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,20,Mathematics/AMEP,,,53726,44.1495,9.6547,pepperoni,dog,Yes,early bird,No,"John Mayor - Wild Blue
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,23,Engineering: Industrial,,,53715,37.5665,126.978,pepperoni,cat,Yes,night owl,Yes,"Burning Heart, Survivor"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Computer Science,"
",Certificate in Data Science,53715,39.483,-106.0463,macaroni/pasta,dog,Yes,night owl,Yes,505 by the Arctic Monkeys
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53703,5.4164,100.3327,none (just cheese),dog,Yes,no preference,Yes,Melancholy Hill - Gorillaz
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Statistics,,,53706,55.6672,12.5512,green pepper,dog,Yes,no preference,Maybe,Pink + White by Frank Ocean
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,23,Business: Finance,ECONOMICS ,FINANCE,53703,-45.0312,168.6626,pineapple,dog,Yes,early bird,No,Kiss Me Through The Phone - Souja Boy
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,economy,no,53703,39,116,sausage,neither,Yes,no preference,Maybe,the nights Avicii
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Science: Other,Political Science,,53715,45.0813,-93.135,pepperoni,dog,No,night owl,Yes,No Surprises: Radiohead
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Other (please provide details below).,Economics ,Maybe data science,53715,19.076,72.8777,basil/spinach,dog,No,night owl,Yes,none at the moment
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Mathematics/AMEP,N/A,N/A,53703,38.914,121.6147,macaroni/pasta,cat,No,night owl,Yes,You(=I) by BOL4
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,29.9511,-90.0715,pineapple,dog,Yes,night owl,Yes,Margaritaville - Jimmy Buffett
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,20,Data Science,,,53715,60.1699,24.9384,pepperoni,dog,No,early bird,Yes,Poison - Alice Cooper
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,Economics,53703,22.5431,114.0579,basil/spinach,dog,Yes,early bird,No,Palm Springs-Virginia To Vegas
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,21,Engineering: Other,Materials Science and Engineering,,53703,32.7157,-117.1611,green pepper,dog,No,night owl,No,The Fragrance of Dark Coffee by Noriyuki Iwadare
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Other (please provide details below).,Math,"Econ, CS",53703,39.9042,116.4074,mushroom,dog,No,early bird,Maybe,"Qing tian, Jay Chou"
COMP SCI 319:LEC003,LEC003,24,Engineering: Other,,,53711,32.4,119.4301,mushroom,cat,Yes,early bird,No,Just the two of us——Jose James
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Poli Sci & History,"Business, Development Economics, Data Science, Public Policy",53715,40.1728,74.006,Other,dog,No,night owl,Maybe,"""The Adults Are Talking"" by The Strokes"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,28.3731,-81.5569,none (just cheese),cat,No,no preference,Maybe,The Story of Us by Taylor Swift
COMP SCI 319:LEC003,LEC003,24,Other (please provide details below).,Economics,,53703,38.914,121.6147,tater tots,dog,No,no preference,No,Butter—Fly by わだ こうじ
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Science: Physics,,,53706,52.3676,4.9014,pineapple,cat,No,night owl,Yes,"Orion - Metallica, first section is decent but the entire middle section is the most beautiful piece of music to me and has always been my favorite song ever."
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,39.4821,-106.0487,none (just cheese),cat,No,night owl,Yes,ivy by taylor swift
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,35.6895,139.6917,pepperoni,cat,Yes,night owl,Yes,"Title: The Less I Know the Better
Artist: Tame Impala"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53711,43.7696,11.2558,sausage,dog,No,night owl,Yes,Break My Stride Mattew Wilder
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Other (please provide details below).,Biochemistry,Data Science,53715,34.0522,-118.2437,macaroni/pasta,dog,No,night owl,Yes,Nonsense - Sabrina Carpenter
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Other,,,53706,35.6528,139.8395,pineapple,cat,Yes,night owl,Yes,"Fly me to the moon --- Frank Sinatra
Night Dancer --- imase"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,39.4784,-106.0443,pepperoni,cat,No,night owl,Yes,Style by Taylor Swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53703,42.3601,-71.0589,pineapple,dog,No,night owl,Yes,Do Not Disturb -Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,n/a,n/a,53715,25.7617,-80.1918,pineapple,cat,Yes,night owl,Yes,Chicken Tendies by Clinton Kane
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,,53715,43.0731,-89.4012,sausage,cat,Yes,early bird,Maybe,Mayonaise by The Smashing Pumpkins
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Engineering: Mechanical,,,53706,41.3851,2.1734,mushroom,dog,No,early bird,Yes,Hysteria - Muse
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,,Other (please provide details below).,not declare yet,,53711,37.5665,126.978,mushroom,dog,No,no preference,Maybe,blackpink - pink venom
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Computer Science,,Data Science certificate,53703,44.5012,-88.0611,pepperoni,cat,No,night owl,Maybe,All That by Mac Miller
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53711,51.5074,-0.1278,mushroom,dog,Yes,no preference,Maybe,"""Always There"" -Greta Van Fleet"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,,Computer Science,,,53715,49,50,pepperoni,dog,No,night owl,Maybe,Chandelier - DJ Khaled
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,22,Business: Other,,"consumer behavior & marketpace studies, economics",53703,18.2528,109.5119,mushroom,dog,No,no preference,Yes,"Angel, Mosiah"
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,44.0134,-69.3102,Other,cat,Yes,no preference,No,September by Earth Wind and Fire
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Biomedical,,,53706,41.8781,-87.6298,mushroom,dog,No,early bird,Maybe,no option post malone
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Business: Finance,,Information Systems,53703,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Wat's Wrong by Isaiah Rashad
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,"Double major: Finance, Investment, and Banking / Information Systems",,53715,43.6123,-110.7054,pepperoni,dog,No,night owl,Yes,"Looking out for you, Joy Again"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Other (please provide details below).,Economics,Data Science minor,53703,33.8847,-118.4072,pineapple,dog,Yes,no preference,Yes,Boss DJ by Sublime
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.9526,-75.1652,mushroom,dog,No,no preference,Maybe,Everybody Wants to Rule the World- Tears for Fears
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,21,Science: Biology/Life,,,53703,30.5728,104.0668,mushroom,cat,Yes,early bird,Yes,"Until I Found You
Stephen Sanchez"
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Other (please provide details below).,econ,data science,53703,0,45,pineapple,dog,No,no preference,No,fire on fire Sam Smith
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Biomedical,,Data science,53706,43.168,-89.284,basil/spinach,dog,No,night owl,Yes,505 by the artic monkeys
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Other (please provide details below).,Textiles and Fashion Design ,,53703,48.6997,-122.8756,basil/spinach,dog,Yes,night owl,Yes,32 Flavors by Alana Davis
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Science: Biology/Life,,,53706,42.9005,-88.0291,pineapple,dog,No,night owl,Maybe,Regular (English Version)- NCT 127
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Other (please provide details below).,Economics,Spanish,53715,36.1699,-115.1398,mushroom,dog,No,night owl,Yes,
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,I am an undecided freshman major right now. I am thinking about applying to the industrial engineering major or majoring in psychology and legal studies because I have an interest in going to law school. ,,53706,25.7033,-80.2828,none (just cheese),dog,Yes,night owl,Maybe,Lay All Your Love On Me by ABBA
COMP SCI 319:LEC003,LEC003,24,Other (please provide details below).,Economics,,53703,40,116,sausage,cat,No,night owl,No,"Play Date
Martinez"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Information Science. Possibly data science certificate.,,53703,48.8566,2.3522,macaroni/pasta,dog,No,night owl,Maybe,Dandelions by Ruth B.
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Computer Science,,,53715,42.1024,-88.0585,pineapple,dog,Yes,night owl,Yes,The Scientist by Coldplay
COMP SCI 319:LEC004,LEC004,23,Other (please provide details below).,Economics,,53704,39.904,116.407,pineapple,neither,Yes,early bird,Yes,Every song by Jay Chou. A Chinese singer.
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Data Science,,economics,57306,24.4798,118.0894,pepperoni,neither,No,night owl,No,The Hills by The weekend
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Business: Finance,,,53703,43.076,89.3929,pepperoni,dog,Yes,no preference,Yes,"Jake's Piano - Long Island
Zach Bryan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,Nuclear Engineering,,53703,40.7128,-74.006,Other,dog,Yes,night owl,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,,Engineering: Mechanical,,,53703,33.493,-111.9258,pepperoni,dog,No,night owl,Yes,Teguila Shots- Kid Cudi
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Mathematics/AMEP,,,53703,53.3498,-6.2603,none (just cheese),dog,No,early bird,Yes,You Can't Make Old Friend by Kenny Rogers ft. Dolly Parton
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53703,40.71,-74,none (just cheese),dog,Yes,night owl,Yes,Anything Harry Styles
COMP SCI 319:LEC004,LEC004,22,Business: Information Systems,,,53703,36.0671,120.3826,pineapple,dog,No,night owl,Maybe,lonely dance
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Mechanical,,,53715,44.9212,-93.4688,pepperoni,dog,No,night owl,Yes,Snow (Hey Oh) by Red Hot Chili Peppers
COMP SCI 319:LEC001,LEC001,23,Computer Science,,,53703,23.1291,113.2644,tater tots,neither,Yes,early bird,Maybe,《lost stars》- Adam Levine
COMP SCI 319:LEC003,LEC003,22,Other (please provide details below).,Geography - Geographic Information Science and Cartography,N/A,53715,45.5017,-73.5673,mushroom,dog,No,night owl,Yes,Afterglow - Ed Sheeran
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Other (please provide details below).,Computer Science,Data Science,53706,35.6895,139.6917,sausage,dog,No,night owl,Yes,"Lost in Paradise , Miura Jam"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53715,30.1766,-85.8055,pepperoni,dog,No,early bird,No,"Billie Jean-Micheal Jackson
or
Cum on Feel the Noize-Quiet Riot"
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,39.1898,106.8183,pepperoni,dog,No,night owl,Yes,Peach — Sammy Virji
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,22,Computer Science,,,53703,17.4203,78.4029,mushroom,dog,Yes,no preference,Maybe,Popular (feat. Playboi Carti) by The Weeknd & Madonna
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Data Science,,Computer Science,53705,37.45,-122.2,pineapple,cat,No,early bird,Maybe,Natural - What If
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,Yes,night owl,Yes,All Falls Down by Kanye West
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,Other,dog,Yes,early bird,No,Fishing in the Dark - Nitty Gritty Dirt Band
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Other (please provide details below).,Economics,,53703,22.5431,114.0579,pepperoni,dog,Yes,night owl,No,snowman-sia
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Data Science,,,53706,28.5383,-81.3792,sausage,dog,No,early bird,No,Come On Eileen by Dexys Midnight Runners
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,39,Data Science,xxx,Biomedical Data Science,53713,47.3006,-88.0459,pepperoni,cat,Yes,no preference,Yes,"Our Song, Joe Henry"
COMP SCI 319:LEC001,LEC001,23,Science: Other,information science,,53718,40.4259,-86.9081,pepperoni,dog,No,no preference,Yes,Young and Beautiful by Lana Del Rey
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Computer Science,,,53703,39.3597,111.5863,pepperoni,dog,No,night owl,Yes,Baby I'm bleeding - Jpeg Mafia
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Engineering: Biomedical,,,57303,41.8,-72,sausage,dog,No,early bird,No,Money - The Drums
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC001,20,Data Science,,Math Econ,53711,48.1376,11.5799,pepperoni,cat,No,no preference,Maybe,FE!N by Travis Scott
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,Spanish,53706,44.7666,-85.5946,none (just cheese),dog,Yes,no preference,No,Single ladies - Beyoncé
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53718,40.7584,-73.9843,none (just cheese),dog,Yes,early bird,Maybe,"Spectrum - Florence + The Machine, Calvin Harris"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Computer Science,,,53706,22.3072,73.1812,none (just cheese),neither,Yes,no preference,Maybe,I have no such preference for songs.
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Computer Science,I am a computer science major.,Not Mandatory,53706,25.2048,55.2708,pepperoni,dog,Yes,early bird,No,Titi me pregunto by bad bunny.
COMP SCI 319:LEC004,LEC004,24,Other (please provide details below).,Econometrics,,53711,24.8801,102.8329,pineapple,cat,No,night owl,Yes,Resting Ground by Christopher Larkin
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,economics,data science,53703,5.4203,100.3119,none (just cheese),cat,No,no preference,Maybe,You give love a bad name bon jovi
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,,Business: Finance,,,53703,52.3702,4.8952,pepperoni,dog,No,night owl,Yes,Radio Ga Ga by Queen.
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Science: Biology/Life,,,53706,-8.6399,115.1402,Other,dog,No,night owl,Yes,Rise
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Data Science,,,53706,,,pepperoni,dog,No,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Biomedical,,Spanish,53715,44.8504,93.7876,pineapple,dog,Yes,night owl,Yes,Nonstop by Drake
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53711,-33.9249,18.4241,pineapple,dog,Yes,early bird,Yes,Violent Crimes - Kanye West
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Data Science,,Information Systems,53175,28.5383,-81.3792,sausage,dog,No,early bird,No,Come On Eileen by Dexys Midnight Runners
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Mathematics/AMEP,,Psychology,53715,38.9072,-77.0369,pineapple,dog,No,early bird,Yes,Love Story - Taylor Swift
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Engineering: Industrial,N/A,N/A,53711,42.6507,18.0944,pepperoni,dog,Yes,no preference,Yes,Holanda - Jhayco
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53715,40.7128,-74.006,pepperoni,neither,Yes,night owl,Yes,《花海》from 周杰伦;Floral Sea by Jay Chou
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,22,Other (please provide details below).,Mechanical Engineering,Physics,53711,39.7392,-104.9903,pineapple,dog,No,night owl,Yes,"""The Weight of Dreams"" by Greta Van Fleet (modern day copy-cat of Led Zeppelin)"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Mechanical,,,53715,49.7938,-93.1955,mushroom,dog,Yes,night owl,Yes,Hurt Feelings by Mac Miller
COMP SCI 319:LEC002,LEC002,23,Science: Other,master of science information (data analyst),none,53703,44.0521,-123.0868,sausage,cat,No,night owl,Yes,beside you - keshi
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,21,Statistics,,,53703,44.51,88.01,basil/spinach,cat,No,night owl,Yes,Dunno - mac miller
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,23,Computer Science,,Economics,53715,55.6761,12.5683,sausage,dog,Yes,no preference,Yes,Uden dig - ukendt kunster
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Cellular and Molecular Biology,Japanese,53703,35.3032,139.5657,basil/spinach,dog,No,night owl,Yes,Memories by Maroon 5
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Computer Science,,,53706,37.5326,127.0246,sausage,cat,Yes,no preference,Yes,"Title: Some might say (Oasis)
"
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Finance,Finance ,Marketing,53715,64.9631,-19.0208,sausage,dog,No,night owl,Yes,Jump Around by House of Pain
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,Undecided,,53715,41.8781,-87.6298,basil/spinach,dog,No,early bird,Yes,New Beat by Toro y moi
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Economics,,53818,43,0,sausage,neither,No,night owl,Maybe,None
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,39.9526,-75.1652,pepperoni,dog,No,night owl,Yes,All the Stars by Kendrick Lamar and SZA
COMP SCI 319:LEC004,LEC004,22,Computer Science,,,53715,22.5431,114.0579,sausage,cat,No,night owl,Yes,cruel summer!!! Taylor swift!!!
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Accounting,Finance,53715,41.8781,-87.6298,sausage,dog,Yes,night owl,Yes,Change- Bailey Zimmerman
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Political Science,,53703,41.8781,-87.6298,Other,cat,Yes,early bird,Maybe,"Nashville, TN by Chris Stapleton"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Computer Science,,,53715,22.5886,88.4043,Other,dog,No,no preference,Yes,Elevated - Shubh
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC004,20,Data Science,,,53703,35.9078,127.7669,pepperoni,dog,Yes,early bird,Yes,One Call Away - Charlie Puth
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53703,49.2827,-123.1207,pineapple,cat,No,no preference,Yes,"before he cheats
by carrie underwoods"
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Engineering: Biomedical,,,53706,35.6895,139.6917,basil/spinach,dog,Yes,no preference,Yes,Wind Blows - Dreamcatcher
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Mechanical,n/a,n/a,53706,43.0517,-89.3427,macaroni/pasta,dog,Yes,no preference,Yes,"title: wonderwall
artist: Oasis "
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Data Science,,,53716,44.5133,-88.0133,green pepper,dog,No,night owl,Yes,Mr. Rager by Kid Audi
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Business: Finance,,"Mathamatics for finance, Economics",53703,24.4798,118.0894,Other,cat,Yes,no preference,Maybe,Not good enough for you-Jay Chou
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Business: Other,Marketing,,53715,43.0389,-87.9065,none (just cheese),cat,Yes,no preference,Maybe,I guess that's why they call it the blues - Elton John
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Data Science,I plan to major in Data science.,no second major,53711,33.6225,113.3418,basil/spinach,dog,No,night owl,Maybe,That Girl by Olly Murs
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,23,Other (please provide details below).,Economics,Political Science,53703,43.0731,-89.4012,pepperoni,cat,Yes,night owl,No,500 Miles
COMP SCI 319:LEC001,LEC001,30,Engineering: Other,,,53705,-34.4909,-58.4892,pepperoni,dog,Yes,early bird,Maybe,Sweet Child O' Mine - Guns N' Roses
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economic,,53705,31.2304,121.4737,none (just cheese),cat,No,early bird,Yes,Closer by the chainsmokers
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Business: Information Systems,,,53706,33.4484,-112.074,none (just cheese),dog,No,no preference,Yes,runaway by Kanye West
COMP SCI 319:LEC002,LEC002,25,Engineering: Other,,,53705,37.1765,-3.5979,basil/spinach,cat,No,night owl,Maybe,Time of Our life - DAY6
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,21,Science: Biology/Life,,French,53703,44.9019,-93.3388,basil/spinach,dog,Yes,no preference,Yes,Brazil- Declan McKenna
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Data Science,,Economics,53715,43.7696,11.2558,none (just cheese),cat,Yes,night owl,Yes,November Rain Guns N' Roses
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Finance,Econ with data science certificate ,53703,41.3851,2.1734,pepperoni,dog,No,no preference,No,(It goes like) nanana by Peggy Gou
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,38.7223,-9.1393,basil/spinach,dog,Yes,no preference,No,Nice For What by Drake
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Information Systems,,"Supply chain, operation technology managment ",53703,12.4964,41.9028,pineapple,dog,No,night owl,Yes,My favorite song is probably dancing queen by ABBA
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Mechanical,,,53706,47.6775,11.2041,basil/spinach,dog,No,no preference,Yes,Uptown Girl by Billy Joel
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Data Science,,,53703,31.8433,117.2457,Other,dog,No,night owl,Yes,"Title: [Mrs. Shexiang] (https://www.last.fm/music/Phoenix+Legend/_/Mrs.+Shexiang)
Artist: Phoenix Legend"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Data Science,,,53706,55.68,12.58,pepperoni,cat,No,night owl,Maybe,Love Lost - Mac Miller
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,economics BA,,53711,35.6895,139.6917,mushroom,dog,No,no preference,Yes,My favorite song is Favorite Song.
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,18,Computer Science,,,53706,45.4642,9.19,pepperoni,cat,No,night owl,Maybe,"****************************
The Weeknd - Save Your Tears
****************************"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,31.8089,120.6153,Other,cat,No,no preference,Yes,Blood Type-Viktor Tsoi
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Engineering: Biomedical,,,53703,40.4855,-106.8336,pepperoni,dog,Yes,early bird,Maybe,When it Rains it Pours by Luke Combs
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Business: Finance,,Real Estate,94024,40.7128,-74.006,sausage,dog,Yes,night owl,Maybe,
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Finance,N/A,N/A,53703,1.2,4.2,pepperoni,dog,No,no preference,Maybe,I'm gonna be (500miles) by the proclaimers
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,,Engineering: Mechanical,,,53703,39.6456,-77.4205,pepperoni,dog,No,no preference,Yes,Jimmy Cooks by Drake
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Business: Finance,N/A,Data science,53706,13.8079,108.1094,basil/spinach,dog,No,early bird,Maybe,"Truoc khi em ton tai - Thang
Mirror ball - Taylor Swift"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Other,Environmental Science,,53715,41.8781,-87.6298,green pepper,dog,Yes,night owl,Yes,Black Swan by BTS
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,19,Mathematics/AMEP,,,53715,44.79,-89.7,pepperoni,dog,No,no preference,No,I don't have a favorite
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Data Science,Information and data science,,53703,43.0389,-87.9065,pepperoni,dog,No,night owl,Maybe,mayonaise smashing pumpkins
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,My primary major is Economics.,My secondary major is Psychology. I have declared a certificate in data science.,53703,35.6895,139.6917,pepperoni,neither,No,no preference,Maybe,"Hype boy - New Jeans
Paris in the rain - Lauv
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,21,Data Science,,,53703,32.8328,-117.2713,Other,dog,Yes,night owl,Maybe,The Pale Moonlight - Kid Cudi
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,information science ,data science,53706,41.3851,2.1734,green pepper,dog,Yes,night owl,Yes,Jungle - Drake
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,22,Science: Biology/Life,,,53715,47.0502,8.3093,macaroni/pasta,dog,No,night owl,Yes,Under Pressure by Queen and David Bowie
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Industrial,,,53703,18.0231,-63.0482,Other,cat,No,no preference,No,Could you be loved - Bob Marley
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Information Science,,53703,49.2827,-123.1207,pepperoni,dog,No,night owl,Yes,tell me what you want - dacelynn
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Statistics,I selected Statistics above.,I am considering double majoring in data science.,53703,60.1699,24.9384,pepperoni,dog,Yes,early bird,Yes,Mrs. Hollywood - Go-Jo
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,I am undecided but planning on potentially majoring in Data Science or at least getting a certificate. ,"I am also potentially majoring in International Studies, but am currently undecided.",53706,37.7749,-122.4194,basil/spinach,dog,Yes,night owl,Maybe,"""The Air That I Breathe"" The Hollies "
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,N/A,N/A,53706,43.0389,-87.9065,pepperoni,dog,Yes,early bird,Yes,Jungle by Andre Nickatina. Its Christian Yelich's walk up song.
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Business: Finance,,Psychology,53715,51.5074,-0.1278,basil/spinach,cat,No,night owl,Yes,Daydreaming by Harry Styles
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,Mech E,,53715,41.1579,-8.6291,basil/spinach,dog,No,night owl,Yes,Zach Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Data Science,,,53706,19.64,-156,pepperoni,dog,Yes,night owl,Yes,From Time by Drake
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Actuarial,,Data Science,53706,43.485,-89.754,mushroom,neither,No,night owl,Yes,"New Romantics, Taylor Swift"
COMP SCI 319:LEC001,LEC001,22,Other (please provide details below).,Information Science,No,53703,31.23,121.47,mushroom,dog,No,night owl,Maybe,"Artist: BLACKPINK, Title: Shut Down"
COMP SCI 319:LEC001,LEC001,22,Other (please provide details below).,Information science,,53703,31.23,121.47,mushroom,dog,No,night owl,Yes,"Song: Shut Down, Artist: Black Pink"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Engineering: Mechanical,,,53706,47.6062,-122.3321,pineapple,dog,Yes,early bird,No,Flashing Light by Kanye West
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53714,45.8713,-89.7116,pepperoni,cat,Yes,night owl,Yes,Africa by Toto
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Science: Physics,,,53726,60.39,5.32,mushroom,dog,Yes,night owl,Yes,Heat Above by Greta Van Fleet
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,21,Other (please provide details below).,Genetics and Genomics,,53703,36.7234,25.2822,basil/spinach,dog,Yes,early bird,Maybe,Kiss of Venus - Dominic Fike
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Other (please provide details below).,Data Science and Mathematics ,,53706,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,Heart Throb - Pritam
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Business: Finance,,,53703,41.8818,-87.8367,pepperoni,dog,No,night owl,No,"Boogie Wonderland by Earth, Wind, and Fire and The Emotions"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Legal Studies major,,10075,40.7131,-74.0072,pepperoni,dog,Yes,no preference,Yes,Dancing in the Moonlight
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Computer Science,,,53703,43.0731,-89.4012,pineapple,cat,No,no preference,Yes,Hits Different - Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Data Science,,,53715,45.4642,9.19,pineapple,dog,No,night owl,Yes,Passionfruit - Drake
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Computer Science,,Data Science,53715,25.2345,110.18,mushroom,cat,No,night owl,Maybe,Midsummer Madness by 88rising
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Engineering: Industrial,,,53706,60.8525,7.1136,pepperoni,dog,Yes,no preference,No,Boulevard of Broken Dreams by Green Day
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Engineering: Industrial,,,53715,51.5074,-0.1278,none (just cheese),dog,No,night owl,Yes,"unruly NSG,Meeks"
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Data Science,,Global Health,53715,18.58,-68.41,macaroni/pasta,cat,Yes,early bird,Yes,"November Rain, Guns N' Roses"
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,44.5004,-88.0613,pepperoni,cat,Yes,early bird,Maybe,"""Take It Easy"", Eagles"
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,21,Science: Biology/Life,,,53590,59.9,10.7,macaroni/pasta,cat,Yes,early bird,Yes,Trouble by Elvis Presley
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Engineering: Mechanical,,,53703,44.5133,-88.0133,pepperoni,dog,No,early bird,No,Revival by Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Business: Information Systems,,,53590,45.5017,73.5674,pepperoni,neither,Yes,night owl,Maybe,Teeth by 5 Seconds of Summer (please do play this one sometime!)
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53706,47.227,-88.164,pineapple,cat,No,night owl,Yes,stacy's mom by fountains of wayne
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Other (please provide details below).,Undecided,,53706,42.3314,-83.0458,pepperoni,dog,No,night owl,Maybe,Always Forever by Cults
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,36.3719,-94.2027,mushroom,dog,Yes,early bird,No,At the Beach by the Avett Brothers
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Other (please provide details below).,Economics,,53703,41.9028,12.4964,pepperoni,dog,Yes,night owl,Yes,Free bird - lynyrd skynyrd
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Other (please provide details below).,Behavioral Economics,"Mathematics, Data Science Minor",53715,42.3601,-71.0589,basil/spinach,dog,Yes,early bird,No,Sitting on Top of the World - Burna Boy
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Mechanical,,,53706,34.4208,-119.6982,pineapple,dog,No,early bird,Maybe,snooze by SZA
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53706,42.584,-87.82,pepperoni,dog,Yes,no preference,Maybe,Outside- Calvin Harris
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Business: Other,,,53703,37.1324,24.815,pepperoni,dog,No,night owl,Yes,Thunder by Imagine Dragons
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,44.79,-89.723,pepperoni,dog,No,no preference,No,Eye of the Tiger
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Engineering: Mechanical,,,53703,-33.9249,18.4241,pepperoni,dog,No,no preference,Yes,The Adults Are Talking - The Strokes
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Science: Other,My primary major is Atmospheric and Oceanic Science.,I am considering double majoring in either Environmental Studies or Math. ,53715,40.5853,-105.0844,none (just cheese),dog,Yes,no preference,Yes,"""Tidal"" Noah Kahan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Mechanical,,,53703,41.9,-87.6,pepperoni,dog,No,night owl,No,Revival by Zach Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC002,20,Other (please provide details below).,Economics.,Data Science.,53703,44.972,-93.51,pepperoni,dog,Yes,night owl,Maybe,Broken Clocks by SZA.
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Other (please provide details below).,Economics and Data Science,,57315,42.6256,-71.3853,pepperoni,dog,Yes,night owl,Yes,Style by Taylor Swift
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Data Science,-,Econ ,53711,1.3521,43.0731,mushroom,dog,Yes,early bird,Maybe,low-key - Nikki
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Computer Science,,,53703,61.2114,-149.7313,mushroom,cat,Yes,night owl,No,"""I Wonder"" by Kanye West"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Mechanical,,,53726,46.5436,-87.3954,basil/spinach,cat,Yes,night owl,Yes,"Snow, Red Hot Chili Peppers "
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53715,43,-89.3,pepperoni,dog,No,night owl,Yes,"FIEN, Travis Scott"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Mathematics/AMEP,,Statistics,53715,27.2195,78.0216,Other,neither,No,night owl,Yes,Taylor Swift- Style
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Science: Physics,n/a,n/a,53706,31.2304,121.4737,mushroom,cat,No,night owl,Yes,"Concorde -- Black Country, New Road"
COMP SCI 319:LEC001,LEC001,,Other (please provide details below).,economics,no,53705,39.9042,116.4074,mushroom,cat,Yes,night owl,Yes,What you mean to me -- Matthew Morrison/Laura Michelle Kelly
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC003,18,Engineering: Industrial,n/a,n/a,53706,1.3521,103.8198,pepperoni,dog,Yes,night owl,Yes,When the Day is Done by Grent Perez
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Science: Biology/Life,,,53719,51.5074,-0.1278,Other,cat,No,night owl,Maybe,Father Time - Kendrick Lamar
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Business: Other,Business related but undecided.,n/a,53706,37.5326,127.0246,mushroom,dog,No,night owl,Yes,"New Jeans - ETA
New Jeans - OMG"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,42.2387,-87.9596,pepperoni,neither,Yes,night owl,Maybe,Laugh Now Cry Later - Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,21,Data Science,,,53703,43.4714,-110.7688,sausage,dog,Yes,night owl,Yes,My Old School - Steely Dan
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53715,43.07,-89.4,sausage,dog,No,no preference,Maybe,I Hope That's True by Morgan Wallen
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,,Other (please provide details below).,Undecided.,,53706,35.6895,139.6917,sausage,cat,No,night owl,Yes,Stitches-Shawn Mendes
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,Finance,Information Systems,53718,43.6511,-79.347,sausage,dog,No,night owl,Maybe,Over by Drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Science: Biology/Life,,Data Science,53715,13.7563,100.5018,pepperoni,dog,No,night owl,Yes,Hurricane Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Business: Finance,,,53715,50.0755,14.4378,pepperoni,dog,No,night owl,Yes,Nonstop by Drake
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,22,Science: Biology/Life,,"Data Science, BS",53703,37.5683,126.9978,pepperoni,cat,No,night owl,No,'Mourning' - Post Malone
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,20,Data Science,,,53703,37.44,25.37,pepperoni,cat,No,night owl,Yes,Spotless- Zach Bryan ft. The Lumineers
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Business: Finance,,Business: Information Systems,53715,52.3702,4.8952,Other,cat,No,early bird,Yes,As It Was by Harry Styles
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53703,24.4882,54.3773,none (just cheese),cat,No,night owl,Yes,
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Computer Science,,,53703,42.9856,-88.0761,Other,dog,No,night owl,No,"Aries - Fools gold
"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Data Science,,,53703,33.4484,-112.074,mushroom,cat,No,night owl,Yes,fire burning -sean kingston
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53715,40.7128,-74.006,none (just cheese),dog,No,early bird,Yes,"Ordinaryish People, by AJR"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,22,Other (please provide details below).,"Economics, with data science certificate.",,53711,34.7466,113.6253,pepperoni,cat,Yes,no preference,Maybe,"One Last Kiss, by Utada Hikaru"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Data Science,,,53726,43.2815,-88.4091,sausage,dog,No,night owl,No,Normal Girl by SZA
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Engineering: Industrial,,,53703,39.6349,-106.5283,pepperoni,dog,Yes,night owl,Yes,Dark Necessities by The Red Hot Chilli Peppers
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Mathematics/AMEP,,Statistics,53706,31.2304,121.4737,sausage,cat,Yes,early bird,Yes,Scared 2 be Lonely--Lil Tjay
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,,Computer Science,,Data Science,53715,42.3601,-71.0589,sausage,dog,No,night owl,Yes,The Ladder - Margolnick
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Data Science,,Economics,53706,60.1282,18.6435,Other,dog,No,night owl,Maybe,Smells like teen spirit-Nirvana & Pretender- Foo Fighters (I'm never able to select my most favourite out of these two)
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Atmospheric and Oceanic Studies,,53726,44.447,88.889,pepperoni,dog,No,night owl,Yes,Julia - Mt. Joy
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53706,47.3886,-88.0226,pepperoni,dog,Yes,night owl,Maybe,"""Need 2"" by Pinegrove"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC004,19,Science: Other,,,53703,29.4316,106.9123,mushroom,neither,No,night owl,No,“FIREWORK” by &TEAM
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,44.5133,-88.0133,pineapple,dog,Yes,early bird,Yes,At the End of the Day -Wallows
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,,Data Science,,,53713,3.139,101.6869,basil/spinach,cat,Yes,no preference,Yes,Lady Gaga - Bad Romance
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Other (please provide details below).,Economics,N/A,53703,42.3601,-71.0589,basil/spinach,dog,No,night owl,Maybe,Revival - Zach Bryan
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,No,night owl,Yes,"""Passionfruit"" by Drake"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Engineering: Mechanical,,,53706,46.8108,-90.8182,pepperoni,dog,No,night owl,Maybe,"""My Hero"" by Foo Fighters "
"COMP SCI 220:LEC003, COMP SCI 220:LAB334, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,25.3176,82.9739,pepperoni,dog,Yes,early bird,Maybe,"Safe and Sound, by Capital cities"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Languages,N/A,N/A,53706,12.9716,77.5946,basil/spinach,cat,Yes,night owl,No,baseball - Hippocampus
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Data Science,,,53706,42.3601,-71.0589,sausage,dog,Yes,night owl,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,40.7128,-74.006,none (just cheese),dog,No,night owl,Yes,Father Stretch My Hands - Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Data Science,,,2038,,-71.0589,pepperoni,dog,Yes,night owl,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Mathematics/AMEP,,"Statistics, B.S.",53703,30.2741,120.1551,none (just cheese),dog,Yes,night owl,Maybe,Careless Whisper by Wham!
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Other,Material Science and Engineering,,53706,47.608,-122.3352,sausage,dog,No,night owl,Maybe,"************
Sixteen Tons
************
Geoff Castellucci
"
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,I am an economics major.,I may double major in data science but for now it is a minor.,53703,40.4987,-111.8188,green pepper,cat,No,night owl,Yes,Walking On A Dream by Empire of The Sun.
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Other (please provide details below).,economics,,53706,45.0938,-93.4976,Other,dog,No,no preference,Maybe,Drift Away - Uncle Kracker
COMP SCI 319:LEC004,LEC004,23,Science: Other,Economics,nope,53703,41.7407,123.4399,pepperoni,cat,No,night owl,No,Kiss Goodbye
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Business: Finance,,,54143,37.3891,-5.9845,pepperoni,dog,Yes,early bird,No,The House of the Rising Sun - The Animals
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,46.5,-94.3,sausage,dog,No,night owl,Yes,As She's Walking Away by Zac Brown Band
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Engineering: Mechanical,,,53703,40.7128,-74.006,pepperoni,dog,Yes,night owl,Yes,"Junio, Maluma
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,,54636,41.8781,-87.6298,mushroom,dog,No,early bird,Yes,Cherry by Harry Styles
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53597,44.7866,20.4489,macaroni/pasta,cat,No,night owl,Yes,bad dream baby - hippo campus
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Other (please provide details below).,Economics ,N/A,53703,43,-89,sausage,dog,No,early bird,Maybe,Cough Syrup - Young the Giant
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Biomedical,,,53706,40.7865,-74.3921,sausage,dog,No,night owl,Yes,"Fancy
Drake"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Mechanical,,,53706,-8.6786,115.4556,pepperoni,dog,Yes,no preference,Maybe,Hotel California-Eagles
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53703,40.7131,-74.0072,pineapple,dog,Yes,night owl,Yes,Freestyle by Lil Baby
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,Deciding between Biology and Biomedical Engineering,,53706,45.2658,-111.3003,pepperoni,dog,No,night owl,No,Best of You by the Foo Fighters
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Other (please provide details below).,Economics (Minor in Data Science),,53715,43.0722,-89.4012,sausage,dog,Yes,night owl,No,Art of Living - Mat Kerekes
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,51.5035,-0.1278,macaroni/pasta,neither,No,night owl,Yes,Movin' Out by Billy Joel
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53703,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,I Know - Travis Scott
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Science: Physics,NA,Currently in astrophysics but trying to transfer into the school of Engineering for Mechanical Engineering. ,53703,21.3069,-157.8583,sausage,cat,Yes,no preference,Maybe,"It's my Life, Bon Jovi"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,,Computer Science,,Maybe majoring in data science but I might minor it.,53706,60.1282,18.6435,none (just cheese),cat,No,no preference,Yes,Mad at the World - Heffron Drive
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Science: Physics,,,53706,44.9778,-93.265,basil/spinach,cat,No,night owl,Yes,Out of My League - Fitz and the Trantrums
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Business: Other,,,53726,43,-89,pepperoni,neither,No,no preference,Maybe,post malone
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53705,31,121,pepperoni,cat,No,night owl,Yes,Something Just Like This - The Chainsmokers & Coldplay
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics and Data Science.,,53703,26.6141,-81.8258,pepperoni,dog,Yes,night owl,Maybe,"Sweet Caroline, Neil Diamond"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,25,Other (please provide details below).,Zoology Major,n/a,53719,41.8781,-87.6298,basil/spinach,dog,No,night owl,Yes,"Dirty Little Secret
Song by The All-American Rejects"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,39,116,mushroom,cat,Yes,night owl,Maybe,see you again
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Yes,Fear and Fridays - Zach Bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Data Science,,,53706,40.7128,-74.006,pepperoni,dog,No,early bird,Maybe,Holy Ground by Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,mushroom,dog,No,no preference,No,"Wish You Were Here - Pink Floyd
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53715,38.5733,-109.5498,pineapple,dog,No,early bird,No,Don't You Worry Child by Swedish House Mafia
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53715,46.2044,6.1432,sausage,dog,Yes,no preference,No,"""Woods"" by Mac Miller"
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,"Economics major, data science minor ",,53703,38.4187,27.1296,green pepper,cat,Yes,no preference,No,Piano Man by Billy Joel
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Engineering: Industrial,,,53705,24.7136,46.6753,pepperoni,dog,Yes,early bird,No,"Mohammed Abdu- Artist
Wienak ya darb al mahaba"
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,40,Data Science,"Data Science is my primary major.
I am a returning student. My past Major was AMEP. Data Science majors didnt exist then. It fits better with what I was working towards. I love probablility and statistics.",NA,53705,43,88,sausage,cat,Yes,no preference,No,"Moonlight Sonata Movement #1 played on the piano vs the radio while it rains or at night with the windows open is awesome!!!!!!
Movement #3 will blow your mind.
If you dont like any of those, louisiana harmonica is good."
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,NA,NA,53703,45.8733,-63.5841,pepperoni,cat,No,early bird,Maybe,"Revival, Zach Bryan "
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Other (please provide details below).,"Still deciding from Mathematics, Statistics, and Economics.",,53706,39.9042,116.4074,sausage,neither,Yes,early bird,Maybe,"Title: Croatian Rhapsody
Artist: Tonci Huljic"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Science: Other,Nursing,Global Health minor ,53706,43.8376,10.4951,pepperoni,dog,Yes,night owl,Maybe,Gimme! Gimme! Gimme! by ABBA
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Data Science,,Economics (Math Emphasis) or Math for Econ and finance (still thinking),53706,55.7558,37.6173,pepperoni,dog,No,no preference,Maybe,Safe and Sound by Capital Cities
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Science: Other,Atmospheric and Oceanic Sciences,,53711,48.8566,2.3522,pineapple,dog,Yes,night owl,Maybe,Lady May by Tyler Childers
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,43.0742,89.3838,macaroni/pasta,dog,Yes,night owl,Yes,Little Wing - Jimi Hendrix
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53711,43.0731,-89.4012,sausage,dog,Yes,night owl,Yes,"Encore by the Red Hot Chili Peppers
"
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Other (please provide details below).,undecided,,53703,40.7306,73.9352,basil/spinach,dog,No,night owl,Yes,"Erase Me, Lizzie McAlpine"
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53726,45.5152,122.6784,pepperoni,dog,Yes,night owl,Yes,Pennies - Smashing Pumpkins
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,,Engineering: Industrial,,,53715,44.4047,8.9291,sausage,dog,Yes,early bird,Yes,"You Don't Love Me (No, No, No) - Dawn Penn"
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53715,40.7128,-74.006,pepperoni,dog,Yes,early bird,No,"""What You Know"" by Two Door Cinema Club"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC003,18,Data Science,,,53706,18.7897,98.9844,pineapple,dog,No,night owl,Yes,"One of my favorite songs is ""Bahamas"" by HARBOUR. "
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Computer Science,,,53704,43.0739,-89.3852,pepperoni,dog,Yes,night owl,Maybe,Bang Bang - K'NAAN
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,nuclear engineering,.,53715,47.6,-122.33,sausage,dog,Yes,night owl,Yes,"smells like teen spirit
-nirvana"
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53703,39.0742,21.8243,mushroom,dog,No,night owl,Yes,Cardigan - Don Toliver
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Business: Other,"Other: Accounting
",Business- Information Systems,53726,51.5074,-0.1278,none (just cheese),dog,Yes,early bird,No,Abba- Dancing Queen
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Science: Biology/Life,I am planning to major in neurobiology.,"Data Science
total 2 majors. Neurobiology and Data Science.",53706,36.9741,-122.0288,none (just cheese),cat,Yes,no preference,Maybe,Learn To Fly - Foo Fighters
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,42.3601,-71.0589,pepperoni,cat,No,night owl,Maybe,Show No Regret by Daniel Caesar
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,17,Engineering: Mechanical,,,53706,57.6202,-133.2372,pineapple,dog,No,night owl,Maybe,I Wanna Dance with Somebody by Whitney Houston
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Science: Other,Atmospheric and Oceanic Sciences,N/A,53726,42.7,-89.8679,none (just cheese),cat,No,night owl,Maybe,Might Be Right - White Reaper
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics ,N/a,53703,25.1931,55.279,pepperoni,neither,No,early bird,No,6th Sense-Kodak Black
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Data Science,,,53706,40.4168,-3.7038,basil/spinach,dog,Yes,early bird,No,Polaris Remix Saiko ft. Mora Feid Quevedo
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,42.3601,-71.0589,pineapple,cat,No,night owl,Yes,"zz melt - Jagger Finn
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Data Science,,,53703,44.7394,-93.1258,pepperoni,dog,No,night owl,No,"Self Care, Mac Miller"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Other (please provide details below).,international studies,,53703,41.3851,2.1734,pineapple,dog,Yes,no preference,Yes,"American Pie, Don Mclean"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53706,43.039,-87.906,pepperoni,neither,No,no preference,Yes,Flashing Lights - Kanye West
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Engineering: Industrial,N/A,N/A,53715,88.384,43.0058,pepperoni,dog,Yes,night owl,Maybe,"Stick Season
Noah Kahan"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC003,19,Data Science,,,53713,35.6895,139.6917,sausage,cat,No,night owl,Yes,Its You by Keshi
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Data Science,,,53715,45.9141,-89.2558,mushroom,dog,No,no preference,Yes,"Making Eyes by Archers. Madison based metalcore band! (beware of the screamo sections to some of their songs, lol)"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Engineering: Biomedical,,,53706,22.9068,43.172,mushroom,dog,Yes,early bird,Maybe,Out of Reach- BoywithUke
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,21,Business: Actuarial,,Risk Management & Insurance,53703,43.0731,-89.4012,green pepper,dog,Yes,early bird,No,Layla by Eric Clapton
COMP SCI 319:LEC004,LEC004,24,Other (please provide details below).,Econ,,53703,39.9042,116.4074,pineapple,neither,No,night owl,Maybe,"Savage Daughter
Sarah Hester Ross"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,cat,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Business: Finance,,,53703,40.7128,-74.006,pineapple,dog,No,night owl,Yes,FE!N- Travis Scott
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Business: Finance,,I am doing a data science certificate and planning on a double major in information systems.,53703,41.8781,-87.6298,mushroom,dog,No,early bird,No,"Hozier
Cherry Wine"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,,53711,21.3069,-157.8583,sausage,dog,Yes,night owl,Yes,I KNOW ? - Travis Scott
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,18,Engineering: Industrial,,,55337,48.8566,2.3522,mushroom,dog,No,night owl,Yes,The Other Side of the Door - Taylor Swift
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,17,Data Science,None,Biology,53706,52.3702,4.8952,Other,dog,Yes,early bird,No,Counting Stars by One Republic
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53703,1.3521,103.8198,pineapple,cat,Yes,night owl,Maybe,Someone Like You by Adele
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53726,44.988,-87.243,sausage,dog,No,early bird,No,Chattahochee by Alan Jackson
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Industrial,,,53705,23.5859,58.4059,pepperoni,neither,No,no preference,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,,Data Science,,Economics,53706,1.3521,103.8198,mushroom,cat,No,night owl,Yes,Cupid by Fifty Fifty
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Business: Other,Marketing,,53703,41.3851,2.1734,basil/spinach,dog,No,no preference,No,What is Love by Haddaway
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Data Science,,,53706,43.1132,-87.9997,sausage,cat,Yes,early bird,Yes,Viva la Vida by Coldplay
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Other (please provide details below).,Urban Studies,,53715,37.9838,23.7275,pepperoni,cat,No,no preference,No,Eat The Rich by Aerosmith
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Engineering: Mechanical,,,53715,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Yes,"""If I Know Me"" by Morgan Wallen"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Engineering: Industrial,,,53706,18.3288,-66.9713,pineapple,dog,No,night owl,No,Dancing Queen - Abba
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Industrial,,,53706,43.0739,-89.3852,pepperoni,dog,No,no preference,Maybe,Be Happy by 347aidan
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Science: Biology/Life,,,53726,30.2741,120.1551,pepperoni,cat,No,night owl,Maybe,N/A. I don't have a favorite song.
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,17,Data Science,,,53706,39.9042,116.4074,sausage,dog,No,night owl,No,"Red Eye
Justin Bieber"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,40.7128,-74.006,Other,dog,Yes,night owl,Maybe,September by Earth Wind and Fire
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Other (please provide details below).,Psychology,,53706,45.9857,-123.9082,pepperoni,dog,No,early bird,No,"""Stay"" by Post Malone"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Computer Science,,,53711,43.0739,-89.3852,Other,dog,No,night owl,Yes,Little Wing by Jimi Hendrix
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Mathematics/AMEP,,English - Creative Writing,53715,41.8661,-88.107,pepperoni,neither,No,early bird,Maybe,Unending Stream of Life -- David Maslanka
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,17,Data Science,,,53711,32.2259,35.2549,none (just cheese),cat,No,night owl,No,Dakiti - Bad Bunny
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Other (please provide details below).,Computer Science,"Along with CS, I plan to do Data Science, and maybe a certificate on Marketing.",53706,29.1523,48.1212,mushroom,dog,Yes,early bird,Maybe,Dance Monkey - Tones and I
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,20,Business: Finance,,"Economics, Information Systems",53703,43.0731,-89.4012,pepperoni,dog,No,night owl,No,White Room - Cream
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Industrial,N/A,N/A,53706,51.1785,-115.5743,none (just cheese),cat,No,night owl,Yes,green light by lorde
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Science: Physics,,"Data Science, Mathematics",53706,25.2048,55.2708,pepperoni,dog,Yes,night owl,No,AM Gold by Train
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC001,20,Engineering: Mechanical,,,53925,55.9533,-3.1883,pepperoni,cat,No,early bird,Yes,Wonderwall by Oasis
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC002,19,Other (please provide details below).,economics,,53703,33.6052,-117.8886,pepperoni,dog,No,early bird,Maybe,23 chayce beckham
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Mathematics/AMEP,,,53703,45.374,-84.9556,basil/spinach,dog,Yes,night owl,Maybe,Fire and Rain by James Taylor
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Other (please provide details below).,Atmospheric and Oceanic Science,Mathematics ,53715,45.2464,-93.3028,Other,dog,Yes,early bird,Maybe,Mr. Blue Sky by Electric Light Orchestra
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Computer Science,N/A,N/A,53715,43.0731,-89.4012,sausage,dog,No,night owl,Maybe,What You Know - Two Door Cinema Club
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Statistics,,,53706,44.3,-88.4,pepperoni,dog,Yes,early bird,Maybe,"Sing About me, I'm dying of thirst by Kendrick Lamar"
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Business: Actuarial,,"Finance, Risk Management and Insurance",53715,40.015,-105.2705,pepperoni,dog,No,night owl,Yes,Sweet Child O' Mine
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Data Science,,,53711,37.664,127.9,pepperoni,dog,Yes,night owl,Yes,Never go wrong
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,48.8566,2.3522,pepperoni,dog,No,night owl,Yes,moonwalking in the Calabasas by ddg.
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC004,20,Engineering: Mechanical,,,53703,39.9481,-74.077,sausage,dog,No,night owl,Yes,Set fire to the rain - Adele
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Data Science,,,53706,25.1204,121.5103,pineapple,cat,No,early bird,No,Studio Ghibli movie music
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Business: Information Systems,NA,Real Estate,53703,18.3368,-64.7281,mushroom,cat,Yes,no preference,Yes,"You Proof, Morgan Wallen"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC001,18,Engineering: Mechanical,,,53706,63.4195,-18.9986,none (just cheese),dog,Yes,no preference,Yes,Ticking by Zach Bryan
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Science: Biology/Life,,,53706,45.2646,-111.2533,pineapple,dog,Yes,early bird,No,Romeo and Juliet by the Dire Straits
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,37.7654,-122.4511,pepperoni,dog,No,early bird,No,All I Do - Stevie Wonder
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Astronomy/Physics,Physics,53711,43.0731,-89.4012,Other,dog,Yes,night owl,Maybe,Bank Account 21 Savage
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,Idk if this counts but I'm doing the game design certificate,53706,38.9072,-77.0369,pepperoni,cat,No,night owl,Maybe,Osmosis by Good Kid
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Industrial,,,53703,40.4168,-3.7038,sausage,dog,Yes,early bird,No,Pepas by farruco
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,,Data Science,,Statistics,53706,47.1212,-88.5645,pepperoni,dog,No,early bird,Maybe,Party in the USA
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,18,Engineering: Industrial,,,53706,43.6047,1.4442,Other,dog,Yes,night owl,Yes,Cigarettes out the window-Tv Girl
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Engineering: Mechanical,,Business ,53703,27.0993,-82.4315,pepperoni,dog,Yes,no preference,Yes,Island In The Sun
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Science: Biology/Life,,,53706,64.9631,-19.0208,mushroom,cat,No,night owl,Maybe,cardigan - Taylor Swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Other (please provide details below).,Journalism,,53706,41.3974,2.13,pepperoni,cat,Yes,no preference,Maybe,Maps - Yeah Yeah Yeahs
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,,Other (please provide details below).,Economics,,53703,47.608,122.3352,Other,cat,Yes,night owl,Yes,Revival Zach Bryan
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Statistics,Mathematics,,53706,50.8476,4.3572,pepperoni,dog,Yes,early bird,Maybe,"New Person, Same Old Mistakes - Tame Impala"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC002,19,Computer Science,N/A,N/A,53706,37.8715,112.5512,sausage,neither,Yes,no preference,Maybe,N/A
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,35.9802,-75.6421,sausage,dog,No,early bird,Yes,Gypsy - Fleetwood Mac
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Mechanical,,,53726,45.4408,12.3155,sausage,dog,No,night owl,Yes,Sultans of Swing by Dire Straights
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,40.7128,-73.9352,pepperoni,dog,Yes,night owl,Yes,Virtual Insanity - Jamiroquai
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.6403,-106.3709,sausage,dog,Yes,no preference,Maybe,Whiskey Friends by Morgan Wallen
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Engineering: Mechanical,,,53711,39.1907,-106.8192,Other,neither,No,early bird,No,Try that in a small town - Jason Aldean
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Other (please provide details below).,Undecided,,53703,40.7721,-73.9578,none (just cheese),dog,No,night owl,Yes,Company by Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Data Science,,,53706,41.2974,-96.6059,sausage,dog,Yes,night owl,Yes,m.y l.i.f.e. J cole
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53703,-33.9014,151.0576,pepperoni,dog,No,no preference,Yes,Zach Bryan - Revival
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC001,21,Business: Actuarial,,statistics ,53703,23.1291,113.2644,pineapple,dog,Yes,night owl,Yes,love story Taylor swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Other (please provide details below).,I am currently undecided but I am seriously considering Data Science at the moment.,,53715,48.7786,2.45,Other,dog,Yes,night owl,Yes,My Eyes - Travis Scott
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC004,20,Science: Biology/Life,,,53703,-81.7136,-109.3253,pineapple,neither,No,no preference,Maybe,"capybara song
just search it and you will find"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Computer Science,,,53715,41.8781,-87.6298,none (just cheese),dog,No,no preference,No,Too comfortable - Future
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Other,Civil Engineering,Spanish,53715,43.0731,-89.4012,pepperoni,dog,Yes,night owl,Maybe,Aint no mountain high enough - Marvin Gaye
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,22,Computer Science,,Data Science,53703,23.1291,113.2644,basil/spinach,cat,No,night owl,Yes,Bohemian Rhapsody - Queen
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53715,49.1747,-123.0194,green pepper,dog,No,night owl,Yes,"Gangsters Paradise
"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Science: Other,Double majoring in Biochemistry and Data Science.,"Data Science, Biochemistry ",53703,32.7157,-117.1611,Other,dog,Yes,night owl,Yes,Don't Stop; Fleetwood Mac
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Biomedical,,,53715,43.0389,-87.9065,sausage,dog,No,early bird,Maybe,505 - Artic Monkeys
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Industrial,,Business,53706,46.2388,-97.3636,sausage,dog,No,night owl,Maybe,Solo - Future
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Computer Science,,Data Science,53715,41.8781,-87.6298,Other,cat,No,night owl,Yes,Heartless by The Weeknd
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Statistics,,"Econ, Statistics",53706,55.9502,-3.1875,sausage,dog,Yes,night owl,Yes,Demons by Imagine Dragons
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Computer Science,,My second major is Data Science. My minors are Consulting and Leadership.,53711,34.0522,-118.2437,macaroni/pasta,cat,No,night owl,Yes,Consume by Chase Atlantic
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53706,41.9028,12.4964,sausage,dog,Yes,night owl,Yes,Secrets by The Weekend
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Business: Finance,,"Finance, Real Estate",53706,38.8707,-106.9809,sausage,dog,Yes,night owl,Maybe,Look after you - The Fray
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Engineering: Mechanical,,,53715,38.9828,-76.8819,basil/spinach,neither,No,night owl,Maybe,The Vampire Masquerade by Peter Gundry
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,18,Engineering: Other,,,53713,43.0663,-89.4049,pepperoni,dog,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Mechanical,1,1,53711,37,-122,sausage,cat,No,night owl,Yes,For Whom the Bell Tolls by Metallica
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,,53706,55.6761,12.5683,sausage,cat,No,no preference,Maybe,Poe Mans Dreams by Kendrick Lamar
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Data Science,,,53703,43,87,sausage,dog,Yes,night owl,Maybe,Better ma. By Pearl jam
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,23,Other (please provide details below).,Information Science,,53703,32.0853,34.7818,pepperoni,dog,No,early bird,No,Funkytown by Lipps
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC001,19,Business: Actuarial,,,53703,48.86,2.35,pepperoni,cat,No,night owl,Yes,imperial - j^p^n
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,,Statistics,53706,22.3964,114.1095,basil/spinach,neither,No,no preference,Maybe,"""Put Your Records On"" by Corinne Bailey Rae"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Other,Engineering Physics,,53703,44.9204,-93.2802,basil/spinach,dog,Yes,early bird,No,Houdini - Foster the People
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Data Science,,,53703,40.4168,-3.7038,basil/spinach,dog,No,night owl,Yes,19.10 by Childish Gambino
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Data Science,,data science,53703,56,51,mushroom,cat,No,night owl,Maybe,"too many night, metro boomin"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,My major is Economics with Mathematics Emphasis (BS),N/A,53705,51.5074,-0.1278,green pepper,dog,Yes,early bird,Maybe,"English language
Return of the Mack by Mark Morrison
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Engineering: Mechanical,,,53706,45.8,89.7,pepperoni,dog,Yes,night owl,Maybe,Hannukah Song- Adam Sandler
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Other,,,53715,45.9495,-89.151,macaroni/pasta,dog,Yes,early bird,No,More Than a Feeling by Boston
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,57703,74.8,41.33,mushroom,dog,No,night owl,No,Dancing with Myself by Billy Idol
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53715,29.9511,-90.0715,none (just cheese),cat,No,night owl,No,Shut up and Dance -Walk the moon
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,N/A,Risk Management & Insurance,53711,29.9511,-90.0715,pepperoni,dog,Yes,night owl,Maybe,The jeopardy song
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,43.0389,-87.9065,pepperoni,neither,No,night owl,Yes,"After Last Night by Bruno Mars, Anderson Paak, Silk Sonic "
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Other (please provide details below).,Accounting,Information Systems,53703,41.9028,12.4964,mushroom,cat,Yes,early bird,Yes,"Steady Love, Ben Rector"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53726,53.4645,-2.2896,pineapple,cat,Yes,night owl,Yes,"Juke Box Hero
Foreigner"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,Mathematics ,Data Science ,53715,43.0731,-89.4012,pineapple,dog,Yes,early bird,No,"""The Changing Times"" by Earth, Wind & Fire "
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,23,Engineering: Mechanical,,,53703,40,-76,Other,dog,No,early bird,Maybe,Better Now - Post Malone
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Genetics,N/A,53715,41.8781,-87.6298,Other,dog,No,night owl,Yes,Pursuit of Happiness- Kid Cudi
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Data Science,,Economics,53706,43.0722,89.4008,pepperoni,cat,Yes,night owl,Yes,Caribbean Queen (No More Love On The Run) By Billy Ocean
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Business: Other,,,53706,41.8847,-87.6166,pepperoni,dog,No,night owl,Yes,Overdue (feat. Travis Scott) by Metro Boomin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Genetics,Certificate: Data Science & Global Health,53715,41.8781,-87.6298,Other,dog,No,night owl,Yes,Pursuit of Happiness- Kid Cudi
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53706,43.0592,141.3555,sausage,dog,No,no preference,Maybe,Top of the World - Carpenters
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,,,53703,43.7696,11.2558,sausage,dog,No,night owl,Yes,Little wing Jimi Hendrix
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,43.2286,-88.1104,pepperoni,dog,Yes,early bird,Yes,"Let's Get It On, Marvin Gaye"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Engineering: Industrial,N/A,Entrepreneurship certificate. ,53715,41,87,pepperoni,dog,Yes,early bird,Maybe,Margaritaville - Jimmy Buffett
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,Possibly business finance ,53706,35.2488,24.9132,pepperoni,dog,Yes,night owl,Maybe,Letter from Houston by Rod Wave
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pepperoni,cat,No,no preference,Maybe,Virtual Insanity - Jamiroquai
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Other (please provide details below).,My major is Information Science.,I'd like to pursue the Data Science Certificate or major as well.,53703,38.1157,13.3615,mushroom,cat,No,early bird,Yes,Snooze by SZA
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53703,23,114,Other,neither,No,no preference,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,43.1101,-87.9074,sausage,dog,No,night owl,Maybe,God's Plan- Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Data Science,,,53705,-19.9173,-43.9346,sausage,dog,Yes,no preference,No,Clube da Esquina 7 - Milton Nascimento
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Data Science,,Journalism,53706,30.3935,-86.4958,macaroni/pasta,dog,Yes,night owl,Maybe,One Man Band by Old Dominion
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Computer Science,,,28431,48.8647,2.349,pineapple,dog,No,night owl,Yes,Here with me by dv4d
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Data Science,,,53703,38.9433,-94.7342,pineapple,cat,No,early bird,Yes,Sun to Me- Zach Bryan
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Other,,,53703,40.7608,111.891,pepperoni,dog,Yes,night owl,No,Alors On Danse - Stromae
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53706,40.7128,-74.006,sausage,dog,No,night owl,Yes,Impossible - Travis Scott
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Mathematics/AMEP,,,53706,64.8367,-147.7389,Other,dog,No,early bird,Yes,Back in Black by AC/DC
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,,,53701,45.1027,-93.4649,sausage,cat,Yes,early bird,Maybe,"I prefer anything country, but my favorite song right now is Life Changes by Thomas Rhett. "
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Biomedical,,,53703,35.2271,-80.8431,pineapple,dog,No,early bird,No,Amazing by Rex Orange County
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Science: Other,I am currently undecided but interested in the STEM and Business fields,,53706,37.3891,-5.9845,basil/spinach,dog,Yes,no preference,Yes,"""If I Can Dream"" by Elvis Presley"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,,Engineering: Mechanical,,,53703,50.0755,14.4378,pepperoni,neither,No,early bird,Maybe,"What You Won't Do For Love by Bobby Caldwell
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Economics,Data Science,53703,-37.8136,144.9631,pepperoni,dog,Yes,no preference,Maybe,Need to know -John Newman
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Biomedical,BME,N/A,53711,22.54,114,sausage,dog,Yes,no preference,No,A sky full of stars - coldplay
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Industrial,,,53706,36.1627,-86.7816,sausage,dog,Yes,night owl,Maybe,Like We Used To by A Rocket To The Moon
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,20,Engineering: Biomedical,,,53719,47.6062,-122.3321,pepperoni,cat,Yes,night owl,Yes,Ex-factor by Lauryn Hill
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Other (please provide details below).,Economics,,53703,53.3501,6.2662,none (just cheese),dog,Yes,night owl,Yes,Heavy Eyes by Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Business: Actuarial,,"Finance, RMI, Economics",53726,42.9765,88.1084,pineapple,dog,Yes,early bird,No,"7 & 7, Turnpike Troubadours"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,22,Other (please provide details below).,Education Studies,Psychology,53703,35.8714,128.6014,pepperoni,cat,No,no preference,Yes,Top of the World - Carpenters
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Other (please provide details below).,Economics,,53706,43,-89,pepperoni,dog,Yes,night owl,Yes,Baby Shark
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Data Science,,Mathematics,53706,37.9659,23.7325,sausage,cat,Yes,night owl,Yes,No Surprises by Radiohead
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,21,Science: Other,environmental sciences,,53703,48.1351,11.582,pepperoni,cat,No,no preference,Maybe,I lived-One Republic
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Data Science,,Mathematics,53715,41.8781,-87.6298,pineapple,dog,No,night owl,No,All My Love by Noah Kahan
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,20,Engineering: Biomedical,,,53715,36.16,-86.78,pepperoni,dog,Yes,early bird,No,I Remember Everything by Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,No,early bird,Maybe,Take a Walk by Passion Pit
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Data Science,,CS,53706,26.0745,119.2965,green pepper,cat,Yes,night owl,Yes,We will Rock you
COMP SCI 319:LEC003,LEC003,27,Other (please provide details below).,Information Science,No,53705,19.7418,-155.8444,none (just cheese),cat,No,no preference,Maybe,Don't look back in anger
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,53.3456,-6.2559,basil/spinach,dog,Yes,no preference,Yes,"Stick Season, Noah Kahan"
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53703,41.3851,2.1734,pepperoni,dog,No,night owl,Maybe,The Other Side of the Door by Taylor Swift
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,22,Science: Physics,,"Mathematics in the Physical and Biological Sciences(BS), Computer Science Certificate ",53703,42.8501,-106.3252,pepperoni,cat,Yes,early bird,Maybe,Dopesmoker - 2022 Remastered Version - Sleep
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC004,20,Other (please provide details below).,Psychology and Spanish,,53701,45.891,-123.9619,basil/spinach,dog,Yes,early bird,Yes,Ella Baila Sola by Peso Pluma
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,My primary field of study is Economics but I am also pursuing a certificate in data science. ,,53703,41.8781,87.6298,pepperoni,dog,No,night owl,Maybe,Hey driver - Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,30.2672,-97.7431,Other,dog,No,no preference,No,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Engineering: Mechanical,,,53703,39.7392,-104.9903,pepperoni,dog,Yes,night owl,Maybe,Nikes on my feet Mac Miller
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Computer Science,,,53703,40.2436,-109.01,pepperoni,dog,No,no preference,Maybe,RAVE RATS VOLUME 1: INTERDIMENSIONAL LIFE by ooxygen
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Business: Information Systems,,,53703,41.8781,-87.6298,basil/spinach,dog,Yes,night owl,Yes,Margaritaville by Jimmy Buffet
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53715,24.4539,54.3773,pepperoni,cat,Yes,early bird,No,IDK
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,21,Engineering: Other,,,53703,48.2082,16.3738,sausage,dog,Yes,night owl,No,Shallow - Lady Gaga
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Business: Information Systems,,BUS: Finance,53706,44.9537,-93.09,sausage,dog,No,night owl,No,"Baby, Justin Bieber"
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,20,Computer Science,,,53703,42.3601,-71.0589,pineapple,dog,No,night owl,Maybe,"Erase Me, Kid Cudi"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53715,44.8945,-93.6728,pepperoni,dog,No,night owl,Maybe,Hey Driver- Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53706,47.7502,-90.3356,sausage,dog,No,no preference,Yes,"Fly me to the moon, Frank Sinatra"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,,,53706,59.9139,10.7522,pepperoni,dog,Yes,night owl,Yes,Normal Girl - SZA
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC001,18,Data Science,,,53706,50.0755,14.4378,Other,dog,No,night owl,Yes,Break From Toronto - PARTYNEXTDOOR
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Business: Information Systems,,Accounting,53597,25.7617,-80.1918,pepperoni,cat,No,no preference,Maybe,Graduation - Kanye West
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,39.74,-104.98,mushroom,cat,Yes,night owl,Yes,temperature-sean paul
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,,53706,45.4408,12.3155,mushroom,cat,Yes,no preference,No,Santeria by Sublime
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53703,45.056,92.8088,basil/spinach,dog,Yes,early bird,No,More Than A Feeling by Boston
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,21,Business: Other,Marketing,,53703,41.4174,2.2122,mushroom,dog,No,early bird,Yes,One of my favorite songs is Pull me out of this by Fred Again
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Computer Science,,,53703,35.6895,139.6917,mushroom,cat,Yes,night owl,Yes,Never gonna give you up -Rick Astley
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,37.4605,-122.1703,sausage,dog,No,no preference,Yes,saturday night
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Business: Information Systems,,Finance,53703,6.5244,3.3792,Other,cat,Yes,early bird,No,The Color Violet - Tory Lanez
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC003,20,Data Science,Comm Arts,no,53703,39.9042,116.4074,pineapple,dog,No,night owl,Maybe,For Tonight --- Giveon
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Industrial,,,53703,39.74,-104.98,mushroom,dog,Yes,night owl,No,"vienna, Billy Joel"
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Mechanical,,,53706,49.2764,-0.7056,sausage,dog,Yes,early bird,Maybe,Stairway to Heaven by Led Zeppelin
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Science: Other,economics,DS,53703,31.2304,121.4737,sausage,dog,No,night owl,Yes,“the greatest” Lana Del Rey
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53706,17.385,78.4867,pepperoni,dog,No,early bird,Maybe,Saint Pablo - Kanye West
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Science: Other,,,53703,44.424,-124.069,basil/spinach,dog,No,night owl,Yes,Waltz No. 2 by Dmitri Shostakovich
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Data Science,,,53715,42.3601,-71.0589,Other,dog,Yes,night owl,Maybe,All Your'n by Tyler Childers
COMP SCI 319:LEC003,LEC003,,Statistics,,,53715,24.18,102.98,pineapple,neither,Yes,no preference,No, Never gonna give you up
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Engineering: Industrial,,,53703,42.3601,-71.0589,mushroom,dog,No,no preference,Yes,"Heavy Eyes, Zach Bryan
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Science: Biology/Life,,,53703,35.6895,139.6917,none (just cheese),cat,No,night owl,No,Cake by the Ocean by DNCE
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,Economics,Political Science,53715,40.7128,74.006,sausage,dog,No,night owl,Yes,Stacey's Mom
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Data Science,,,53706,22.3312,103.838,pineapple,dog,Yes,no preference,Maybe,"""2 soon"" - keshi"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Computer Science,,Intend to double major in Data Science,53706,41.8844,-87.6191,pineapple,dog,No,night owl,Yes,1998 by Monsune
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,Economics,Data Science Certificate ,53715,40.7128,-74.006,pepperoni,cat,No,night owl,Yes,"It’s all so incredibly loud, Glass Animals"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,No,no preference,Yes,Immortal by 21 Savage
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Data Science,,,53706,41.0082,28.9784,none (just cheese),dog,No,night owl,Yes,Little Dark Age by MGMT
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Computer Science,,,53703,43.0731,-89.4012,pepperoni,dog,Yes,early bird,No,Romeo and Juliet by Peter McPoland
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Data Science,Information Systems,,53706,59.9139,10.7522,Other,dog,No,early bird,Yes,"Deep Down(ft. Never Dull) - Alok
Give it to Me - Timbaland"
COMP SCI 319:LEC002,LEC001,,Data Science,,,53593,55.9502,-3.1875,pineapple,neither,No,night owl,Maybe,I Will Survive by Gloria Gaynor
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Data Science,,Economics,53703,39.9042,116.4074,pineapple,cat,No,no preference,Yes,LMLY
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Other (please provide details below).,Biochemistry,,53706,51.5099,-0.1278,basil/spinach,dog,Yes,early bird,Yes,Burn Burn Burn by Zach Byran
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,41.8894,12.4924,sausage,dog,No,early bird,Yes,"Houstonfornication, Travis Scott"
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,,,53703,42.3249,-71.0706,sausage,dog,No,night owl,Maybe,Blood on my jeans - Juice Wrld
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Biomedical,,,53703,18.582,-68.4055,pepperoni,dog,Yes,night owl,No,Rod Wave - Call Your Friends
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Business: Finance,,,53715,41.3851,2.1734,sausage,dog,No,night owl,No,Closer By the Chainsmokers
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Science: Other,,,53706,42.3601,-71.0589,Other,dog,No,no preference,No,"Electric Feel, MGMT"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,40.7128,-74.006,none (just cheese),dog,No,night owl,Yes,I dont listen to music
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Business: Actuarial,,Risk Management and Insurance,53703,42.3012,-71.3157,sausage,dog,Yes,night owl,No,Sunday by Earl Sweatshirt
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,22,Data Science,.,.,53706,37.5,127,mushroom,neither,No,early bird,No,snowman - seung hwan jeong
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,sausage,cat,No,night owl,Yes,
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,Economics,Data Science,53706,22.3964,114.1095,none (just cheese),dog,No,night owl,Yes,Black and White by Juice Wrld
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Actuarial,,"Statistics, Risk Management and Insurance, Certificate in Mathematics",53719,43.0731,-89.4012,pepperoni,dog,No,night owl,Yes,"Sovereign Light Cafe, Keane"
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC002,20,Computer Science,,,53705,31,-238,pepperoni,dog,No,night owl,Yes,Castle on the Hill - by Ed Sheeran
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53706,37.5665,126.978,pepperoni,neither,No,no preference,No,World to the wise. Matt Corman
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Engineering: Mechanical,N/A,N/A,53715,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Maybe,"STRINGS by MAX, featuring JVKE and Bazzi"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53715,43.0389,-87.9065,sausage,dog,Yes,early bird,Maybe,paranoid- Rio da yung og
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,,,53726,41.8614,-87.6114,basil/spinach,dog,Yes,no preference,No,Wildfire by Periphery
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Economics, Data Science,53711,35.7101,139.8107,mushroom,dog,Yes,early bird,Yes,Lemon Tree by the Fools Garden
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC002,21,Engineering: Biomedical,,,53703,38.5385,-75.0617,basil/spinach,cat,Yes,early bird,Maybe,"Be young, be foolish, be happy by The Tams."
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Other (please provide details below).,"Still pretty undecided but I am between Computer Science, Data Science, and business. ",,68114,39.7392,-104.9903,pepperoni,dog,No,no preference,Maybe,All Star by Smash Mouth
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53703,35.5951,-82.5515,pepperoni,dog,Yes,night owl,Yes,Good Days - SZA
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,41.8781,-87.6298,pepperoni,cat,Yes,night owl,Yes,The Adults Are Talking - The Strokes
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,22.1565,-100.9855,pepperoni,dog,Yes,early bird,No,FE!N by Travis Scott
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53706,42.8886,88.0384,green pepper,dog,Yes,night owl,Yes,One of my favorite songs is '98 Braves by Morgan Wallen.
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Science: Biology/Life,,,53711,1.2062,103.7959,green pepper,cat,No,early bird,No,Golden Hour by Mark Lee
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,17,Other (please provide details below).,Economics,,53706,51.5074,-0.1278,pepperoni,cat,Yes,night owl,Maybe,A Sky Full Of Stars- Coldplay
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Business: Finance,,Information Systems,53715,42.3601,-71.0589,none (just cheese),dog,Yes,no preference,Maybe,December 1963 (What a Night)
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Science: Biology/Life,,,53706,36.1699,-115.1398,mushroom,dog,No,night owl,Yes,Drive By by Train.
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,44.9105,-93.3487,sausage,dog,No,early bird,No,"Center Point Road by Thomas Rhett, Kelsea Ballerini"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,,53706,37.778,-122.42,pepperoni,dog,No,night owl,No,Work Song by Hozier
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Other,Materials Science and Engineering,,53703,51.5074,-0.1278,mushroom,cat,No,early bird,Yes,Good Old-Fashioned Lover Boy - Queen
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Science: Other,Microbiology,,53705,41.8781,-87.6298,pepperoni,cat,No,early bird,No,"So Right, Shaun"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Computer Science,,Mathematics,53703,38.707,-9.1356,none (just cheese),dog,No,no preference,Maybe,"Taylor Swift ""Paper Rings"""
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,40.7948,-73.9628,none (just cheese),dog,No,night owl,Yes,sk8er boi - arvil lavinge
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Data Science,Data Science ,Information Science,53706,44.37,-89.81,pepperoni,neither,No,night owl,Yes,How You Like That- Blackpink
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Computer Science,,,53715,43.0731,-89.4012,Other,cat,No,night owl,Yes,Feel Good Inc. by Gorillaz
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC003,20,Data Science,Data Science ,,53711,29.6548,91.1405,pepperoni,dog,No,night owl,Yes,608 by Salt
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Science: Other,Global Health,,53703,41.8781,87.6298,none (just cheese),dog,Yes,early bird,Maybe,Slide by Calvin Harris ft. Frank Ocean & Migos
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Other (please provide details below).,Information Science ,I have two minors; Data Science and Digital Studies ,53703,-87.6298,41.8781,green pepper,cat,No,early bird,Maybe,August by Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53703,39.9042,116.4074,none (just cheese),dog,No,early bird,No,If by Bread
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Languages,,,53703,39.74,-105,macaroni/pasta,cat,No,night owl,Yes,Water by Mother Falcon
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,144,-37,pepperoni,dog,No,no preference,Yes,[Excitable - Def Leppard] (https://www.youtube.com/watch?v=jqVfxWgfWhw)
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,41.3851,2.1734,sausage,dog,No,early bird,Yes,"Memories, by David Guetta."
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Engineering: Biomedical,,,53736,41.8781,-87.6298,pineapple,dog,No,night owl,Maybe,softly by clairo
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Engineering: Mechanical,,,53715,59.9139,10.7522,mushroom,cat,Yes,early bird,No,"Perfect places
Artist: Lorde"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53715,47.0505,8.3053,sausage,dog,Yes,no preference,Yes,"Breathe Deeper, Tame Impala"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,,Information Systems (Business),53703,33.4725,-81.9644,pepperoni,dog,No,night owl,Yes,"Last Train Home, John Mayer."
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,24,Other (please provide details below).,Economics with Mathematical Emphasis ,"Data Science,",53703,42.7165,12.1116,pepperoni,dog,Yes,night owl,Yes,Tiny Dancer by Elton John
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,43.7696,11.2558,pepperoni,dog,No,early bird,No,Pride-Kendrick Lamar
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Business: Other,,,53703,35.6895,139.6917,pineapple,dog,Yes,night owl,Maybe,"Song: Cupid
Artist: FIFTY FIFTY"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Engineering: Industrial,,,53703,41.8781,-87.6298,sausage,dog,No,early bird,No,passionfruit- drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53703,39.1031,-84.512,pepperoni,cat,No,early bird,Yes,Call Me Maybe - Carly Rae Jepsen
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Computer Science,,"Data Science
Game Design certificate",53702,28.7041,77.1025,pepperoni,dog,No,night owl,Yes,Better Now by Post Malone
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Science: Chemistry,,Biochemistry,20016,38.9072,-77.0369,pepperoni,dog,Yes,night owl,Yes,I would rather not answer
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Science: Other,Nutritional Sciences,,53703,41.8781,-87.6298,green pepper,cat,No,early bird,Yes,Sweet Virginia by The Rolling Stones
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53715,25.7575,-80.2515,pepperoni,dog,No,night owl,Yes,Touch the Sky - Kanye West
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Information science,Human development and family studies ,53726,45.4059,-86.9087,pepperoni,dog,No,night owl,Yes,Radio Lana Del Ray
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,Mathematics,53706,43.0731,-89.4012,pepperoni,dog,No,night owl,No,"*******************
Party Rock Anthem,
*******************
******
LMFAO
******"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,Pursuing certificate in Data Science. ,53711,35.0116,135.768,mushroom,dog,Yes,night owl,Yes,Nightcall- Kavinsky
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Business: Actuarial,,"Risk Management & Insurance, Finance",53703,37.4467,25.3289,none (just cheese),dog,No,early bird,Maybe,london boy by taylor swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Other (please provide details below).,Economics,Data Science Certificate,53711,40.7131,-74.0072,sausage,dog,Yes,no preference,No,https://www.youtube.com/watch?v=XjN8qEs_K7c&list=PLuVodMYS9xWblpzyNp9CwjERyndPTnCGV&index=6
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53706,44.9232,-93.4853,pepperoni,dog,No,night owl,Yes,Kodachrome- Paul Simon
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Data Science,,,53703,24.4539,54.3773,green pepper,neither,No,night owl,Yes,Kiss The Sky
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Engineering: Mechanical,n/a,n/a,53703,32.7157,-117.1611,pepperoni,dog,Yes,night owl,Maybe,Dancing With Myself by Billy Idol
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,17,Computer Science,,,53706,13.0827,80.2707,pepperoni,dog,No,night owl,No,Starships by Nicki Minaj
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,-,-,53715,44.1782,-88.4772,pepperoni,dog,Yes,night owl,Maybe,Just Wanna Rock - Lil Uzi Vert
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Other (please provide details below).,Economics,Marketing or Mathematics,53706,40,116,pineapple,dog,No,night owl,Maybe,Save Your Tears(Remix) --Ariana Grande& The Weekend
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Science: Biology/Life,,"It's not a secondary major, but I'm completing a certificate in Computer Science.",53562,55.9515,-3.1895,basil/spinach,dog,No,night owl,Yes,"Second Child, Restless Child by The Oh Hellos"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Data Science,,,53597,47.2144,14.7788,Other,cat,No,no preference,Yes,Black Summer - Red Hot Chili Peppers
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Engineering: Industrial,,,53706,24.9905,-77.3897,none (just cheese),dog,No,night owl,Yes,"East Side of Sorrow
Zach Bryan"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Economics,,53703,42.3601,-71.0589,pepperoni,dog,Yes,night owl,Yes,Life i a Highway - Rascal Flatts
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Data Science,Double majoring in Data Science and Consumer Behavior and Marketplace Studies,Consumer Behavior and Marketplace Studies,53703,35.1796,129.0756,sausage,cat,Yes,night owl,Yes,The Kid Laroi - Always do
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Statistics,,,53706,37.5519,127.0246,pepperoni,dog,Yes,early bird,Yes,"I have few.
Madvillain : Great Day
Radiohead: Let down
The Strokes: Hard to Explain"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,basil/spinach,dog,No,night owl,Yes,Zach Bryan - I remember everything
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Engineering: Industrial,,,53726,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,Bohemian Rhapsody by Queen
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53706,43,87,pineapple,dog,Yes,no preference,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,41.8781,-87.6298,basil/spinach,dog,Yes,early bird,Yes,"Blue World, Mac Miller "
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,Civil Engineering,,53715,44.513,88.013,pepperoni,dog,Yes,night owl,Yes,I Remember You- Skid Row
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53726,43.0389,-87.9065,pepperoni,cat,No,night owl,Yes,Supercut by Lorde
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,,,53703,51.5986,-0.0752,sausage,dog,Yes,early bird,Maybe,Today is a Good Day - Ice Cube
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Engineering: Industrial,,,53706,21.593,-158.1034,none (just cheese),dog,No,early bird,Yes,Doses & Mimosas by Cherub
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Mathematics/AMEP,,Data science,53719,-27.4954,-64.8601,basil/spinach,cat,No,early bird,No,Andromeda by Weyes Blood
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Business: Finance,N/A,N/A,53703,41.87,-87.6657,pepperoni,dog,No,no preference,Maybe,The world is yours- Nas
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53711,40.865,-73.4175,macaroni/pasta,dog,No,early bird,Maybe,Piano Man Billy Joel
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Science: Other,Psychology,,53706,22.5429,114.0596,none (just cheese),dog,Yes,no preference,Maybe,Ballad in G minor by Chopin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Mathematics/AMEP,,,53715,,40.7128,pineapple,cat,No,early bird,Maybe,a little bit yours by jp saxe
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Political Science,,53715,40.7094,-73.8049,pepperoni,dog,No,early bird,No,Deal by Jerry Garcia.
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,"I am a Mechanical Engineer interested in automotive engineering; car design, formula 1 etc.",,53706,45.677,-111.0429,sausage,dog,Yes,night owl,Maybe,"Oklahoma City, Zach Bryan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,,,53703,42.6507,18.0944,pineapple,dog,No,night owl,Maybe,Sick Love by The Red Hot Chili Peppers
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Biomedical,,,53706,12.9716,77.5946,basil/spinach,dog,No,night owl,Yes,Right Round - Flo Rida
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Business: Information Systems,,,53715,43.0389,-87.9065,pepperoni,dog,No,night owl,Maybe,Juice World - Wasted
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Economics,,53703,-8.4095,115.1889,Other,dog,No,night owl,No,Sinônimos
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Engineering: Biomedical,,,53703,27.5268,-82.7363,pineapple,dog,No,no preference,Yes,The Last Great American Dynasty by Taylor Swift
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53726,43,-88,pepperoni,dog,No,night owl,Yes,Wonderful World by Sam Cooke
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Psychology ,Data Science Certificate,53703,40.7831,-73.9713,none (just cheese),dog,Yes,early bird,Yes,Doo Wop - Ms. Lauryn Hill
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,n/a,n/a,53703,41.9,-87.63,pepperoni,dog,Yes,early bird,No,Crocs & Wock - Babytron
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Science: Biology/Life,,Psychology,53706,33.198,-96.615,sausage,cat,No,night owl,Maybe,Experience - Ludovico Einaudi
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Statistics,,data science,53706,43.0759,89.3991,mushroom,dog,No,no preference,No,"running up that hill
Kate Bush"
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,63105,38.6418,-90.3342,pepperoni,dog,No,night owl,Yes,Ain't No Mountain High Enough by Marvin Gaye and Tammi Terrell.
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,20,Engineering: Mechanical,,,53703,46.0216,-90.135,sausage,dog,No,night owl,Maybe,"Kickstart my heart, Motley Crue"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,22,Science: Chemistry,,,53129,10.7765,106.701,mushroom,cat,No,night owl,No,girls like me don't cry (remix) - thuy ft. MIN
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,25,Other (please provide details below).,Social Work,,53713,46.8537,-91.1071,tater tots,cat,No,no preference,Maybe,Mona Lisa by Dominic Fike
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Data Science,,,53715,48.1934,-0.6643,pepperoni,dog,No,early bird,No,Renegade by Big Red Machine (ft. Taylor Swift)
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Global Health,,53715,13.2263,72.4973,mushroom,dog,Yes,no preference,Yes,Around me - Metro Boomin
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Computer Science,,,53726,41.813,-87.629,pepperoni,dog,No,night owl,Yes,Self Control by Frank Ocean
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Other (please provide details below).,Sociology!,,53703,43.0139,-83.5983,pepperoni,dog,Yes,night owl,Yes,Thneedville by John Powell and Cinco Paul
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,43.1117,-88.5011,pepperoni,dog,No,night owl,Yes,Bucket List by Mitchell Tenpenny
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,,Science: Other,Genetics and genomics ,,53711,42.78,-89.3,pepperoni,dog,No,night owl,Yes,Sunroof- Nicky Youre
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Other (please provide details below).,ECONOMIC,,53703,43,-80,none (just cheese),cat,No,night owl,Maybe,WOLVES (Hauzer)
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Pharmacology & Toxicology,Neurobiology,53706,35.0116,135.768,mushroom,cat,Yes,night owl,Maybe,All In My Head by Whethan
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,,Engineering: Industrial,,,53715,21.3069,-157.8583,tater tots,neither,Yes,early bird,No,Brian's Movie: peach pit
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Information Systems,,Supply Chain Management,53703,44.978,-93.2707,sausage,dog,No,night owl,Yes,"Upside Down, Jack Johnson"
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Computer Science,N/A,"Economics, Data Science",53706,33.749,84.388,pineapple,dog,No,no preference,Yes,Ctrl + Del by MegaGoneFree
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Biomedical,,,53706,41.8781,-87.6298,sausage,dog,Yes,night owl,Maybe,Entropy by Daniel Caesar
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Engineering: Mechanical,,"electrical engineering
",53706,23.9314,120.5641,sausage,neither,Yes,early bird,Yes,"There is a light that never goes out, the Smiths"
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,Data Science,53715,45.4343,12.3388,pepperoni,cat,No,night owl,No,Teenagers by My Chemical Romance
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,57303,38.8339,-104.8214,pepperoni,dog,No,night owl,Yes,Run-Around by Blue Traveler
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Computer Science,,"Statistics, Data Science Certificate, Mathematics Certificate",53715,41.8781,-87.6298,Other,dog,Yes,early bird,Maybe,"FE!N
Travis Scott, Playboi Carti"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Engineering: Industrial,,,53706,47.6062,-122.3321,sausage,dog,No,no preference,Maybe,Sunday Bloody Sunday - U2
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,21,Science: Biology/Life,,,53715,46.7867,92.1005,basil/spinach,dog,Yes,night owl,No,"Santeria, Sublime"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Data Science,,Economics,53715,34.0522,-118.2437,sausage,neither,Yes,no preference,Maybe,My favorite one will be The tale of 2 Citiez by J Cole
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Engineering: Other,,International Engineering,53703,40.4168,-3.7038,pepperoni,dog,No,night owl,No,"El Dorado - Zach Bryan
Scenes from an Italian restaurant - Billy Joel
Wouldve could’ve should’ve - Taylor swift"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Mechanical,,,53715,48.1351,11.582,sausage,dog,No,no preference,Maybe,In Your Atmosphere (live) - John Mayer
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,42.3601,-71.0589,macaroni/pasta,cat,Yes,night owl,Yes,Colder weather- Zac brown band
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Data Science,no,Spanish,53706,45.4408,12.3155,pineapple,dog,No,early bird,No,August - Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,Communication Arts,Sports Communication Certificate,53703,44.2947,90.8515,pineapple,dog,No,night owl,No,Simulation Swarm - Big Thief
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Science: Physics,,Mathematics,53706,46.2044,6.1432,sausage,dog,Yes,early bird,Yes,The Color Violet - Tory Lanez
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,43.0731,-89.4012,none (just cheese),dog,Yes,no preference,Yes,Starboy - Weeknd
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Other,Chemical engineering,,53706,34.3416,108.9398,pepperoni,cat,No,night owl,Yes,You Belong With Me - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,18,Engineering: Mechanical,,,53706,43.0597,-88.0269,pineapple,dog,No,no preference,Yes,AA-Isaiah Rashad
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Mechanical,,,53715,41.8781,-87.6298,pepperoni,dog,No,no preference,Maybe,"Margaritaville, Jimmy Buffett"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Other (please provide details below).,Atmospheric and Oceanic science ,Does ROTC count?,53706,47.8864,106.9057,mushroom,dog,Yes,early bird,Yes,"I have a lot lol
Water no get enemy-Fela Kuti is probably my favorite
I also love 70s rock if you want to talk about bands from then, a little from the 80s "
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Data Science,,Personal Finance,53703,51.5074,-0.1278,sausage,dog,No,night owl,Yes,White Iverson - Post Malone
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53726,43,-89,pineapple,dog,No,early bird,No,Pretty much anything by Led Zeppelin
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Business: Information Systems,N/A,N/A,53713,37.7749,-122.4194,sausage,dog,No,night owl,Yes,GEEKALEEK by OHGEESY
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,,,53703,40.788,-74.3921,sausage,dog,No,early bird,No,"i know you hate me, midwxst"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Data Science,,Political science ,53715,40.7128,-74.006,basil/spinach,dog,Yes,early bird,No,Slide Away by Oasis
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Data Science,,,53706,41.9028,12.4964,pepperoni,dog,Yes,night owl,Yes,Headlines by Drake
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,43.7696,11.2558,macaroni/pasta,dog,No,no preference,Yes,I Remember Everything by Zach Bryan
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,computer science,53703,31,121,mushroom,dog,No,night owl,No,lemon tree
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Business: Finance,,,53703,43.4796,-110.7624,mushroom,dog,Yes,night owl,Yes,shout Pt. 1 and 2 - the isley brothers
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Mathematics/AMEP,,Data Science,53703,39.1031,-84.512,Other,dog,Yes,no preference,Maybe,
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Computer Science,,Data Science,53703,41.8781,-87.6298,pepperoni,dog,No,night owl,Maybe,Cupid by Fifty Fifty
COMP SCI 319:LEC002,LEC002,25,Business: Other,Business Analytics,None,53705,15.2993,74.124,tater tots,dog,No,early bird,No,Shake it off - By Taylor Swift
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,47.8112,13.055,macaroni/pasta,dog,Yes,night owl,Yes,Flashing Lights by Kanye West
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,22,Statistics,,,53703,37.535,126.99,mushroom,dog,Yes,no preference,Yes,Ghost of you by 5SOS
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Business: Other,,,53703,50.0755,14.4378,Other,dog,Yes,night owl,Yes,Dark Horse. Katy Perry
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Data Science,,,53703,40.6782,-73.9442,pepperoni,dog,Yes,night owl,No,Shiver - Coldplay
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Engineering: Industrial,,,53706,41.9028,12.4964,basil/spinach,dog,No,night owl,Yes,Can't Tell Me Nothing by Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Other (please provide details below).,Economics,,53703,41.8781,-87.6298,pepperoni,cat,No,early bird,No,Too many nights- Metro Boomin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Econ BS,Certificates in DS & Consulting,53703,41.8781,-87.6298,basil/spinach,dog,No,night owl,Maybe,Shiver-Coldplay
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,21,Engineering: Biomedical,,,53726,45.17,-93.87,pepperoni,dog,No,night owl,Yes,Eye of the Tiger by Survivor
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53715,-33.8688,151.2093,pepperoni,dog,No,night owl,Maybe,Read My Mind by the Killers
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Biomedical,,Computer science or data science,53706,40.7128,-74.006,basil/spinach,dog,No,early bird,Yes,any taylor swift
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53703,37.5665,126.978,sausage,cat,Yes,night owl,Yes,
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Economics,,53703,34.4208,-119.6982,pepperoni,dog,No,early bird,No,Chicken Fried-Zac Brown Band
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Science: Biology/Life,biochemistry,certificate of data science,53711,31.23,121.47,sausage,dog,No,night owl,No,"
Taylor Swift
Love Story"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Data Science,,Econ,53715,42.3601,-71.0589,sausage,dog,No,night owl,No,Let it Happen Tame Impala
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,21,Other (please provide details below).,Economics,Certificate in Data Science,53703,47.6062,122.3321,pepperoni,dog,No,no preference,Yes,Elton John- Funeral for a Friend/Love Lies Bleeding
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,21,Data Science,,,53715,43.215,-87.9955,Other,dog,Yes,night owl,Yes,
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Information Systems,,"Risk Management and Insurance, Legal Studies",53715,41.8781,-87.6298,mushroom,cat,No,night owl,Yes,"All too Well, Taylor Swift"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Mathematics/AMEP,I'm a double-major in Math and Computer Science. ,I'm a double-major in Math and Computer Science. ,53706,43.073,-89.401,pepperoni,dog,Yes,no preference,Yes,Listen to the Music: The Doobie Brothers
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Engineering: Mechanical,,,53707,43.0779,-89.3902,pepperoni,dog,No,early bird,No,"Revival, Zach bryan "
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Data Science,,Economics Major/ Data Science Minor,53703,41.2959,73.7933,none (just cheese),dog,Yes,night owl,Maybe,Sky Full of Stars- Coldplay
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Business: Information Systems,,Business: Finance,53715,39.7392,-104.9903,sausage,cat,No,night owl,Yes,Lose My Mind - Jai Wolf
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Finance,,Econ,53715,21.1619,-86.8515,pepperoni,cat,No,night owl,Maybe,Just the two of us - Washington Jr.
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,45.1865,-87.1239,pepperoni,dog,No,no preference,No,Hey Driver- Zach Bryan
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Computer Science,,,53706,36.2048,138.2529,pineapple,dog,Yes,night owl,Maybe,Pretender by OFFICIAL HIGE DANDISM
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,20,Business: Information Systems,,,53598,43.0731,-89.4012,pepperoni,dog,Yes,night owl,Yes,Holiday - Green Day
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,22,Engineering: Other,NA,NA,53703,41.8781,-87.6298,mushroom,cat,Yes,night owl,Maybe,Dancing Queen by ABBA
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53715,43.7696,11.2558,pepperoni,dog,No,early bird,Maybe,Last Nite-Strokes
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Engineering: Industrial,,,53706,35.6895,139.6917,pepperoni,neither,Yes,early bird,Maybe,"It will Rain - Bruno Mars
Blank Space - Taylor Swift
Right There - Ariana Grande
Stuck with U - Ariana Grande & Justin Bieber "
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Business: Finance,,,53706,37.9753,23.7361,none (just cheese),dog,No,night owl,Maybe,"Homecoming, Kanye West"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,Economics with certificate in data science ,,53715,45.4408,12.3155,Other,dog,No,early bird,No,Chris Stapleton White Horse
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53703,42.4173,27.6964,sausage,cat,No,no preference,Yes,S91 by Karol G
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Industrial,,,53703,38.288,-85.67,none (just cheese),dog,Yes,night owl,Yes,"Waiting on the world to change, John Mayer"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Information Systems,-,Considering another business major as well as a language certificate,53706,44.3289,-88.5391,pepperoni,dog,No,night owl,Maybe,Surf - Mac Miller
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Engineering: Mechanical,,,53706,43.4782,-110.7627,sausage,dog,Yes,no preference,Yes,Something in the Orange - Zach Bryan
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,17,Data Science,,,53706,55.9533,3.1883,sausage,dog,Yes,early bird,Yes,Build Me Up Buttercup by The Foundations
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,35.6528,139.8395,pepperoni,dog,No,night owl,Maybe,"For my hand, Burna Boy feat. Ed Sheeran "
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Other (please provide details below).,Economics,,53703,40.4406,-79.9959,sausage,dog,Yes,early bird,Maybe,Take Me Home Country Roads - John Denver
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,22,Science: Biology/Life,,"Data Science, Global Health ",53726,44.9765,-93.2652,pepperoni,dog,Yes,night owl,No,Where The Streets Have No Name - U2
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Other (please provide details below).,I intend to pursue a double major with Neurobiology and Data Science.,-,53706,25.1972,55.2744,mushroom,cat,No,no preference,Yes,Crazy by Aerosmith
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Business: Actuarial,,Data science,53706,40.7128,-74.006,basil/spinach,cat,No,early bird,No,Timeless by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Biology/Life,N/a,Certificate in Data Science,53715,43.0739,-89.3852,pineapple,dog,No,night owl,Yes,Hold on We're Going Home by Drake
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Industrial,,,53703,41.3894,2.1588,macaroni/pasta,dog,Yes,no preference,No,"Brazil- Declan Mckenna
British Bombs- Declan McKenna"
COMP SCI 319:LEC001,LEC001,26,Science: Other,,,53560,55.8931,-3.0666,pepperoni,dog,No,night owl,No,I'm Gonna Be (500 Miles) by the Proclaimers
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,GIS/Cartography,"Political Science, Data Science",35715,-88.99,45.1686,pepperoni,dog,Yes,early bird,Yes,With Arms Wide Open - Creed
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Other (please provide details below).,"My primary major is Economics.
",and my second major is Data Science.,53715,17.385,78.4867,mushroom,dog,No,no preference,Yes,"Say you won't let go- James Arthur
GASOLINA- Daddy Yankee"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,,53705,1.3521,103.8198,Other,cat,No,no preference,Yes,"Held Up in New York City - Mia Lailani, Devan Ibiza"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Business: Actuarial,,Risk management,53706,39.1333,117.1833,mushroom,cat,No,night owl,Yes,"One of my favorite songs is ""Maroon .45"" by ME3CH."
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Other (please provide details below).,economics,statistics,53706,39.9042,116.4074,mushroom,neither,Yes,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,22,Science: Biology/Life,,,53703,50.0755,14.4378,sausage,dog,Yes,early bird,No,Hundred by Khalid
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53706,37.5665,126.978,sausage,dog,No,early bird,Maybe,Don't look back in anger- Oasis
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Data Science,,Economics,53703,87.6298,41.8781,sausage,dog,No,early bird,Yes,"Franklins Tower, Dead and Company 7/14/2018"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pineapple,dog,Yes,night owl,Maybe,PRIDE. by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Data Science,,,53711,44.5133,-88.0158,sausage,dog,Yes,early bird,No,When the Levee Breaks - Led Zeppelin
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Computer Science,,,53703,43.771,11.2486,pepperoni,dog,Yes,early bird,Yes,Paranoid - Black Sabbath
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Business: Information Systems & Data Science Double Major,N/A,53706,44.5133,-88.0133,sausage,dog,No,early bird,Maybe,Another is Waiting - The Avett Brothers
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Business: Finance,,,53703,41.8781,87.6298,pepperoni,dog,No,night owl,Maybe,rich spirit by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,,Computer Science,,,53705,55.6761,12.5683,pepperoni,dog,No,night owl,Yes,Drunk in the morning - Lukas Graham
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Computer Science,,,53703,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Someday - The Strokes
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Science: Biology/Life,,,53706,32.22,-80.75,pepperoni,dog,Yes,no preference,Maybe,Homegrown by Zac Brown Band
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,41.8781,87.6298,Other,dog,Yes,early bird,Yes,Constellations - Jack Johnson
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,34.0549,118.2426,sausage,dog,Yes,night owl,Yes,"Come On Eileen
By Dexys Midnight Runners "
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,40.7128,74.006,pepperoni,cat,Yes,early bird,Yes,Free Bird - Lynyrd Skynyrd
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53703,40.416,-3.703,pepperoni,dog,Yes,no preference,Maybe,"come as you are, nirvana"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Clarity by Zedd
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics Major ,Data Science Certificate or Minor,53706,22.3964,114.1095,sausage,dog,Yes,night owl,Maybe,The Less I know The Better - Tame Impala
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Engineering: Mechanical,,,53715,44.9778,-93.265,pineapple,dog,Yes,early bird,No,Superposition Daniel Caesar
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Science: Chemistry,,,53706,41.3851,2.1734,basil/spinach,dog,Yes,early bird,No,Don't Stop Believing by Journey
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,59.9115,10.7579,pepperoni,dog,Yes,no preference,Maybe,Apologize - OneRepublic
COMP SCI 319:LEC001,LEC001,23,Science: Other,,,53726,43.0389,-87.9065,sausage,dog,No,early bird,Yes,Homesick - Noah Kahan
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Science: Biology/Life,,,53706,46.7867,92.1005,pineapple,cat,Yes,early bird,Yes,Birdhouse In Your Soul (They Might Be Giants)
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,44,-94,pineapple,dog,Yes,early bird,Maybe,Rick Astley- Never Gonna Give You Up
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Data Science,,,53705,65.6466,-21.643,macaroni/pasta,cat,Yes,no preference,No,Choose Life by Poorstacy
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Computer Science,,,53706,40.7128,-74.006,pineapple,cat,No,early bird,No,Love Story- Taylor Swift
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Mathematics/AMEP,,,53703,,,pepperoni,neither,No,night owl,Yes,"雪distance - Capper
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,17,Data Science,,,53706,51.7692,19.4018,basil/spinach,cat,Yes,night owl,Maybe,Eventually by Tame Impala
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,17,Data Science,,,53706,48.857,2.352,none (just cheese),dog,Yes,night owl,No,Clean by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,My primary major is economics and I will major in Business (Actuarial Science or Accounting).,"As a secondary major, I have an interest in Data Science.",53703,36,127.7,Other,dog,Yes,night owl,Yes,"Vancouver - BIG Naughty
"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,37.9598,-104.8202,mushroom,dog,Yes,night owl,Maybe,Hotel California by the Eagles
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,40.628,14.485,sausage,dog,No,night owl,Yes,No More by Jazzmeia Horn
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,43.4203,-88.1865,none (just cheese),dog,No,early bird,Yes,Style - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,21,Computer Science,,,53703,40.7128,-74.006,mushroom,cat,Yes,night owl,Maybe,"Welcome to New York, Taylor Swift"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,25.2048,55.2708,pineapple,cat,No,night owl,Yes,90210 - Travis Scott
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Science: Biology/Life,,,53706,39.6636,105.8792,basil/spinach,dog,Yes,early bird,No,We'll All Be Here Forever by Noah Kahan
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC001,18,Engineering: Mechanical,,,53706,44.5937,-93.4329,pepperoni,dog,No,no preference,Yes,One Beer - MF DOOM
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,"I'm a Dairy Science major, but am pursuing a Data Science certificate.",,53726,42.36,71.1,sausage,dog,No,night owl,Yes,Secrets by One Republic
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Business: Finance,,Information systems ,53706,3.139,101.6869,none (just cheese),cat,No,no preference,Yes,"Knocking on Heavens Door, Guns n roses"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53703,,,pepperoni,dog,No,early bird,Maybe,This Town's Been Too Good To Us by Dylan Scott
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Engineering: Other,,,53706,44.9608,-89.6302,none (just cheese),dog,Yes,night owl,No,Need a Favor - Jelly Roll
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,21,Engineering: Biomedical,,,53703,32.7765,-79.9311,pepperoni,cat,No,no preference,No,Revival - Zach Bryan
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53706,38.9072,-77.0369,sausage,dog,No,night owl,Yes,White Lies- Max Frost
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Other (please provide details below).,Education Studies,,53703,30.5728,104.0668,mushroom,cat,No,no preference,Maybe,Hindenburg lover-Anson Seabra
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,21,Statistics,,,53715,30,20,pineapple,cat,No,night owl,Yes,hello from adele
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53706,44.3009,-90.9505,none (just cheese),cat,Yes,early bird,No,"All along the watchtower, Jimi Hendrix"
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC005,18,Engineering: Industrial,,,53706,30.3539,97.7702,sausage,cat,Yes,early bird,Maybe,Pink + White by Frank Ocean
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,40.4855,-106.8336,pineapple,neither,No,night owl,Maybe,"Viva La Vida - Coldplay
"
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,"Economics, English",53706,60.3913,5.3221,sausage,dog,Yes,no preference,Yes,Before the Sun - Greg alan isakov
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53703,40.7128,-74.006,basil/spinach,cat,No,early bird,Yes,"Moonlight on The River, Mac Demarco"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Engineering: Biological Systems ,,53703,43.0731,-89.4012,pineapple,dog,Yes,early bird,No,Fast Car by Luke Combs
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,,53706,25.7617,-80.1918,pepperoni,dog,Yes,night owl,Yes,Favorite Song Toosii
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,32,Other (please provide details below).,Consumer Behavior and Marketplace Studies,"Digital Studies, Business Cert for non-business majors",53719,23.1136,-82.3666,Other,dog,No,no preference,Yes,Arctic Monkey’s - Do I wanna Know ( Dua Lipa Cover)
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC003,,Engineering: Industrial,,,53703,36.058,103.79,pineapple,cat,No,night owl,No,<<Love Story>>; Taylor Swift;
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,Spanish,53703,37.3891,-5.9845,basil/spinach,cat,Yes,early bird,No,Everybody wants to rule the world by Tears for fears
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53715,38.6973,-9.4218,pepperoni,dog,No,night owl,Yes,Go Your Own Way - Fleetwood Mac
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,n/a,n/a,53706,42.1491,-84.0202,sausage,dog,Yes,night owl,Yes,TNT by AC DC
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Biomedical,,,53703,35.6895,35.6895,mushroom,dog,No,night owl,Yes,Threat to Joy- Strokes
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,17,Data Science,,I am double majoring in data science and economics.,53706,41.7851,-88.2471,basil/spinach,dog,No,night owl,Yes,Back to December by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Science: Biology/Life,,,53706,44.98,93.27,sausage,cat,Yes,night owl,Yes,Fade Into You - Mazzy Star
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53590,47.9972,7.8538,pepperoni,dog,No,early bird,Maybe,Bohemian Rhapsody - Queen
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Engineering: Biomedical,,,53706,41.9,12.5,Other,neither,Yes,night owl,Maybe,Getaway car
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Engineering: Mechanical,,,53706,45.61,-94.21,basil/spinach,dog,Yes,no preference,No,Everybody Wants to Rule the World - Tears For Fears
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,,Engineering: Mechanical,,,53703,40.4168,3.7038,pepperoni,cat,No,early bird,No,One of then is Find Your Flame by SEGA
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,,53706,35.6895,139.6917,pepperoni,dog,Yes,night owl,Yes,Hotel California - Eagles
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Data Science,,Spanish,53706,46.7828,-92.1055,none (just cheese),dog,Yes,early bird,Yes,Stacy's Mom
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53703,40.7128,-74.006,mushroom,dog,Yes,early bird,No,All my love - Noah Kahan
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Engineering: Industrial,,,53706,32.8262,-117.2642,pineapple,dog,No,night owl,Maybe,"Down Low, Dombresky"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Undecided ,,53706,64.1472,-21.9424,pepperoni,dog,Yes,no preference,Maybe,i by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Economics w data science certificate,,53703,40.7306,-73.9352,pepperoni,dog,Yes,night owl,Yes,Schizo - Travis Scott & Young Thug
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Business: Other,Management & Human Resources,Data Science,53706,10.8231,106.6297,mushroom,dog,No,night owl,Maybe,Flowers - Miley Cyrus
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53534,43.0739,-89.3852,sausage,dog,No,no preference,Yes,All I wanna do-Jay Park
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,41.8781,-87.6298,Other,dog,Yes,no preference,Yes,surf - mac miller
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,23.7142,-166.205,pepperoni,dog,No,night owl,Maybe,Somthing in the Orange (Zack Bryan)
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,N/A,53706,40.5509,14.2429,pepperoni,cat,No,early bird,Yes,"Any Taylor Swift Song, one including Fearless"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Engineering: Mechanical,,,53562,19.0533,-104.3161,macaroni/pasta,dog,No,early bird,Yes,Escape (The Pina Colada Song) - Rupert Holmes
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pineapple,cat,Yes,night owl,Yes,Anything by Taylor Swift (must be Taylor's Version if the album is available)
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Industrial,,Data Science ,55424,21.1743,-86.8466,pineapple,dog,Yes,no preference,Maybe,Some nights - fun.
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Other (please provide details below).,I am a sociology major.,A few minors but no other majors at this point. ,53726,43,-88,green pepper,dog,Yes,night owl,Yes,Natural Mystic - Bob Marley
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Engineering: Industrial,,,53705,34.6819,112.4681,green pepper,neither,No,night owl,Yes,"Komm, süßer Tod (come on sweet death)"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53706,-22.9068,43.1729,Other,dog,Yes,night owl,Yes,Red Red Wine by UB40
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Engineering: Mechanical,,,53711,44.9932,-93.5635,sausage,dog,Yes,night owl,Yes,Chan Chan; Bueno Vista Social Club
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,economics,political science,53715,41.9,12.5,basil/spinach,cat,No,early bird,No,sundress Asap Rocky
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Computer Science,,Mathematics,53703,,,pineapple,cat,No,night owl,Maybe,"Blinding Lights, The Weeknd "
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Science: Biology/Life,,,53706,23.0033,120.2588,none (just cheese),dog,No,no preference,Yes,It's a Kind of Magic - Queen
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,20,Data Science,,,53706,34.4208,-119.6982,pineapple,dog,No,early bird,Yes,Cigarette Daydreams by Cage the Elephant
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,No,night owl,Yes,Can't Tell Me Nothing - Kanye West
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Other (please provide details below).,Political Science,data science,53706,39.2783,-74.5755,sausage,dog,No,night owl,Yes,Goodmorning by bleachers
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC001,19,Other (please provide details below).,A double major in Data Science and Economics,,53706,39.0742,21.8243,sausage,dog,No,no preference,Yes,New Romantics - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Engineering: Mechanical,,,53715,39.9527,-75.164,sausage,dog,Yes,early bird,Yes,Golden Hour- jVke
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,I am also planning to major in Business Management.,53706,35.6528,139.8395,pepperoni,dog,No,night owl,Maybe,"I do not really have a specific favorite song, but my all-time favorite genres are rocks with bands like Queens, The White Stripes, Linkin Park,...But mostly I listen to unlyrical songs like phonk and lofi depending on the mood. "
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,21,Science: Physics,,,53726,43.0731,-89.4012,green pepper,cat,No,night owl,No,Gymnopedie No. 1 - Eric Satie
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.6003,-105.9831,sausage,dog,No,night owl,Yes,Istanbul (Not Constantinople)
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Industrial,,,53715,19.7193,-156.0013,pepperoni,dog,No,night owl,Yes,Cuccurucucù by Franco Battiato
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Other (please provide details below).,Economics,Possibly mathematics,53706,42.3601,-71.0589,macaroni/pasta,dog,No,night owl,Yes,Castle on the Hill by Ed Sheeran
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Other (please provide details below).,Information Science ,Political Science,53715,41.8781,-87.6298,pepperoni,cat,Yes,early bird,No,Both - Tiesto & BIA
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Communication,,53715,45.0557,-92.8101,basil/spinach,dog,No,no preference,Maybe,"Meet me in the morning, Bob Dylan"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53706,35.6067,-220.2139,pepperoni,cat,No,night owl,Yes,24k magic- Bruno Mars
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,,53703,-36.8485,174.7633,pepperoni,cat,No,night owl,Yes,Eastside Banny Blanco
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Business: Actuarial,,,53703,-33.8688,151.2093,pepperoni,dog,Yes,night owl,Yes,I Remember Everything by Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC005,18,Data Science,,,53703,40.7128,74.006,none (just cheese),dog,No,night owl,Yes,Revival by Zach Bryan
COMP SCI 319:LEC002,LEC002,30,Science: Other,Geoscience,,53703,-63.9755,-57.9712,basil/spinach,dog,Yes,early bird,Yes,Un Dia - Juana Molina
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Engineering: Mechanical,na,na,53704,,,sausage,cat,No,early bird,Maybe,
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pepperoni,cat,No,night owl,Yes,No Plan By Hozier
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,23,Computer Science,,,53705,30.2741,120.1551,macaroni/pasta,neither,Yes,no preference,No,soaring-TomLeevis
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53726,18.15,-65.8,sausage,dog,Yes,night owl,Maybe,Its all coming back to me now by Celine Dion
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Biology/Life,,,53715,39.9042,116.4074,sausage,cat,No,night owl,Maybe,"[米津玄師 - アンビリーバーズ , Kenshi Yonezu - Unbelivers] (https://www.youtube.com/watch?v=naJcqMBbAn4)"
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Statistics,,mathematics ,53706,35.86,104.2,sausage,cat,No,no preference,Maybe,Lemon Tree by Fools Garden
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,Mathematics,53706,41.8781,-87.6298,pepperoni,cat,No,no preference,Yes,Kon Queso by MF DOOM
COMP SCI 319:LEC001,LEC001,22,Computer Science,,,53703,45.576,13.8475,pepperoni,dog,No,early bird,No,i dont know
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,35.6895,139.6917,pepperoni,dog,Yes,early bird,Yes,Levels - Sidhu Moosewala
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53703,29.6548,91.1405,green pepper,cat,Yes,early bird,No,Perfect by Ed Sheeran
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics,,53715,64.1472,-21.9424,Other,cat,No,no preference,Maybe,
Source diff could not be displayed: it is too large. Options to address this: view the blob.
Source diff could not be displayed: it is too large. Options to address this: view the blob.
section,Lecture,Age,Primary major,Other Primary Major,Other majors,Zip Code,Latitude,Longitude,Pizza topping,Cats or dogs,Runner,Sleep habit,Procrastinator,Song
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Other (please provide details below).,Atmospheric and Oceanic Science,,53703,44.256,-88.409,basil/spinach,cat,No,early bird,Yes,Kanye
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53711,51.5072,-0.1257,Other,dog,No,night owl,Yes,Eyes Closed by Ed Sheeran
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Computer Science,,,53703,37.7749,-122.4194,pineapple,dog,Yes,night owl,Yes,Eight - IU
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Engineering: Other,Engineering Undecided,,53706,44.9241,-93.3474,pineapple,dog,Yes,no preference,No,"Feathered Indians, Tyler Childers"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,,Data Science,,,53715,40.7128,-74.006,sausage,dog,Yes,early bird,Yes,Post malone -overdrive
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,No secondary majors ,53715,51.5072,0.1276,pepperoni,dog,Yes,night owl,Yes,No Role Modelz - J. Cole
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,17,Mathematics/AMEP,,Computer Science,53706,19.076,72.8777,pepperoni,dog,Yes,early bird,Maybe,Do Not Disturb - Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,,Engineering: Mechanical,,,53706,37.5683,157.3409,none (just cheese),cat,Yes,night owl,Yes,
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics ,,53706,44.5133,88.0133,sausage,cat,No,night owl,Yes,"Pyro
Kings of Leon"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Other (please provide details below).,Global Health,,53706,40.7128,-74.006,none (just cheese),dog,Yes,no preference,Maybe,everywhere by fleetwood mac
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Information Systems,,,54601,25.7617,-80.1918,mushroom,cat,No,night owl,Yes,bando playboy carti
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53703,43.0658,-87.9671,none (just cheese),dog,No,early bird,Yes,Today was a good day by Ice Cube
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Statistics,,data science,53703,43.0766,-89.3972,pineapple,dog,Yes,night owl,Yes,Nikes on my feet - Mac Miller
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,,,53558,45.0854,93.0081,pepperoni,dog,Yes,no preference,Yes,Last Night - Morgan Waller
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Business: Finance,,,53706,28.3852,-81.5639,pepperoni,dog,Yes,night owl,Yes,Paradise -- Coldplay
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Science: Biology/Life,,Data Science,53706,32.0809,-81.0912,sausage,cat,Yes,no preference,Yes,Cupid de Locke - the Smashing Pumpkins
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Data Science,,,53716,77.82,86.48,pepperoni,dog,No,early bird,Yes,"Violent crimes
Kanye west"
COMP SCI 319:LEC002,LEC002,28,Engineering: Other,,,53703,24.8801,102.8329,pepperoni,neither,Yes,night owl,Yes,No,I hardly listen to music.
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Other (please provide details below).,Atmospheric and Oceanic Sciences ,Journalism ,53706,48.8566,2.3522,Other,dog,No,night owl,Maybe,"Dancing Queen
By Abba "
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Business: Finance,N/A,N/A,53703,25.7,-80.2,pepperoni,dog,No,no preference,Yes,All Me by Drake
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,,Computer Science,,,53704,0,0,sausage,cat,No,night owl,Maybe,WYS - Snowman
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Science: Other,,,53703,43.0833,-89.3725,basil/spinach,dog,Yes,early bird,Yes,Fly Love by Jamie Foxx
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,,Engineering: Mechanical,,,53706,33.3062,111.8413,mushroom,cat,No,night owl,Yes,Nerves by DPR Ian
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,,Computer Science,,,53726,35.6528,139.8395,mushroom,dog,No,night owl,No,Us by milet
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,"Comp sci, certificate in economic analytics",53715,39.7392,-104.9903,pineapple,dog,Yes,night owl,Yes,Everlong - Foo Fighters
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,BS Art,,53593,37.5665,126.978,pepperoni,cat,No,night owl,Yes,Mariah Carey - All I Want for Christmas Is You
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,43.07,-89.4,pineapple,dog,No,night owl,Yes,Vienna by Billy Joel
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Other,,,53175,42.8646,-88.3332,pepperoni,dog,Yes,night owl,Yes,Temperature by Sean Paul
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Computer Science,,Mathematics,53706,47.6081,-122.0117,pepperoni,cat,No,night owl,Yes,"Fly High!!, Burnout Syndrome "
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Engineering: Mechanical,,,53703,34,5,sausage,dog,No,night owl,Yes,say so - doja cat
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,21,Business: Information Systems,,,53715,47,86,pepperoni,dog,Yes,no preference,Yes,7 Years - Lukas Graham
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,,Business: Information Systems,information science,,53715,29.4393,106.4556,sausage,dog,Yes,early bird,No,love story
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,20,Business: Other,,Sociology,53703,43.07,-89.4,sausage,neither,Yes,night owl,Maybe,Cudi Zone- Kid Cudi
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Data Science,,,53706,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Peppas - Farruko
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,38258,46.3131,-91.4905,sausage,dog,Yes,night owl,Yes,No Remorse Metalica
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Data Science,,,53703,3.2028,73.2207,pepperoni,dog,Yes,night owl,Yes,"Rich Men North of Richmond
Oliver Anthony"
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,21,Engineering: Mechanical,,,53715,44.9778,-93.265,pepperoni,dog,Yes,no preference,Yes,"Never Gonna Give You Up -Rick Astley
"
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,1134,40.4111,-105.6413,pepperoni,dog,No,night owl,Yes,Out of Touch by Daryl Hall and John Oats
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Computer Science,,Public Health and Policy,53706,37.5,126.9,basil/spinach,cat,No,night owl,No,No One Else Like You(Adam Levine)
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Data Science,,,53703,41.9028,12.4964,pepperoni,dog,No,night owl,Yes,Pursuit of Happiness by Kid Cudi
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,,Engineering: Mechanical,,,53703,12.957,77.401,macaroni/pasta,dog,Yes,night owl,Yes,Out of Touch by Hall and Oates
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,44.5133,-88.0133,pepperoni,dog,No,night owl,Yes,Where the Boat Leaves From By Zac Brown Band
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Other,bme,,53715,42.3601,71.0589,pepperoni,dog,No,no preference,Maybe,noah kahan - mess
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Engineering: Mechanical,,,53703,39.0476,-77.132,pepperoni,dog,Yes,night owl,Yes,
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Other (please provide details below).,"Econ with math emphasis (photography certificate)
",,53703,-41.2865,174.7762,pineapple,neither,Yes,no preference,Maybe,None.
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pepperoni,dog,No,night owl,No,
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,40.7128,-74.006,pepperoni,dog,No,night owl,Maybe,Sultans of Swing - Dire Straits
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,45.3733,84.9553,macaroni/pasta,dog,Yes,night owl,Yes,kimdracula - deftones
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,21,Other (please provide details below).,My primary major is Economics.,I'm planning to get data science certificate.,53715,37.5665,126.978,sausage,dog,Yes,night owl,Maybe,Dandelions - Ruth B.
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,40.7,-74,pepperoni,dog,No,no preference,Maybe,I don't really have a favorite song.
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,Consumer behavior and marketplace studies.,,53715,44.9778,-93.265,pineapple,cat,Yes,early bird,Maybe,Love Story - Taylor Swift
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,,Data Science,,,53706,41.8781,87.6298,pepperoni,cat,No,night owl,Yes,Bright Size Life by Pat Metheny
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Data Science,,I am considering majoring in Genetics as well,53706,45.6378,-89.4113,Other,dog,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,,53726,43.0731,-89.4012,sausage,dog,Yes,early bird,Yes,Young Girls - Bruno Mars
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,,Engineering: Mechanical,,,53711,,,pepperoni,cat,Yes,no preference,Maybe,"""Wont Back Down""
-Tom Petty"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,Genetics,Data science,53706,42.0262,-88.0697,pineapple,dog,No,night owl,Yes,Merrry-Go-Round of life by joe Hisaishi
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,53715,37.5665,126.978,basil/spinach,dog,No,no preference,No,"""a lot"" by 21 savage"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53705,31.2244,121.4692,pepperoni,cat,No,night owl,Yes,ハゼ馳せる果てるまで by ずっと真夜中でいいのに
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Biomedical,,i’m considering a double major in economics or political science ,53703,48.8566,2.3522,basil/spinach,cat,No,no preference,Yes,alien superstar by beyoncé
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,23,Mathematics/AMEP,N/A,Certificate in Data Science,53703,19.4326,-99.1332,pepperoni,dog,Yes,early bird,Maybe,Runaway by Kanye West (Fyi: it’s a 10 min song)
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Data Science,,,53706,47.6062,-122.3321,pineapple,cat,No,night owl,Yes,you belong with me by taylor swift
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Industrial,,,53706,38.752,48.8466,pepperoni,cat,No,early bird,Maybe,Kerosene -Crystal Castles
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Economics and Psychology ,Possibly a Data science minor ,53703,40.4406,-79.9959,sausage,dog,No,early bird,Maybe,Wonderwall - Oasis
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Mathematics/AMEP,,Mathematics and Economics,53703,86.9212,40.4237,mushroom,cat,No,early bird,Maybe,Christmas List by Anson Seabra
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53708,42.3611,-71.0571,Other,dog,No,night owl,Yes,Sultans of Swing by Dire Straits
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Science: Chemistry,,None,53715,37.5683,126.9978,sausage,dog,No,night owl,Yes,Under the bridge - Red Hot Chili Peppers
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics,Data science. ,53703,36.6769,117.1201,sausage,dog,No,night owl,Yes,Heat waves by Glass Animals
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pepperoni,dog,No,night owl,Yes,Hey ya- outkast
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Engineering: Mechanical,,,53704,44.5133,-88.0133,pepperoni,cat,No,early bird,Yes,The adults are talking-The strokes
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,Statistics,53706,24.5551,-81.78,pepperoni,neither,Yes,no preference,No,Circles- bangers only & fawlin
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,45.4408,12.3155,pepperoni,dog,Yes,night owl,Yes,"Upside Down, Jack Johnson"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,21,Data Science,,Secondary major: Computer Science,53711,35.6528,139.8395,sausage,cat,Yes,night owl,Yes,Mayonaka no Door / Stay With Me
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economics ,maybe data science,53703,25.2048,55.2708,mushroom,cat,Yes,night owl,Maybe,"Dancing with A Stranger
Sam Smith and Normani
"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Other (please provide details below).,Pre-business.,Want to do Computer Science as my secondary major.,53718,39.9042,116.4074,pepperoni,cat,Yes,night owl,Maybe,Lose Yourself - Eminem
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,,Science: Other,Zoology ,Conservation Biology ,53706,43.0731,-89.4012,none (just cheese),cat,No,night owl,Yes,The Fall- Lovejoy
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Economics,"French, International Studies",53715,43,89.4,sausage,dog,Yes,night owl,Yes,"Tiny Dancer, Elton John"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,22,Data Science,,,53715,37.5665,126.978,pepperoni,dog,Yes,night owl,Yes,My favorite song is Hate you by Yerin Baek.
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53715,47.6062,-122.3321,pepperoni,dog,No,night owl,Maybe,"it changes often, through many genres, but currently,
Aaron Hibell - destroyer of worlds (oppenheimer trance edit)
"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC001,21,Other (please provide details below).,Economics ,Data Science,53703,0.8035,90.0425,pineapple,dog,No,night owl,Yes,Lifestyles of the Rich and Famous by Good Charlotte
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Engineering: Other,Computer Engineering,NA,53715,39.795,-74.7773,pepperoni,dog,Yes,night owl,Yes,NA
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Business: Finance,,,53706,45.4647,9.1885,sausage,dog,Yes,early bird,Maybe,Drake-Passionfruit
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,I'm a Computer Science Major. ,I'm a Data science Major.,53706,42.2475,-84.4089,Other,dog,No,no preference,Maybe,Just like me by A boogie wit da hoodie.
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,,Engineering: Mechanical,,,53706,40.7128,-74.006,pepperoni,cat,No,night owl,Yes,Love Lost - Mac Miller
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Other (please provide details below).,,"Data Science, Mathematics",53706,39.4822,-106.0462,pepperoni,dog,Yes,early bird,Yes,"Keep Your Head Up
by Andy Grammar"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Other (please provide details below).,Economics,,53073,60.3913,5.3221,pepperoni,cat,No,night owl,No,Iron Lung - King Gizzard and the Lizard Wizard
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Other (please provide details below).,Econ Major ,,53703,43.0731,-89.4012,sausage,dog,No,night owl,Yes,Follow God by Kayne West
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Engineering: Mechanical,,,53076,43.7696,11.2558,Other,dog,No,no preference,Maybe,The Difference -Flume
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Information Science.,Economics.,53703,43.0731,-89.4012,Other,cat,Yes,night owl,Yes,GEEKED N BLESSED by LUCKI
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Other (please provide details below).,Journalism,,53715,41.3874,2.1686,none (just cheese),cat,Yes,night owl,Yes,revival zach bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,Economics and certificate in Data Science ,,53703,23.2494,106.4111,pineapple,dog,No,night owl,Maybe,Sketzo by Travis Scott and Young Thug
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Business: Finance,Finance,data science,53705,200,116,mushroom,cat,Yes,night owl,Yes,Who am I- why don't we
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Mathematics/AMEP,,,53706,43.0731,-89.4012,sausage,dog,Yes,night owl,Yes,Runaway- Kanye
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,21,Business: Other,Pass,Pass,53705,40.7128,-74.006,green pepper,cat,Yes,night owl,Yes,"""Steal the show"", by Lauv
"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Computer Science,,,53706,25.7617,-80.1918,sausage,dog,No,no preference,Maybe,Bank Account - 21 Savage
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53703,-23.5505,-46.6333,Other,cat,Yes,night owl,Yes,"Violent Crimes - Kanye West
ps: Not a fan at all of him as a person, but huge fan of his work."
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,Computer Science,53706,50,21,sausage,cat,Yes,night owl,Maybe,Symphony No. 9 by Ludwig van Beethoven
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,42.7261,-87.7895,pepperoni,dog,No,no preference,Yes,Margaritaville by Jimmy Buffett
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Biomedical,,,53706,26.1242,-80.1436,basil/spinach,cat,No,no preference,Yes,"Wash it all away, Five Finger Death Punch"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Data Science,,,53703,42.1281,-88.0937,pineapple,dog,No,night owl,Yes,Thunderstruck AC/DC
COMP SCI 319:LEC004,LEC004,23,Other (please provide details below).,Economics,No,53703,30.5728,104.0668,pineapple,cat,No,early bird,Yes,蓝雨 -- Jacky Cheung
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53711,31.5879,120.2127,pineapple,neither,No,night owl,Maybe,"Samudrartha and Wildfire by HOYO-MiX
Watchtower of the East by Quadimension "
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Mechanical,,,53706,35.2401,24.8093,pepperoni,cat,Yes,night owl,No,The Seventh Sense by NCT U
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,21,Engineering: Biomedical,,,53703,43.0128,-88.2351,sausage,dog,No,night owl,Yes,Hannah Montana by the Migos
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Business: Finance,,,53703,41.3874,2.1686,pepperoni,dog,Yes,night owl,Yes,Your love - Sosa UK
COMP SCI 319:LEC001,LEC001,29,Science: Physics,,,53715,40.7128,-74.006,sausage,dog,Yes,no preference,Yes,"Beat it, Michael Jackson"
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Engineering: Other,,,53706,43.6532,-79.3832,pepperoni,dog,No,night owl,Maybe,Killer Queen - Queen
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,Computer Science,53706,41.8781,87.6298,pineapple,dog,No,night owl,No,Shampoo Bottles - Peach Pit
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,21,Mathematics/AMEP,,,53706,30.5928,114.305,none (just cheese),cat,No,night owl,Yes,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,Communication Arts,53706,52.7107,-8.879,Other,dog,No,night owl,Yes,Boomerang by Summer Set
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Atmospheric and Oceanic Science,,53703,64,21,green pepper,dog,No,no preference,No,
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Statistics,,Still deciding between math or data science,53703,,,pepperoni,cat,No,no preference,No,Mandy by Barry Manilow
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economics,,53726,22.5431,114.0579,mushroom,dog,No,early bird,Maybe,Forever Young; Blackpink
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC002,20,Engineering: Mechanical,,,53706,41.8781,87.6298,pineapple,dog,Yes,early bird,Maybe,"""Peg"" - Steely Dan
"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,Data Science ,Economics,53703,12.9,77.5,sausage,neither,Yes,night owl,Maybe,Metallica - Enter Sandman
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Engineering: Industrial,,,73506,8.538,-80.7821,none (just cheese),dog,No,no preference,Maybe,"Como has estau? -Mora
Quevedo - Quevedo
Yankee- quevedo"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Engineering: Industrial,,Data Science,53719,55.7558,37.6173,pineapple,cat,No,night owl,Yes,Cate's Brother by Maisie Peters
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53715,47.9031,-91.8565,pineapple,cat,Yes,night owl,Yes,Kiss Me - Sixpence None The Richer
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Mechanical,Mechanical Engineering,,53706,19.076,72.8777,none (just cheese),dog,No,no preference,Maybe,This Side of Paradise - Coyote Theory
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,21,Business: Other,Econ,,53703,41,-73.6,Other,dog,Yes,night owl,Yes,Sunflower seeds by bryce vine
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,25,Other (please provide details below).,Economics,,53703,35,129,Other,dog,No,night owl,Maybe,Not today - bts
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Business: Actuarial,,Math,53703,22.5431,114.0579,sausage,dog,No,night owl,Maybe,"All We Know
The Chainsmokers"
COMP SCI 319:LEC001,LEC001,26,Business: Other,MBA specializing in tech strategy and product management ,,53558,41.0082,28.9784,basil/spinach,cat,No,night owl,Yes,"Tears in the Rain, The Weeknd "
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Mathematics/AMEP,,,53703,40.6541,109.8201,sausage,cat,No,night owl,Yes,Yellow - Coldplay
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,,53706,35.0568,118.3406,Other,cat,No,night owl,Yes,"Common Jasmin Orange by Jay Chou
it's a Chinese song, so you probably can't understand the lyrics"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Biomedical,,,53703,46.7828,-92.1055,sausage,cat,Yes,night owl,Yes,I'm Just Ken by Ryan Gosling
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Business: Finance,N/A,Comp Sci ,53703,43.0731,-89.4012,pineapple,dog,Yes,no preference,No,Don't go breaking my heart - Elton John
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Industrial,,,53719,43.0731,-89.4012,pepperoni,cat,Yes,night owl,Yes,Pride by Kendrick Lamar
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53715,31.2304,121.4737,green pepper,cat,No,night owl,Yes,Talking to the Moon--Bruno Mars
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,23,Other (please provide details below).,consumer science,i don't have,53703,31.2304,121.4737,mushroom,neither,Yes,early bird,Yes,hero Mariah Carey
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Business: Other,,,53706,13.7563,100.5018,pepperoni,dog,No,night owl,Maybe,Die for you by the Weeknd
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,,Engineering: Biomedical,,,53706,37.5665,126.978,pepperoni,cat,Yes,night owl,Yes,You give love a bad name - Bon Jovi
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,21,Business: Finance,,RMI,53703,48.8566,2.3522,pepperoni,cat,No,no preference,Yes,Get out off town - Anita O'day
COMP SCI 319:LEC002,LEC002,,Science: Other,,,53703,49,-123,pepperoni,neither,No,night owl,Yes,Whatever :)
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Computer Science,,,537061127,36.1627,-86.7816,sausage,dog,No,no preference,Yes,Runnin' With the Devil - EVH
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Other (please provide details below).,Economics,Math,53703,43.0969,-89.5115,pepperoni,dog,No,early bird,Yes,Homemade - Jake Owen
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,,1000,48.8566,2.3522,pepperoni,neither,No,no preference,Maybe,"Imagine Dragons, Radioactive."
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Business: Other,,,53715,44.2134,-88.5018,pepperoni,dog,No,no preference,Yes,3005 - Childish Gambino
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Mechanical,,,53216,20.8854,-156.6653,pepperoni,neither,No,no preference,No,
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Business: Information Systems,,,53715,40.71,-74,pineapple,cat,No,night owl,Yes,Japanese Denim by Daniel Caesar
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53715,14.5995,120.9842,pepperoni,dog,Yes,night owl,No,Cherry Wine- Grent Perez
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Computer Science,,,53706,85.8398,10.2985,mushroom,dog,No,night owl,Maybe,"""Streems"" by The Symposium"
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Statistics,"I'm double majoring in mathematics and statistics; I hope to do research in some sort of applied probability theory after graduating (e.g. econometrics, mathematical biology, etc.)",n/a,53726,,,pepperoni,cat,Yes,early bird,No,"How Much a Dollar Cost, by Kendrick Lamar"
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,business,53715,27.4967,-82.6948,pepperoni,dog,No,early bird,No,Jimmy Cooks - Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Data Science,I am doing eco and plan to get a ds certificate,no,53703,39.9042,116.4074,Other,neither,No,early bird,No,''Capital''by Lo Ta-you
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Engineering: Mechanical,,,53726,41.8781,-87.6298,sausage,cat,Yes,night owl,Maybe,Shiva - Spillage Village & JID
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,35.9594,-83.9196,pepperoni,dog,Yes,early bird,No,Talkin' Tennessee by Morgan Wallen
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53706,44.5667,-92.5343,pepperoni,dog,No,night owl,Yes,street dreams by nas
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Business: Other,,,53703,37.7749,-122.4194,mushroom,dog,No,night owl,Yes,"Take it Easy - The Eagles
Otherside - Red Hot Chili Peppers"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Other (please provide details below).,Global Health,N/A,53706,42.3601,71.0589,basil/spinach,dog,Yes,night owl,Maybe,Somewhere Only We Know by Keane
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics,,53703,42.3314,-83.0458,sausage,dog,Yes,no preference,No,"Life Goes On - Lil Baby, Lil Uzi Vert, Gunna"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,"Biomechanics focus, Dance Certificate",53715,36.1627,-86.7816,pepperoni,dog,No,night owl,Maybe,"No specific songs but I love Elton John, Queen, Noah Kahan"
COMP SCI 319:LEC003,LEC003,22,Science: Biology/Life,,,53703,43.07,-89.38,mushroom,dog,No,early bird,No,Swimming Horses by Siouxsie and the Banshees
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,22,Statistics,,,53706,22.5431,114.0579,sausage,dog,Yes,no preference,Maybe,I Want My Tears Back--Nightwish
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Data Science,,Physics,53706,27.7172,85.3239,sausage,dog,Yes,early bird,No,Hall of fame
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,Economics,53706,48.8647,2.349,pepperoni,dog,Yes,night owl,Yes,Let It Happen - Tame Impala
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Business: Finance,,Data Science,53706,41.8781,-87.6298,basil/spinach,cat,No,night owl,Yes,LOYALTY FT. RIHANNA - KENDRICK LAMAR
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Other (please provide details below).,,,53706,41.9028,12.4964,Other,neither,No,no preference,Yes,Danza Kuduro - Don Omar
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Statistics,,,53706,47.3769,8.5417,mushroom,dog,No,no preference,Maybe,Blue Jay Way by the Beatles
COMP SCI 319:LEC002,LEC002,22,Business: Finance,,,53715,35,36,sausage,dog,No,early bird,Yes,TALLY BLACKPINK
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Mathematics/AMEP,,Data Sciene,53706,43.0707,-89.4142,sausage,dog,Yes,night owl,No,Build me up Buttercup- The foundations
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,23,Mathematics/AMEP,,,53703,34.34,108.93,mushroom,cat,Yes,early bird,Yes,The name is Super Gremlin. Artist is Kodak Black.
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Science: Other,,,537061127,3.139,101.6869,sausage,dog,Yes,no preference,Yes,Edge of Desire - John Mayer
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Data Science,,,53562,44.5004,-88.0613,pepperoni,dog,Yes,no preference,Maybe,
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Business: Finance,,,53703,41.8842,-87.6324,sausage,dog,No,early bird,Maybe,"Stayin Alive, Drake and DJ Khalid"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,56.4907,-4.2026,mushroom,dog,No,early bird,Maybe,Maroon by Taylor swift
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,was provided,German (maybe),53726,48.1351,11.582,pepperoni,dog,No,night owl,Yes,You Proof - Morgan Wallen
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,pepperoni,dog,No,night owl,Maybe,Springsteen - Eric Church
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,36.3932,25.4615,basil/spinach,dog,No,night owl,Yes,Mercy Now by Mary Gauthier
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC001,21,Business: Information Systems,,Data science ,53715,30.2667,-97.7333,pepperoni,dog,Yes,early bird,Yes,Hey driver Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC004,21,Business: Other,,,53703,41.3851,2.1734,pepperoni,dog,Yes,night owl,Yes,I remember by Zach Bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Mechanical,,,53715,44.0999,9.7382,pineapple,dog,No,no preference,No,Bury Me in Georgia by Kane Brown
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Business: Finance,Finance,,53726,35.6895,139.6917,sausage,cat,No,night owl,Yes,Mona Lisas and mad hatters by elton john
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53706,38,-77,Other,dog,No,night owl,Yes,dont stop believing
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53703,40.78,-73.97,none (just cheese),dog,No,night owl,Yes,"Replay by Iyaz
"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Computer Science,,,53715,43.0731,-89.4012,sausage,neither,No,no preference,Yes,Cream Soda - EXO
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC001,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,Yes,night owl,Yes,Beast of Burden - The Rolling Stones
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53715,40.7128,-74.006,pepperoni,cat,Yes,early bird,Maybe,Upside down- Jack Johnson
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Statistics,,computer science ,53706,40.7128,-74.006,pineapple,dog,Yes,early bird,No,The greatest show man
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Industrial,,,53715,41.8781,87.6298,sausage,cat,Yes,night owl,Yes,Ghost Town-Kanye West
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,sausage,dog,No,night owl,Maybe,Money by Pink Floyd
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,,Business: Information Systems,,,53703,36.107,-112.113,pepperoni,cat,Yes,night owl,Maybe,"Blinding lights, the weeknd"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Engineering: Mechanical,,,53703,44.9591,-89.6343,green pepper,dog,Yes,night owl,Yes,any wheeler walker junior song
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Engineering: Industrial,"
",,53711,43.0731,89.4012,pepperoni,cat,Yes,early bird,No,I will wait by mumford and sons
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,finance,53706,41.8781,87.6298,sausage,dog,No,night owl,Yes,"La Cancion, Bad Bunny and J Balvin"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,My primary major is Economics ,Informations Systems,53703,33.8812,-118.4072,sausage,dog,No,night owl,Yes,Lakeshore Drive Aloitta Haynes Jeramiah
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Other (please provide details below).,Economics,,53703,41.88,-87.63,mushroom,cat,Yes,night owl,Yes,"Everything She Aint, Hailey Whitters"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,23,Other (please provide details below).,Econ,no,53703,43.0731,-89.4012,mushroom,dog,No,night owl,Maybe,In the night gardeen
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Computer Science,,math,53715,,,mushroom,dog,No,night owl,Maybe,bones
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Mathematics/AMEP,\,"Economics major, Data Science certificate",53703,39.8954,116.3946,none (just cheese),cat,Yes,no preference,Maybe,no preference
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Engineering: Biomedical,,,53715,48.8566,2.3522,sausage,neither,No,night owl,Yes,ETA - New Jeans
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,economics ,"Data science
",53703,33.6188,-117.8566,pepperoni,dog,No,night owl,Maybe,"Heartache on the dance floor - jon pardi
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53703,39.9042,116.4074,mushroom,dog,No,night owl,Yes,Gone-Nelly/Kelly
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Data Science,,Statistics,53715,35.414,-79.0933,Other,dog,Yes,night owl,Yes,Revival - Zach bryan
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,21,Engineering: Other,Material Science and Engineering,.,53703,51.2094,3.2252,pineapple,dog,No,early bird,No,Aria Math
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Computer Science,,,53703,40.95,-73.73,none (just cheese),neither,Yes,early bird,Maybe,Closer - Chainsmokers
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,12.9716,77.5946,none (just cheese),dog,Yes,night owl,Yes,Any Coldplay song works!
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Data Science,,Economics,53066,43.1144,-88.5072,pepperoni,dog,No,night owl,Maybe,God tier-Baby Tron
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53073,52.3702,4.8952,pepperoni,dog,No,night owl,Yes,Vienna: Billy Joel
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,24,Other (please provide details below).,Neurobiology,Psychology,53703,60.3913,5.3221,Other,dog,Yes,early bird,Yes,"Title: Ôba, Lá Vem Ela
Artist: Jorge Ben"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Data Science,,,53703,43.0731,-89.4012,mushroom,neither,No,early bird,No,"《To have,or not to have》
Lin Sheng Hsiang"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53706,42.64,-71.1291,pepperoni,dog,No,early bird,Yes,505 - arctic monkeys
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Computer Science,,,53715,41.8781,-87.6298,mushroom,dog,Yes,night owl,Yes,Sicko Mode by Travis Scott and Drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Computer Science,,,53706,25.033,121.5654,mushroom,neither,Yes,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Business: Other,marketing,economics,53706,40,116,pineapple,dog,No,night owl,Yes,Save Your Tears (Remix)--Ariana Grande& The Weekend
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Computer Science,,Biochemistry,53706,10.8231,106.6297,none (just cheese),dog,Yes,early bird,Maybe,"""Dress""
Taylor Swift"
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,17,Data Science,,Economics,53706,31.2304,121.4737,pepperoni,dog,No,night owl,Maybe,Shed a light
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,21,Data Science,Econ,,53703,34.6937,135.5022,pineapple,dog,No,night owl,Maybe,Moon by Kanye west
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Computer Science,N/A,Certificate - Data Science,53703,-33.9235,151.1399,Other,dog,Yes,night owl,Yes,5SOS - Teeth
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Computer Science,,,53726,39.9042,116.4074,sausage,cat,No,night owl,Maybe,Planet of the bass
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,23,Business: Finance,,Data Science Certificate (reason I am taking the course),53705,39.6403,-106.3709,pineapple,cat,Yes,no preference,Yes,"professional Griefers; Deadmau5, Gerard Way"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Business: Information Systems,,International Business,53703,38.6992,-75.0968,basil/spinach,dog,Yes,early bird,No,"Revival, Zach Bryan
"
COMP SCI 319:LEC002,LEC002,27,Science: Other,Information Science,,53705,44.0164,-92.4754,sausage,dog,Yes,night owl,Yes,Enchanted - Taylor Swift
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53703,28,81,pepperoni,dog,No,night owl,Yes,More than my hometown by Morgan Wallen
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Business: Other,Business Admin,,53706,36.7194,-4.42,Other,dog,Yes,night owl,Yes,cigarette daydreams - cage the elephant
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,39.0655,85.2563,pepperoni,neither,Yes,night owl,Maybe,n/a
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Data Science,Economics,,53703,31.2304,121.4737,mushroom,cat,Yes,no preference,No,Summertime Sadness---Lana Del Rey
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Data Science,,,53706,35.6895,139.6917,basil/spinach,dog,No,night owl,Maybe,Slow Dancing from V
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Other,Materials Science and Engineering,,53711,45.9013,-89.8459,Other,cat,No,night owl,Yes,Rio by Duran Duran
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Actuarial,,,53703,35.6895,139.6917,pepperoni,dog,Yes,no preference,Maybe,"dancing in the dark by Bruce Springsteen
"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Engineering: Other,My major is Chemistry but I intend to switch to Material Science and Engineering,,53711,48.8647,2.349,macaroni/pasta,cat,No,no preference,Maybe,Anything Taylor Swift
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53703,41.8781,87.6298,basil/spinach,dog,Yes,early bird,Maybe,Landslide Fleetwood Mac
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Computer Science,,Data Science,53715,33.9835,-118.248,pepperoni,cat,No,early bird,Yes,Khai Dreams - Sunkissed
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53715,47.61,122.33,pepperoni,cat,Yes,night owl,Yes,"Maroon, Taylor Swift"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53703,38.9333,-77.0711,pepperoni,dog,No,early bird,No,Smaller acts- Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Data Science,,,53701,45.1433,-89.1518,pepperoni,dog,Yes,early bird,Yes,When I'm gone - Dirty Honey
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Data Science,,Psychology,53711,37.9838,23.7275,green pepper,neither,No,night owl,Yes,Telepatia by Kali Uchis
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,N/A,N/A,53706,43.0737,-89.4026,pepperoni,dog,No,night owl,No,Trustfall by P!nk (Pink)
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Engineering: Mechanical,,,53715,42.35,-71.06,mushroom,cat,No,night owl,Yes,Upside Down - Jack Johnson
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Computer Science,,"Computer Science, Mathematics",53706,34.6937,135.5022,mushroom,dog,Yes,early bird,Yes,Taylor Swift
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,22,Engineering: Other,,,53703,41.8781,-87.6298,pineapple,dog,No,early bird,No,Semi-Charmed Life - Third Eye Blind
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,47.6062,-122.3321,pepperoni,dog,No,early bird,Yes,Ultralight Beam- Kanye West
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Economics,Data Science,53703,31.2304,121.4737,pepperoni,dog,Yes,night owl,Yes,Excuses-- Jay Zhou
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Economics with a Mathematical Emphasis,,53703,37.7749,-122.4194,pepperoni,dog,Yes,night owl,No,Cigarette Daydreams by Cage the Elephant
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Psychology,Data Science,53719,30.5928,114.3052,pepperoni,cat,Yes,no preference,Yes,Marunouchi Sadistic
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,,Business: Information Systems,,Data Science,53715,41.8781,-87.6298,sausage,dog,No,early bird,Yes,Staying Over by Sam Grow
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Computer Science,,,53706,37.3387,121.8853,basil/spinach,dog,Yes,night owl,Maybe,All Too Well-Taylor Swift
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,,Engineering: Industrial,,,53705,47.6,-122.3,green pepper,neither,No,night owl,Maybe,Good Time (Owl City)
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Business: Other,,Data Science,57306,-33.8688,151.2093,sausage,cat,Yes,no preference,No,Time by Pink Floyd
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Business: Information Systems,,Risk Management & Insurance,53703,43.0739,-89.3852,none (just cheese),dog,Yes,night owl,Yes,Heading South by Zack Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Biomedical,//,//,53715,45.7088,-121.5252,Other,dog,Yes,early bird,No,Honeybee - the Head and the Heart
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,20,Mathematics/AMEP,,,53726,44.1495,9.6547,pepperoni,dog,Yes,early bird,No,"John Mayor - Wild Blue
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,23,Engineering: Industrial,,,53715,37.5665,126.978,pepperoni,cat,Yes,night owl,Yes,"Burning Heart, Survivor"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Computer Science,"
",Certificate in Data Science,53715,39.483,-106.0463,macaroni/pasta,dog,Yes,night owl,Yes,505 by the Arctic Monkeys
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53703,5.4164,100.3327,none (just cheese),dog,Yes,no preference,Yes,Melancholy Hill - Gorillaz
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Statistics,,,53706,55.6672,12.5512,green pepper,dog,Yes,no preference,Maybe,Pink + White by Frank Ocean
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,23,Business: Finance,ECONOMICS ,FINANCE,53703,-45.0312,168.6626,pineapple,dog,Yes,early bird,No,Kiss Me Through The Phone - Souja Boy
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,economy,no,53703,39,116,sausage,neither,Yes,no preference,Maybe,the nights Avicii
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Science: Other,Political Science,,53715,45.0813,-93.135,pepperoni,dog,No,night owl,Yes,No Surprises: Radiohead
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Other (please provide details below).,Economics ,Maybe data science,53715,19.076,72.8777,basil/spinach,dog,No,night owl,Yes,none at the moment
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Mathematics/AMEP,N/A,N/A,53703,38.914,121.6147,macaroni/pasta,cat,No,night owl,Yes,You(=I) by BOL4
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,29.9511,-90.0715,pineapple,dog,Yes,night owl,Yes,Margaritaville - Jimmy Buffett
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,20,Data Science,,,53715,60.1699,24.9384,pepperoni,dog,No,early bird,Yes,Poison - Alice Cooper
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,Economics,53703,22.5431,114.0579,basil/spinach,dog,Yes,early bird,No,Palm Springs-Virginia To Vegas
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,21,Engineering: Other,Materials Science and Engineering,,53703,32.7157,-117.1611,green pepper,dog,No,night owl,No,The Fragrance of Dark Coffee by Noriyuki Iwadare
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Other (please provide details below).,Math,"Econ, CS",53703,39.9042,116.4074,mushroom,dog,No,early bird,Maybe,"Qing tian, Jay Chou"
COMP SCI 319:LEC003,LEC003,24,Engineering: Other,,,53711,32.4,119.4301,mushroom,cat,Yes,early bird,No,Just the two of us——Jose James
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Poli Sci & History,"Business, Development Economics, Data Science, Public Policy",53715,40.1728,74.006,Other,dog,No,night owl,Maybe,"""The Adults Are Talking"" by The Strokes"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,28.3731,-81.5569,none (just cheese),cat,No,no preference,Maybe,The Story of Us by Taylor Swift
COMP SCI 319:LEC003,LEC003,24,Other (please provide details below).,Economics,,53703,38.914,121.6147,tater tots,dog,No,no preference,No,Butter—Fly by わだ こうじ
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Science: Physics,,,53706,52.3676,4.9014,pineapple,cat,No,night owl,Yes,"Orion - Metallica, first section is decent but the entire middle section is the most beautiful piece of music to me and has always been my favorite song ever."
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,39.4821,-106.0487,none (just cheese),cat,No,night owl,Yes,ivy by taylor swift
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,35.6895,139.6917,pepperoni,cat,Yes,night owl,Yes,"Title: The Less I Know the Better
Artist: Tame Impala"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53711,43.7696,11.2558,sausage,dog,No,night owl,Yes,Break My Stride Mattew Wilder
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Other (please provide details below).,Biochemistry,Data Science,53715,34.0522,-118.2437,macaroni/pasta,dog,No,night owl,Yes,Nonsense - Sabrina Carpenter
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Other,,,53706,35.6528,139.8395,pineapple,cat,Yes,night owl,Yes,"Fly me to the moon --- Frank Sinatra
Night Dancer --- imase"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,39.4784,-106.0443,pepperoni,cat,No,night owl,Yes,Style by Taylor Swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53703,42.3601,-71.0589,pineapple,dog,No,night owl,Yes,Do Not Disturb -Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,n/a,n/a,53715,25.7617,-80.1918,pineapple,cat,Yes,night owl,Yes,Chicken Tendies by Clinton Kane
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,,53715,43.0731,-89.4012,sausage,cat,Yes,early bird,Maybe,Mayonaise by The Smashing Pumpkins
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Engineering: Mechanical,,,53706,41.3851,2.1734,mushroom,dog,No,early bird,Yes,Hysteria - Muse
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,,Other (please provide details below).,not declare yet,,53711,37.5665,126.978,mushroom,dog,No,no preference,Maybe,blackpink - pink venom
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Computer Science,,Data Science certificate,53703,44.5012,-88.0611,pepperoni,cat,No,night owl,Maybe,All That by Mac Miller
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53711,51.5074,-0.1278,mushroom,dog,Yes,no preference,Maybe,"""Always There"" -Greta Van Fleet"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,,Computer Science,,,53715,49,50,pepperoni,dog,No,night owl,Maybe,Chandelier - DJ Khaled
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,22,Business: Other,,"consumer behavior & marketpace studies, economics",53703,18.2528,109.5119,mushroom,dog,No,no preference,Yes,"Angel, Mosiah"
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,44.0134,-69.3102,Other,cat,Yes,no preference,No,September by Earth Wind and Fire
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Biomedical,,,53706,41.8781,-87.6298,mushroom,dog,No,early bird,Maybe,no option post malone
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Business: Finance,,Information Systems,53703,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Wat's Wrong by Isaiah Rashad
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,"Double major: Finance, Investment, and Banking / Information Systems",,53715,43.6123,-110.7054,pepperoni,dog,No,night owl,Yes,"Looking out for you, Joy Again"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Other (please provide details below).,Economics,Data Science minor,53703,33.8847,-118.4072,pineapple,dog,Yes,no preference,Yes,Boss DJ by Sublime
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.9526,-75.1652,mushroom,dog,No,no preference,Maybe,Everybody Wants to Rule the World- Tears for Fears
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,21,Science: Biology/Life,,,53703,30.5728,104.0668,mushroom,cat,Yes,early bird,Yes,"Until I Found You
Stephen Sanchez"
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Other (please provide details below).,econ,data science,53703,0,45,pineapple,dog,No,no preference,No,fire on fire Sam Smith
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Biomedical,,Data science,53706,43.168,-89.284,basil/spinach,dog,No,night owl,Yes,505 by the artic monkeys
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Other (please provide details below).,Textiles and Fashion Design ,,53703,48.6997,-122.8756,basil/spinach,dog,Yes,night owl,Yes,32 Flavors by Alana Davis
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Science: Biology/Life,,,53706,42.9005,-88.0291,pineapple,dog,No,night owl,Maybe,Regular (English Version)- NCT 127
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Other (please provide details below).,Economics,Spanish,53715,36.1699,-115.1398,mushroom,dog,No,night owl,Yes,
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,I am an undecided freshman major right now. I am thinking about applying to the industrial engineering major or majoring in psychology and legal studies because I have an interest in going to law school. ,,53706,25.7033,-80.2828,none (just cheese),dog,Yes,night owl,Maybe,Lay All Your Love On Me by ABBA
COMP SCI 319:LEC003,LEC003,24,Other (please provide details below).,Economics,,53703,40,116,sausage,cat,No,night owl,No,"Play Date
Martinez"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Information Science. Possibly data science certificate.,,53703,48.8566,2.3522,macaroni/pasta,dog,No,night owl,Maybe,Dandelions by Ruth B.
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Computer Science,,,53715,42.1024,-88.0585,pineapple,dog,Yes,night owl,Yes,The Scientist by Coldplay
COMP SCI 319:LEC004,LEC004,23,Other (please provide details below).,Economics,,53704,39.904,116.407,pineapple,neither,Yes,early bird,Yes,Every song by Jay Chou. A Chinese singer.
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Data Science,,economics,57306,24.4798,118.0894,pepperoni,neither,No,night owl,No,The Hills by The weekend
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Business: Finance,,,53703,43.076,89.3929,pepperoni,dog,Yes,no preference,Yes,"Jake's Piano - Long Island
Zach Bryan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,Nuclear Engineering,,53703,40.7128,-74.006,Other,dog,Yes,night owl,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,,Engineering: Mechanical,,,53703,33.493,-111.9258,pepperoni,dog,No,night owl,Yes,Teguila Shots- Kid Cudi
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Mathematics/AMEP,,,53703,53.3498,-6.2603,none (just cheese),dog,No,early bird,Yes,You Can't Make Old Friend by Kenny Rogers ft. Dolly Parton
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53703,40.71,-74,none (just cheese),dog,Yes,night owl,Yes,Anything Harry Styles
COMP SCI 319:LEC004,LEC004,22,Business: Information Systems,,,53703,36.0671,120.3826,pineapple,dog,No,night owl,Maybe,lonely dance
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Mechanical,,,53715,44.9212,-93.4688,pepperoni,dog,No,night owl,Yes,Snow (Hey Oh) by Red Hot Chili Peppers
COMP SCI 319:LEC001,LEC001,23,Computer Science,,,53703,23.1291,113.2644,tater tots,neither,Yes,early bird,Maybe,《lost stars》- Adam Levine
COMP SCI 319:LEC003,LEC003,22,Other (please provide details below).,Geography - Geographic Information Science and Cartography,N/A,53715,45.5017,-73.5673,mushroom,dog,No,night owl,Yes,Afterglow - Ed Sheeran
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Other (please provide details below).,Computer Science,Data Science,53706,35.6895,139.6917,sausage,dog,No,night owl,Yes,"Lost in Paradise , Miura Jam"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53715,30.1766,-85.8055,pepperoni,dog,No,early bird,No,"Billie Jean-Micheal Jackson
or
Cum on Feel the Noize-Quiet Riot"
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,39.1898,106.8183,pepperoni,dog,No,night owl,Yes,Peach — Sammy Virji
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,22,Computer Science,,,53703,17.4203,78.4029,mushroom,dog,Yes,no preference,Maybe,Popular (feat. Playboi Carti) by The Weeknd & Madonna
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Data Science,,Computer Science,53705,37.45,-122.2,pineapple,cat,No,early bird,Maybe,Natural - What If
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,Yes,night owl,Yes,All Falls Down by Kanye West
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,Other,dog,Yes,early bird,No,Fishing in the Dark - Nitty Gritty Dirt Band
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Other (please provide details below).,Economics,,53703,22.5431,114.0579,pepperoni,dog,Yes,night owl,No,snowman-sia
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Data Science,,,53706,28.5383,-81.3792,sausage,dog,No,early bird,No,Come On Eileen by Dexys Midnight Runners
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,39,Data Science,xxx,Biomedical Data Science,53713,47.3006,-88.0459,pepperoni,cat,Yes,no preference,Yes,"Our Song, Joe Henry"
COMP SCI 319:LEC001,LEC001,23,Science: Other,information science,,53718,40.4259,-86.9081,pepperoni,dog,No,no preference,Yes,Young and Beautiful by Lana Del Rey
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Computer Science,,,53703,39.3597,111.5863,pepperoni,dog,No,night owl,Yes,Baby I'm bleeding - Jpeg Mafia
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Engineering: Biomedical,,,57303,41.8,-72,sausage,dog,No,early bird,No,Money - The Drums
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC001,20,Data Science,,Math Econ,53711,48.1376,11.5799,pepperoni,cat,No,no preference,Maybe,FE!N by Travis Scott
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,Spanish,53706,44.7666,-85.5946,none (just cheese),dog,Yes,no preference,No,Single ladies - Beyoncé
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53718,40.7584,-73.9843,none (just cheese),dog,Yes,early bird,Maybe,"Spectrum - Florence + The Machine, Calvin Harris"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Computer Science,,,53706,22.3072,73.1812,none (just cheese),neither,Yes,no preference,Maybe,I have no such preference for songs.
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Computer Science,I am a computer science major.,Not Mandatory,53706,25.2048,55.2708,pepperoni,dog,Yes,early bird,No,Titi me pregunto by bad bunny.
COMP SCI 319:LEC004,LEC004,24,Other (please provide details below).,Econometrics,,53711,24.8801,102.8329,pineapple,cat,No,night owl,Yes,Resting Ground by Christopher Larkin
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,economics,data science,53703,5.4203,100.3119,none (just cheese),cat,No,no preference,Maybe,You give love a bad name bon jovi
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,,Business: Finance,,,53703,52.3702,4.8952,pepperoni,dog,No,night owl,Yes,Radio Ga Ga by Queen.
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Science: Biology/Life,,,53706,-8.6399,115.1402,Other,dog,No,night owl,Yes,Rise
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Data Science,,,53706,,,pepperoni,dog,No,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Biomedical,,Spanish,53715,44.8504,93.7876,pineapple,dog,Yes,night owl,Yes,Nonstop by Drake
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53711,-33.9249,18.4241,pineapple,dog,Yes,early bird,Yes,Violent Crimes - Kanye West
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Data Science,,Information Systems,53175,28.5383,-81.3792,sausage,dog,No,early bird,No,Come On Eileen by Dexys Midnight Runners
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Mathematics/AMEP,,Psychology,53715,38.9072,-77.0369,pineapple,dog,No,early bird,Yes,Love Story - Taylor Swift
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Engineering: Industrial,N/A,N/A,53711,42.6507,18.0944,pepperoni,dog,Yes,no preference,Yes,Holanda - Jhayco
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53715,40.7128,-74.006,pepperoni,neither,Yes,night owl,Yes,《花海》from 周杰伦;Floral Sea by Jay Chou
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,22,Other (please provide details below).,Mechanical Engineering,Physics,53711,39.7392,-104.9903,pineapple,dog,No,night owl,Yes,"""The Weight of Dreams"" by Greta Van Fleet (modern day copy-cat of Led Zeppelin)"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Mechanical,,,53715,49.7938,-93.1955,mushroom,dog,Yes,night owl,Yes,Hurt Feelings by Mac Miller
COMP SCI 319:LEC002,LEC002,23,Science: Other,master of science information (data analyst),none,53703,44.0521,-123.0868,sausage,cat,No,night owl,Yes,beside you - keshi
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,21,Statistics,,,53703,44.51,88.01,basil/spinach,cat,No,night owl,Yes,Dunno - mac miller
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,23,Computer Science,,Economics,53715,55.6761,12.5683,sausage,dog,Yes,no preference,Yes,Uden dig - ukendt kunster
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Cellular and Molecular Biology,Japanese,53703,35.3032,139.5657,basil/spinach,dog,No,night owl,Yes,Memories by Maroon 5
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Computer Science,,,53706,37.5326,127.0246,sausage,cat,Yes,no preference,Yes,"Title: Some might say (Oasis)
"
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Finance,Finance ,Marketing,53715,64.9631,-19.0208,sausage,dog,No,night owl,Yes,Jump Around by House of Pain
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,Undecided,,53715,41.8781,-87.6298,basil/spinach,dog,No,early bird,Yes,New Beat by Toro y moi
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Economics,,53818,43,0,sausage,neither,No,night owl,Maybe,None
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,39.9526,-75.1652,pepperoni,dog,No,night owl,Yes,All the Stars by Kendrick Lamar and SZA
COMP SCI 319:LEC004,LEC004,22,Computer Science,,,53715,22.5431,114.0579,sausage,cat,No,night owl,Yes,cruel summer!!! Taylor swift!!!
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Accounting,Finance,53715,41.8781,-87.6298,sausage,dog,Yes,night owl,Yes,Change- Bailey Zimmerman
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Political Science,,53703,41.8781,-87.6298,Other,cat,Yes,early bird,Maybe,"Nashville, TN by Chris Stapleton"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Computer Science,,,53715,22.5886,88.4043,Other,dog,No,no preference,Yes,Elevated - Shubh
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC004,20,Data Science,,,53703,35.9078,127.7669,pepperoni,dog,Yes,early bird,Yes,One Call Away - Charlie Puth
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53703,49.2827,-123.1207,pineapple,cat,No,no preference,Yes,"before he cheats
by carrie underwoods"
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Engineering: Biomedical,,,53706,35.6895,139.6917,basil/spinach,dog,Yes,no preference,Yes,Wind Blows - Dreamcatcher
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Mechanical,n/a,n/a,53706,43.0517,-89.3427,macaroni/pasta,dog,Yes,no preference,Yes,"title: wonderwall
artist: Oasis "
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Data Science,,,53716,44.5133,-88.0133,green pepper,dog,No,night owl,Yes,Mr. Rager by Kid Audi
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Business: Finance,,"Mathamatics for finance, Economics",53703,24.4798,118.0894,Other,cat,Yes,no preference,Maybe,Not good enough for you-Jay Chou
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Business: Other,Marketing,,53715,43.0389,-87.9065,none (just cheese),cat,Yes,no preference,Maybe,I guess that's why they call it the blues - Elton John
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Data Science,I plan to major in Data science.,no second major,53711,33.6225,113.3418,basil/spinach,dog,No,night owl,Maybe,That Girl by Olly Murs
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,23,Other (please provide details below).,Economics,Political Science,53703,43.0731,-89.4012,pepperoni,cat,Yes,night owl,No,500 Miles
COMP SCI 319:LEC001,LEC001,30,Engineering: Other,,,53705,-34.4909,-58.4892,pepperoni,dog,Yes,early bird,Maybe,Sweet Child O' Mine - Guns N' Roses
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economic,,53705,31.2304,121.4737,none (just cheese),cat,No,early bird,Yes,Closer by the chainsmokers
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Business: Information Systems,,,53706,33.4484,-112.074,none (just cheese),dog,No,no preference,Yes,runaway by Kanye West
COMP SCI 319:LEC002,LEC002,25,Engineering: Other,,,53705,37.1765,-3.5979,basil/spinach,cat,No,night owl,Maybe,Time of Our life - DAY6
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,21,Science: Biology/Life,,French,53703,44.9019,-93.3388,basil/spinach,dog,Yes,no preference,Yes,Brazil- Declan McKenna
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Data Science,,Economics,53715,43.7696,11.2558,none (just cheese),cat,Yes,night owl,Yes,November Rain Guns N' Roses
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Finance,Econ with data science certificate ,53703,41.3851,2.1734,pepperoni,dog,No,no preference,No,(It goes like) nanana by Peggy Gou
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,38.7223,-9.1393,basil/spinach,dog,Yes,no preference,No,Nice For What by Drake
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Information Systems,,"Supply chain, operation technology managment ",53703,12.4964,41.9028,pineapple,dog,No,night owl,Yes,My favorite song is probably dancing queen by ABBA
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Mechanical,,,53706,47.6775,11.2041,basil/spinach,dog,No,no preference,Yes,Uptown Girl by Billy Joel
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Data Science,,,53703,31.8433,117.2457,Other,dog,No,night owl,Yes,"Title: [Mrs. Shexiang] (https://www.last.fm/music/Phoenix+Legend/_/Mrs.+Shexiang)
Artist: Phoenix Legend"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Data Science,,,53706,55.68,12.58,pepperoni,cat,No,night owl,Maybe,Love Lost - Mac Miller
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,economics BA,,53711,35.6895,139.6917,mushroom,dog,No,no preference,Yes,My favorite song is Favorite Song.
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,18,Computer Science,,,53706,45.4642,9.19,pepperoni,cat,No,night owl,Maybe,"****************************
The Weeknd - Save Your Tears
****************************"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,31.8089,120.6153,Other,cat,No,no preference,Yes,Blood Type-Viktor Tsoi
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Engineering: Biomedical,,,53703,40.4855,-106.8336,pepperoni,dog,Yes,early bird,Maybe,When it Rains it Pours by Luke Combs
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Business: Finance,,Real Estate,94024,40.7128,-74.006,sausage,dog,Yes,night owl,Maybe,
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Finance,N/A,N/A,53703,1.2,4.2,pepperoni,dog,No,no preference,Maybe,I'm gonna be (500miles) by the proclaimers
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,,Engineering: Mechanical,,,53703,39.6456,-77.4205,pepperoni,dog,No,no preference,Yes,Jimmy Cooks by Drake
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Business: Finance,N/A,Data science,53706,13.8079,108.1094,basil/spinach,dog,No,early bird,Maybe,"Truoc khi em ton tai - Thang
Mirror ball - Taylor Swift"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Other,Environmental Science,,53715,41.8781,-87.6298,green pepper,dog,Yes,night owl,Yes,Black Swan by BTS
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,19,Mathematics/AMEP,,,53715,44.79,-89.7,pepperoni,dog,No,no preference,No,I don't have a favorite
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Data Science,Information and data science,,53703,43.0389,-87.9065,pepperoni,dog,No,night owl,Maybe,mayonaise smashing pumpkins
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,My primary major is Economics.,My secondary major is Psychology. I have declared a certificate in data science.,53703,35.6895,139.6917,pepperoni,neither,No,no preference,Maybe,"Hype boy - New Jeans
Paris in the rain - Lauv
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,21,Data Science,,,53703,32.8328,-117.2713,Other,dog,Yes,night owl,Maybe,The Pale Moonlight - Kid Cudi
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,information science ,data science,53706,41.3851,2.1734,green pepper,dog,Yes,night owl,Yes,Jungle - Drake
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,22,Science: Biology/Life,,,53715,47.0502,8.3093,macaroni/pasta,dog,No,night owl,Yes,Under Pressure by Queen and David Bowie
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Industrial,,,53703,18.0231,-63.0482,Other,cat,No,no preference,No,Could you be loved - Bob Marley
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Information Science,,53703,49.2827,-123.1207,pepperoni,dog,No,night owl,Yes,tell me what you want - dacelynn
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Statistics,I selected Statistics above.,I am considering double majoring in data science.,53703,60.1699,24.9384,pepperoni,dog,Yes,early bird,Yes,Mrs. Hollywood - Go-Jo
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,I am undecided but planning on potentially majoring in Data Science or at least getting a certificate. ,"I am also potentially majoring in International Studies, but am currently undecided.",53706,37.7749,-122.4194,basil/spinach,dog,Yes,night owl,Maybe,"""The Air That I Breathe"" The Hollies "
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,N/A,N/A,53706,43.0389,-87.9065,pepperoni,dog,Yes,early bird,Yes,Jungle by Andre Nickatina. Its Christian Yelich's walk up song.
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Business: Finance,,Psychology,53715,51.5074,-0.1278,basil/spinach,cat,No,night owl,Yes,Daydreaming by Harry Styles
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,Mech E,,53715,41.1579,-8.6291,basil/spinach,dog,No,night owl,Yes,Zach Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Data Science,,,53706,19.64,-156,pepperoni,dog,Yes,night owl,Yes,From Time by Drake
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Actuarial,,Data Science,53706,43.485,-89.754,mushroom,neither,No,night owl,Yes,"New Romantics, Taylor Swift"
COMP SCI 319:LEC001,LEC001,22,Other (please provide details below).,Information Science,No,53703,31.23,121.47,mushroom,dog,No,night owl,Maybe,"Artist: BLACKPINK, Title: Shut Down"
COMP SCI 319:LEC001,LEC001,22,Other (please provide details below).,Information science,,53703,31.23,121.47,mushroom,dog,No,night owl,Yes,"Song: Shut Down, Artist: Black Pink"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Engineering: Mechanical,,,53706,47.6062,-122.3321,pineapple,dog,Yes,early bird,No,Flashing Light by Kanye West
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53714,45.8713,-89.7116,pepperoni,cat,Yes,night owl,Yes,Africa by Toto
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Science: Physics,,,53726,60.39,5.32,mushroom,dog,Yes,night owl,Yes,Heat Above by Greta Van Fleet
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,21,Other (please provide details below).,Genetics and Genomics,,53703,36.7234,25.2822,basil/spinach,dog,Yes,early bird,Maybe,Kiss of Venus - Dominic Fike
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Other (please provide details below).,Data Science and Mathematics ,,53706,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,Heart Throb - Pritam
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Business: Finance,,,53703,41.8818,-87.8367,pepperoni,dog,No,night owl,No,"Boogie Wonderland by Earth, Wind, and Fire and The Emotions"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Legal Studies major,,10075,40.7131,-74.0072,pepperoni,dog,Yes,no preference,Yes,Dancing in the Moonlight
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Computer Science,,,53703,43.0731,-89.4012,pineapple,cat,No,no preference,Yes,Hits Different - Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Data Science,,,53715,45.4642,9.19,pineapple,dog,No,night owl,Yes,Passionfruit - Drake
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Computer Science,,Data Science,53715,25.2345,110.18,mushroom,cat,No,night owl,Maybe,Midsummer Madness by 88rising
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Engineering: Industrial,,,53706,60.8525,7.1136,pepperoni,dog,Yes,no preference,No,Boulevard of Broken Dreams by Green Day
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Engineering: Industrial,,,53715,51.5074,-0.1278,none (just cheese),dog,No,night owl,Yes,"unruly NSG,Meeks"
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Data Science,,Global Health,53715,18.58,-68.41,macaroni/pasta,cat,Yes,early bird,Yes,"November Rain, Guns N' Roses"
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,44.5004,-88.0613,pepperoni,cat,Yes,early bird,Maybe,"""Take It Easy"", Eagles"
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,21,Science: Biology/Life,,,53590,59.9,10.7,macaroni/pasta,cat,Yes,early bird,Yes,Trouble by Elvis Presley
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Engineering: Mechanical,,,53703,44.5133,-88.0133,pepperoni,dog,No,early bird,No,Revival by Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Business: Information Systems,,,53590,45.5017,73.5674,pepperoni,neither,Yes,night owl,Maybe,Teeth by 5 Seconds of Summer (please do play this one sometime!)
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53706,47.227,-88.164,pineapple,cat,No,night owl,Yes,stacy's mom by fountains of wayne
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Other (please provide details below).,Undecided,,53706,42.3314,-83.0458,pepperoni,dog,No,night owl,Maybe,Always Forever by Cults
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,36.3719,-94.2027,mushroom,dog,Yes,early bird,No,At the Beach by the Avett Brothers
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Other (please provide details below).,Economics,,53703,41.9028,12.4964,pepperoni,dog,Yes,night owl,Yes,Free bird - lynyrd skynyrd
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Other (please provide details below).,Behavioral Economics,"Mathematics, Data Science Minor",53715,42.3601,-71.0589,basil/spinach,dog,Yes,early bird,No,Sitting on Top of the World - Burna Boy
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Mechanical,,,53706,34.4208,-119.6982,pineapple,dog,No,early bird,Maybe,snooze by SZA
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53706,42.584,-87.82,pepperoni,dog,Yes,no preference,Maybe,Outside- Calvin Harris
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Business: Other,,,53703,37.1324,24.815,pepperoni,dog,No,night owl,Yes,Thunder by Imagine Dragons
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,44.79,-89.723,pepperoni,dog,No,no preference,No,Eye of the Tiger
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Engineering: Mechanical,,,53703,-33.9249,18.4241,pepperoni,dog,No,no preference,Yes,The Adults Are Talking - The Strokes
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Science: Other,My primary major is Atmospheric and Oceanic Science.,I am considering double majoring in either Environmental Studies or Math. ,53715,40.5853,-105.0844,none (just cheese),dog,Yes,no preference,Yes,"""Tidal"" Noah Kahan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Mechanical,,,53703,41.9,-87.6,pepperoni,dog,No,night owl,No,Revival by Zach Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC002,20,Other (please provide details below).,Economics.,Data Science.,53703,44.972,-93.51,pepperoni,dog,Yes,night owl,Maybe,Broken Clocks by SZA.
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Other (please provide details below).,Economics and Data Science,,57315,42.6256,-71.3853,pepperoni,dog,Yes,night owl,Yes,Style by Taylor Swift
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Data Science,-,Econ ,53711,1.3521,43.0731,mushroom,dog,Yes,early bird,Maybe,low-key - Nikki
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Computer Science,,,53703,61.2114,-149.7313,mushroom,cat,Yes,night owl,No,"""I Wonder"" by Kanye West"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Mechanical,,,53726,46.5436,-87.3954,basil/spinach,cat,Yes,night owl,Yes,"Snow, Red Hot Chili Peppers "
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53715,43,-89.3,pepperoni,dog,No,night owl,Yes,"FIEN, Travis Scott"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Mathematics/AMEP,,Statistics,53715,27.2195,78.0216,Other,neither,No,night owl,Yes,Taylor Swift- Style
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Science: Physics,n/a,n/a,53706,31.2304,121.4737,mushroom,cat,No,night owl,Yes,"Concorde -- Black Country, New Road"
COMP SCI 319:LEC001,LEC001,,Other (please provide details below).,economics,no,53705,39.9042,116.4074,mushroom,cat,Yes,night owl,Yes,What you mean to me -- Matthew Morrison/Laura Michelle Kelly
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC003,18,Engineering: Industrial,n/a,n/a,53706,1.3521,103.8198,pepperoni,dog,Yes,night owl,Yes,When the Day is Done by Grent Perez
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Science: Biology/Life,,,53719,51.5074,-0.1278,Other,cat,No,night owl,Maybe,Father Time - Kendrick Lamar
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Business: Other,Business related but undecided.,n/a,53706,37.5326,127.0246,mushroom,dog,No,night owl,Yes,"New Jeans - ETA
New Jeans - OMG"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,42.2387,-87.9596,pepperoni,neither,Yes,night owl,Maybe,Laugh Now Cry Later - Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,21,Data Science,,,53703,43.4714,-110.7688,sausage,dog,Yes,night owl,Yes,My Old School - Steely Dan
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53715,43.07,-89.4,sausage,dog,No,no preference,Maybe,I Hope That's True by Morgan Wallen
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,,Other (please provide details below).,Undecided.,,53706,35.6895,139.6917,sausage,cat,No,night owl,Yes,Stitches-Shawn Mendes
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,Finance,Information Systems,53718,43.6511,-79.347,sausage,dog,No,night owl,Maybe,Over by Drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Science: Biology/Life,,Data Science,53715,13.7563,100.5018,pepperoni,dog,No,night owl,Yes,Hurricane Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Business: Finance,,,53715,50.0755,14.4378,pepperoni,dog,No,night owl,Yes,Nonstop by Drake
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,22,Science: Biology/Life,,"Data Science, BS",53703,37.5683,126.9978,pepperoni,cat,No,night owl,No,'Mourning' - Post Malone
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,20,Data Science,,,53703,37.44,25.37,pepperoni,cat,No,night owl,Yes,Spotless- Zach Bryan ft. The Lumineers
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Business: Finance,,Business: Information Systems,53715,52.3702,4.8952,Other,cat,No,early bird,Yes,As It Was by Harry Styles
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53703,24.4882,54.3773,none (just cheese),cat,No,night owl,Yes,
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Computer Science,,,53703,42.9856,-88.0761,Other,dog,No,night owl,No,"Aries - Fools gold
"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Data Science,,,53703,33.4484,-112.074,mushroom,cat,No,night owl,Yes,fire burning -sean kingston
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53715,40.7128,-74.006,none (just cheese),dog,No,early bird,Yes,"Ordinaryish People, by AJR"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,22,Other (please provide details below).,"Economics, with data science certificate.",,53711,34.7466,113.6253,pepperoni,cat,Yes,no preference,Maybe,"One Last Kiss, by Utada Hikaru"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Data Science,,,53726,43.2815,-88.4091,sausage,dog,No,night owl,No,Normal Girl by SZA
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Engineering: Industrial,,,53703,39.6349,-106.5283,pepperoni,dog,Yes,night owl,Yes,Dark Necessities by The Red Hot Chilli Peppers
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Mathematics/AMEP,,Statistics,53706,31.2304,121.4737,sausage,cat,Yes,early bird,Yes,Scared 2 be Lonely--Lil Tjay
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,,Computer Science,,Data Science,53715,42.3601,-71.0589,sausage,dog,No,night owl,Yes,The Ladder - Margolnick
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Data Science,,Economics,53706,60.1282,18.6435,Other,dog,No,night owl,Maybe,Smells like teen spirit-Nirvana & Pretender- Foo Fighters (I'm never able to select my most favourite out of these two)
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Atmospheric and Oceanic Studies,,53726,44.447,88.889,pepperoni,dog,No,night owl,Yes,Julia - Mt. Joy
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53706,47.3886,-88.0226,pepperoni,dog,Yes,night owl,Maybe,"""Need 2"" by Pinegrove"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC004,19,Science: Other,,,53703,29.4316,106.9123,mushroom,neither,No,night owl,No,“FIREWORK” by &TEAM
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,44.5133,-88.0133,pineapple,dog,Yes,early bird,Yes,At the End of the Day -Wallows
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,,Data Science,,,53713,3.139,101.6869,basil/spinach,cat,Yes,no preference,Yes,Lady Gaga - Bad Romance
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Other (please provide details below).,Economics,N/A,53703,42.3601,-71.0589,basil/spinach,dog,No,night owl,Maybe,Revival - Zach Bryan
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,No,night owl,Yes,"""Passionfruit"" by Drake"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Engineering: Mechanical,,,53706,46.8108,-90.8182,pepperoni,dog,No,night owl,Maybe,"""My Hero"" by Foo Fighters "
"COMP SCI 220:LEC003, COMP SCI 220:LAB334, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,25.3176,82.9739,pepperoni,dog,Yes,early bird,Maybe,"Safe and Sound, by Capital cities"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Languages,N/A,N/A,53706,12.9716,77.5946,basil/spinach,cat,Yes,night owl,No,baseball - Hippocampus
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Data Science,,,53706,42.3601,-71.0589,sausage,dog,Yes,night owl,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,40.7128,-74.006,none (just cheese),dog,No,night owl,Yes,Father Stretch My Hands - Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Data Science,,,2038,,-71.0589,pepperoni,dog,Yes,night owl,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Mathematics/AMEP,,"Statistics, B.S.",53703,30.2741,120.1551,none (just cheese),dog,Yes,night owl,Maybe,Careless Whisper by Wham!
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Other,Material Science and Engineering,,53706,47.608,-122.3352,sausage,dog,No,night owl,Maybe,"************
Sixteen Tons
************
Geoff Castellucci
"
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,I am an economics major.,I may double major in data science but for now it is a minor.,53703,40.4987,-111.8188,green pepper,cat,No,night owl,Yes,Walking On A Dream by Empire of The Sun.
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Other (please provide details below).,economics,,53706,45.0938,-93.4976,Other,dog,No,no preference,Maybe,Drift Away - Uncle Kracker
COMP SCI 319:LEC004,LEC004,23,Science: Other,Economics,nope,53703,41.7407,123.4399,pepperoni,cat,No,night owl,No,Kiss Goodbye
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Business: Finance,,,54143,37.3891,-5.9845,pepperoni,dog,Yes,early bird,No,The House of the Rising Sun - The Animals
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,46.5,-94.3,sausage,dog,No,night owl,Yes,As She's Walking Away by Zac Brown Band
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Engineering: Mechanical,,,53703,40.7128,-74.006,pepperoni,dog,Yes,night owl,Yes,"Junio, Maluma
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,,54636,41.8781,-87.6298,mushroom,dog,No,early bird,Yes,Cherry by Harry Styles
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53597,44.7866,20.4489,macaroni/pasta,cat,No,night owl,Yes,bad dream baby - hippo campus
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Other (please provide details below).,Economics ,N/A,53703,43,-89,sausage,dog,No,early bird,Maybe,Cough Syrup - Young the Giant
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Biomedical,,,53706,40.7865,-74.3921,sausage,dog,No,night owl,Yes,"Fancy
Drake"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Mechanical,,,53706,-8.6786,115.4556,pepperoni,dog,Yes,no preference,Maybe,Hotel California-Eagles
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53703,40.7131,-74.0072,pineapple,dog,Yes,night owl,Yes,Freestyle by Lil Baby
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,Deciding between Biology and Biomedical Engineering,,53706,45.2658,-111.3003,pepperoni,dog,No,night owl,No,Best of You by the Foo Fighters
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Other (please provide details below).,Economics (Minor in Data Science),,53715,43.0722,-89.4012,sausage,dog,Yes,night owl,No,Art of Living - Mat Kerekes
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,51.5035,-0.1278,macaroni/pasta,neither,No,night owl,Yes,Movin' Out by Billy Joel
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53703,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,I Know - Travis Scott
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Science: Physics,NA,Currently in astrophysics but trying to transfer into the school of Engineering for Mechanical Engineering. ,53703,21.3069,-157.8583,sausage,cat,Yes,no preference,Maybe,"It's my Life, Bon Jovi"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,,Computer Science,,Maybe majoring in data science but I might minor it.,53706,60.1282,18.6435,none (just cheese),cat,No,no preference,Yes,Mad at the World - Heffron Drive
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Science: Physics,,,53706,44.9778,-93.265,basil/spinach,cat,No,night owl,Yes,Out of My League - Fitz and the Trantrums
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Business: Other,,,53726,43,-89,pepperoni,neither,No,no preference,Maybe,post malone
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53705,31,121,pepperoni,cat,No,night owl,Yes,Something Just Like This - The Chainsmokers & Coldplay
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics and Data Science.,,53703,26.6141,-81.8258,pepperoni,dog,Yes,night owl,Maybe,"Sweet Caroline, Neil Diamond"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,25,Other (please provide details below).,Zoology Major,n/a,53719,41.8781,-87.6298,basil/spinach,dog,No,night owl,Yes,"Dirty Little Secret
Song by The All-American Rejects"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,39,116,mushroom,cat,Yes,night owl,Maybe,see you again
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Yes,Fear and Fridays - Zach Bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Data Science,,,53706,40.7128,-74.006,pepperoni,dog,No,early bird,Maybe,Holy Ground by Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,mushroom,dog,No,no preference,No,"Wish You Were Here - Pink Floyd
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53715,38.5733,-109.5498,pineapple,dog,No,early bird,No,Don't You Worry Child by Swedish House Mafia
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53715,46.2044,6.1432,sausage,dog,Yes,no preference,No,"""Woods"" by Mac Miller"
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,"Economics major, data science minor ",,53703,38.4187,27.1296,green pepper,cat,Yes,no preference,No,Piano Man by Billy Joel
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Engineering: Industrial,,,53705,24.7136,46.6753,pepperoni,dog,Yes,early bird,No,"Mohammed Abdu- Artist
Wienak ya darb al mahaba"
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,40,Data Science,"Data Science is my primary major.
I am a returning student. My past Major was AMEP. Data Science majors didnt exist then. It fits better with what I was working towards. I love probablility and statistics.",NA,53705,43,88,sausage,cat,Yes,no preference,No,"Moonlight Sonata Movement #1 played on the piano vs the radio while it rains or at night with the windows open is awesome!!!!!!
Movement #3 will blow your mind.
If you dont like any of those, louisiana harmonica is good."
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,NA,NA,53703,45.8733,-63.5841,pepperoni,cat,No,early bird,Maybe,"Revival, Zach Bryan "
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Other (please provide details below).,"Still deciding from Mathematics, Statistics, and Economics.",,53706,39.9042,116.4074,sausage,neither,Yes,early bird,Maybe,"Title: Croatian Rhapsody
Artist: Tonci Huljic"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Science: Other,Nursing,Global Health minor ,53706,43.8376,10.4951,pepperoni,dog,Yes,night owl,Maybe,Gimme! Gimme! Gimme! by ABBA
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Data Science,,Economics (Math Emphasis) or Math for Econ and finance (still thinking),53706,55.7558,37.6173,pepperoni,dog,No,no preference,Maybe,Safe and Sound by Capital Cities
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Science: Other,Atmospheric and Oceanic Sciences,,53711,48.8566,2.3522,pineapple,dog,Yes,night owl,Maybe,Lady May by Tyler Childers
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,43.0742,89.3838,macaroni/pasta,dog,Yes,night owl,Yes,Little Wing - Jimi Hendrix
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53711,43.0731,-89.4012,sausage,dog,Yes,night owl,Yes,"Encore by the Red Hot Chili Peppers
"
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Other (please provide details below).,undecided,,53703,40.7306,73.9352,basil/spinach,dog,No,night owl,Yes,"Erase Me, Lizzie McAlpine"
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53726,45.5152,122.6784,pepperoni,dog,Yes,night owl,Yes,Pennies - Smashing Pumpkins
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,,Engineering: Industrial,,,53715,44.4047,8.9291,sausage,dog,Yes,early bird,Yes,"You Don't Love Me (No, No, No) - Dawn Penn"
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53715,40.7128,-74.006,pepperoni,dog,Yes,early bird,No,"""What You Know"" by Two Door Cinema Club"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC003,18,Data Science,,,53706,18.7897,98.9844,pineapple,dog,No,night owl,Yes,"One of my favorite songs is ""Bahamas"" by HARBOUR. "
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Computer Science,,,53704,43.0739,-89.3852,pepperoni,dog,Yes,night owl,Maybe,Bang Bang - K'NAAN
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,nuclear engineering,.,53715,47.6,-122.33,sausage,dog,Yes,night owl,Yes,"smells like teen spirit
-nirvana"
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53703,39.0742,21.8243,mushroom,dog,No,night owl,Yes,Cardigan - Don Toliver
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Business: Other,"Other: Accounting
",Business- Information Systems,53726,51.5074,-0.1278,none (just cheese),dog,Yes,early bird,No,Abba- Dancing Queen
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Science: Biology/Life,I am planning to major in neurobiology.,"Data Science
total 2 majors. Neurobiology and Data Science.",53706,36.9741,-122.0288,none (just cheese),cat,Yes,no preference,Maybe,Learn To Fly - Foo Fighters
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,42.3601,-71.0589,pepperoni,cat,No,night owl,Maybe,Show No Regret by Daniel Caesar
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,17,Engineering: Mechanical,,,53706,57.6202,-133.2372,pineapple,dog,No,night owl,Maybe,I Wanna Dance with Somebody by Whitney Houston
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Science: Other,Atmospheric and Oceanic Sciences,N/A,53726,42.7,-89.8679,none (just cheese),cat,No,night owl,Maybe,Might Be Right - White Reaper
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics ,N/a,53703,25.1931,55.279,pepperoni,neither,No,early bird,No,6th Sense-Kodak Black
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Data Science,,,53706,40.4168,-3.7038,basil/spinach,dog,Yes,early bird,No,Polaris Remix Saiko ft. Mora Feid Quevedo
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,42.3601,-71.0589,pineapple,cat,No,night owl,Yes,"zz melt - Jagger Finn
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Data Science,,,53703,44.7394,-93.1258,pepperoni,dog,No,night owl,No,"Self Care, Mac Miller"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Other (please provide details below).,international studies,,53703,41.3851,2.1734,pineapple,dog,Yes,no preference,Yes,"American Pie, Don Mclean"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53706,43.039,-87.906,pepperoni,neither,No,no preference,Yes,Flashing Lights - Kanye West
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Engineering: Industrial,N/A,N/A,53715,88.384,43.0058,pepperoni,dog,Yes,night owl,Maybe,"Stick Season
Noah Kahan"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC003,19,Data Science,,,53713,35.6895,139.6917,sausage,cat,No,night owl,Yes,Its You by Keshi
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Data Science,,,53715,45.9141,-89.2558,mushroom,dog,No,no preference,Yes,"Making Eyes by Archers. Madison based metalcore band! (beware of the screamo sections to some of their songs, lol)"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Engineering: Biomedical,,,53706,22.9068,43.172,mushroom,dog,Yes,early bird,Maybe,Out of Reach- BoywithUke
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,21,Business: Actuarial,,Risk Management & Insurance,53703,43.0731,-89.4012,green pepper,dog,Yes,early bird,No,Layla by Eric Clapton
COMP SCI 319:LEC004,LEC004,24,Other (please provide details below).,Econ,,53703,39.9042,116.4074,pineapple,neither,No,night owl,Maybe,"Savage Daughter
Sarah Hester Ross"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,cat,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Business: Finance,,,53703,40.7128,-74.006,pineapple,dog,No,night owl,Yes,FE!N- Travis Scott
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Business: Finance,,I am doing a data science certificate and planning on a double major in information systems.,53703,41.8781,-87.6298,mushroom,dog,No,early bird,No,"Hozier
Cherry Wine"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,,53711,21.3069,-157.8583,sausage,dog,Yes,night owl,Yes,I KNOW ? - Travis Scott
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,18,Engineering: Industrial,,,55337,48.8566,2.3522,mushroom,dog,No,night owl,Yes,The Other Side of the Door - Taylor Swift
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,17,Data Science,None,Biology,53706,52.3702,4.8952,Other,dog,Yes,early bird,No,Counting Stars by One Republic
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53703,1.3521,103.8198,pineapple,cat,Yes,night owl,Maybe,Someone Like You by Adele
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53726,44.988,-87.243,sausage,dog,No,early bird,No,Chattahochee by Alan Jackson
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Industrial,,,53705,23.5859,58.4059,pepperoni,neither,No,no preference,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,,Data Science,,Economics,53706,1.3521,103.8198,mushroom,cat,No,night owl,Yes,Cupid by Fifty Fifty
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Business: Other,Marketing,,53703,41.3851,2.1734,basil/spinach,dog,No,no preference,No,What is Love by Haddaway
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Data Science,,,53706,43.1132,-87.9997,sausage,cat,Yes,early bird,Yes,Viva la Vida by Coldplay
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Other (please provide details below).,Urban Studies,,53715,37.9838,23.7275,pepperoni,cat,No,no preference,No,Eat The Rich by Aerosmith
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Engineering: Mechanical,,,53715,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Yes,"""If I Know Me"" by Morgan Wallen"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Engineering: Industrial,,,53706,18.3288,-66.9713,pineapple,dog,No,night owl,No,Dancing Queen - Abba
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Industrial,,,53706,43.0739,-89.3852,pepperoni,dog,No,no preference,Maybe,Be Happy by 347aidan
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Science: Biology/Life,,,53726,30.2741,120.1551,pepperoni,cat,No,night owl,Maybe,N/A. I don't have a favorite song.
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,17,Data Science,,,53706,39.9042,116.4074,sausage,dog,No,night owl,No,"Red Eye
Justin Bieber"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,40.7128,-74.006,Other,dog,Yes,night owl,Maybe,September by Earth Wind and Fire
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Other (please provide details below).,Psychology,,53706,45.9857,-123.9082,pepperoni,dog,No,early bird,No,"""Stay"" by Post Malone"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Computer Science,,,53711,43.0739,-89.3852,Other,dog,No,night owl,Yes,Little Wing by Jimi Hendrix
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Mathematics/AMEP,,English - Creative Writing,53715,41.8661,-88.107,pepperoni,neither,No,early bird,Maybe,Unending Stream of Life -- David Maslanka
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,17,Data Science,,,53711,32.2259,35.2549,none (just cheese),cat,No,night owl,No,Dakiti - Bad Bunny
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Other (please provide details below).,Computer Science,"Along with CS, I plan to do Data Science, and maybe a certificate on Marketing.",53706,29.1523,48.1212,mushroom,dog,Yes,early bird,Maybe,Dance Monkey - Tones and I
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,20,Business: Finance,,"Economics, Information Systems",53703,43.0731,-89.4012,pepperoni,dog,No,night owl,No,White Room - Cream
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Industrial,N/A,N/A,53706,51.1785,-115.5743,none (just cheese),cat,No,night owl,Yes,green light by lorde
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Science: Physics,,"Data Science, Mathematics",53706,25.2048,55.2708,pepperoni,dog,Yes,night owl,No,AM Gold by Train
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC001,20,Engineering: Mechanical,,,53925,55.9533,-3.1883,pepperoni,cat,No,early bird,Yes,Wonderwall by Oasis
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC002,19,Other (please provide details below).,economics,,53703,33.6052,-117.8886,pepperoni,dog,No,early bird,Maybe,23 chayce beckham
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Mathematics/AMEP,,,53703,45.374,-84.9556,basil/spinach,dog,Yes,night owl,Maybe,Fire and Rain by James Taylor
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Other (please provide details below).,Atmospheric and Oceanic Science,Mathematics ,53715,45.2464,-93.3028,Other,dog,Yes,early bird,Maybe,Mr. Blue Sky by Electric Light Orchestra
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Computer Science,N/A,N/A,53715,43.0731,-89.4012,sausage,dog,No,night owl,Maybe,What You Know - Two Door Cinema Club
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Statistics,,,53706,44.3,-88.4,pepperoni,dog,Yes,early bird,Maybe,"Sing About me, I'm dying of thirst by Kendrick Lamar"
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Business: Actuarial,,"Finance, Risk Management and Insurance",53715,40.015,-105.2705,pepperoni,dog,No,night owl,Yes,Sweet Child O' Mine
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Data Science,,,53711,37.664,127.9,pepperoni,dog,Yes,night owl,Yes,Never go wrong
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,48.8566,2.3522,pepperoni,dog,No,night owl,Yes,moonwalking in the Calabasas by ddg.
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC004,20,Engineering: Mechanical,,,53703,39.9481,-74.077,sausage,dog,No,night owl,Yes,Set fire to the rain - Adele
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Data Science,,,53706,25.1204,121.5103,pineapple,cat,No,early bird,No,Studio Ghibli movie music
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Business: Information Systems,NA,Real Estate,53703,18.3368,-64.7281,mushroom,cat,Yes,no preference,Yes,"You Proof, Morgan Wallen"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC001,18,Engineering: Mechanical,,,53706,63.4195,-18.9986,none (just cheese),dog,Yes,no preference,Yes,Ticking by Zach Bryan
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Science: Biology/Life,,,53706,45.2646,-111.2533,pineapple,dog,Yes,early bird,No,Romeo and Juliet by the Dire Straits
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,37.7654,-122.4511,pepperoni,dog,No,early bird,No,All I Do - Stevie Wonder
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Astronomy/Physics,Physics,53711,43.0731,-89.4012,Other,dog,Yes,night owl,Maybe,Bank Account 21 Savage
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,Idk if this counts but I'm doing the game design certificate,53706,38.9072,-77.0369,pepperoni,cat,No,night owl,Maybe,Osmosis by Good Kid
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Industrial,,,53703,40.4168,-3.7038,sausage,dog,Yes,early bird,No,Pepas by farruco
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,,Data Science,,Statistics,53706,47.1212,-88.5645,pepperoni,dog,No,early bird,Maybe,Party in the USA
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,18,Engineering: Industrial,,,53706,43.6047,1.4442,Other,dog,Yes,night owl,Yes,Cigarettes out the window-Tv Girl
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Engineering: Mechanical,,Business ,53703,27.0993,-82.4315,pepperoni,dog,Yes,no preference,Yes,Island In The Sun
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Science: Biology/Life,,,53706,64.9631,-19.0208,mushroom,cat,No,night owl,Maybe,cardigan - Taylor Swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Other (please provide details below).,Journalism,,53706,41.3974,2.13,pepperoni,cat,Yes,no preference,Maybe,Maps - Yeah Yeah Yeahs
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,,Other (please provide details below).,Economics,,53703,47.608,122.3352,Other,cat,Yes,night owl,Yes,Revival Zach Bryan
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Statistics,Mathematics,,53706,50.8476,4.3572,pepperoni,dog,Yes,early bird,Maybe,"New Person, Same Old Mistakes - Tame Impala"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC002,19,Computer Science,N/A,N/A,53706,37.8715,112.5512,sausage,neither,Yes,no preference,Maybe,N/A
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,35.9802,-75.6421,sausage,dog,No,early bird,Yes,Gypsy - Fleetwood Mac
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Mechanical,,,53726,45.4408,12.3155,sausage,dog,No,night owl,Yes,Sultans of Swing by Dire Straights
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,40.7128,-73.9352,pepperoni,dog,Yes,night owl,Yes,Virtual Insanity - Jamiroquai
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.6403,-106.3709,sausage,dog,Yes,no preference,Maybe,Whiskey Friends by Morgan Wallen
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Engineering: Mechanical,,,53711,39.1907,-106.8192,Other,neither,No,early bird,No,Try that in a small town - Jason Aldean
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Other (please provide details below).,Undecided,,53703,40.7721,-73.9578,none (just cheese),dog,No,night owl,Yes,Company by Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Data Science,,,53706,41.2974,-96.6059,sausage,dog,Yes,night owl,Yes,m.y l.i.f.e. J cole
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53703,-33.9014,151.0576,pepperoni,dog,No,no preference,Yes,Zach Bryan - Revival
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC001,21,Business: Actuarial,,statistics ,53703,23.1291,113.2644,pineapple,dog,Yes,night owl,Yes,love story Taylor swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Other (please provide details below).,I am currently undecided but I am seriously considering Data Science at the moment.,,53715,48.7786,2.45,Other,dog,Yes,night owl,Yes,My Eyes - Travis Scott
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC004,20,Science: Biology/Life,,,53703,-81.7136,-109.3253,pineapple,neither,No,no preference,Maybe,"capybara song
just search it and you will find"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Computer Science,,,53715,41.8781,-87.6298,none (just cheese),dog,No,no preference,No,Too comfortable - Future
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Other,Civil Engineering,Spanish,53715,43.0731,-89.4012,pepperoni,dog,Yes,night owl,Maybe,Aint no mountain high enough - Marvin Gaye
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,22,Computer Science,,Data Science,53703,23.1291,113.2644,basil/spinach,cat,No,night owl,Yes,Bohemian Rhapsody - Queen
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53715,49.1747,-123.0194,green pepper,dog,No,night owl,Yes,"Gangsters Paradise
"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Science: Other,Double majoring in Biochemistry and Data Science.,"Data Science, Biochemistry ",53703,32.7157,-117.1611,Other,dog,Yes,night owl,Yes,Don't Stop; Fleetwood Mac
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Biomedical,,,53715,43.0389,-87.9065,sausage,dog,No,early bird,Maybe,505 - Artic Monkeys
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Industrial,,Business,53706,46.2388,-97.3636,sausage,dog,No,night owl,Maybe,Solo - Future
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Computer Science,,Data Science,53715,41.8781,-87.6298,Other,cat,No,night owl,Yes,Heartless by The Weeknd
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Statistics,,"Econ, Statistics",53706,55.9502,-3.1875,sausage,dog,Yes,night owl,Yes,Demons by Imagine Dragons
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Computer Science,,My second major is Data Science. My minors are Consulting and Leadership.,53711,34.0522,-118.2437,macaroni/pasta,cat,No,night owl,Yes,Consume by Chase Atlantic
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53706,41.9028,12.4964,sausage,dog,Yes,night owl,Yes,Secrets by The Weekend
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Business: Finance,,"Finance, Real Estate",53706,38.8707,-106.9809,sausage,dog,Yes,night owl,Maybe,Look after you - The Fray
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Engineering: Mechanical,,,53715,38.9828,-76.8819,basil/spinach,neither,No,night owl,Maybe,The Vampire Masquerade by Peter Gundry
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,18,Engineering: Other,,,53713,43.0663,-89.4049,pepperoni,dog,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Mechanical,1,1,53711,37,-122,sausage,cat,No,night owl,Yes,For Whom the Bell Tolls by Metallica
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,,53706,55.6761,12.5683,sausage,cat,No,no preference,Maybe,Poe Mans Dreams by Kendrick Lamar
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Data Science,,,53703,43,87,sausage,dog,Yes,night owl,Maybe,Better ma. By Pearl jam
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,23,Other (please provide details below).,Information Science,,53703,32.0853,34.7818,pepperoni,dog,No,early bird,No,Funkytown by Lipps
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC001,19,Business: Actuarial,,,53703,48.86,2.35,pepperoni,cat,No,night owl,Yes,imperial - j^p^n
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,,Statistics,53706,22.3964,114.1095,basil/spinach,neither,No,no preference,Maybe,"""Put Your Records On"" by Corinne Bailey Rae"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Other,Engineering Physics,,53703,44.9204,-93.2802,basil/spinach,dog,Yes,early bird,No,Houdini - Foster the People
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Data Science,,,53703,40.4168,-3.7038,basil/spinach,dog,No,night owl,Yes,19.10 by Childish Gambino
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Data Science,,data science,53703,56,51,mushroom,cat,No,night owl,Maybe,"too many night, metro boomin"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,My major is Economics with Mathematics Emphasis (BS),N/A,53705,51.5074,-0.1278,green pepper,dog,Yes,early bird,Maybe,"English language
Return of the Mack by Mark Morrison
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Engineering: Mechanical,,,53706,45.8,89.7,pepperoni,dog,Yes,night owl,Maybe,Hannukah Song- Adam Sandler
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Other,,,53715,45.9495,-89.151,macaroni/pasta,dog,Yes,early bird,No,More Than a Feeling by Boston
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,57703,74.8,41.33,mushroom,dog,No,night owl,No,Dancing with Myself by Billy Idol
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53715,29.9511,-90.0715,none (just cheese),cat,No,night owl,No,Shut up and Dance -Walk the moon
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,N/A,Risk Management & Insurance,53711,29.9511,-90.0715,pepperoni,dog,Yes,night owl,Maybe,The jeopardy song
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,43.0389,-87.9065,pepperoni,neither,No,night owl,Yes,"After Last Night by Bruno Mars, Anderson Paak, Silk Sonic "
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Other (please provide details below).,Accounting,Information Systems,53703,41.9028,12.4964,mushroom,cat,Yes,early bird,Yes,"Steady Love, Ben Rector"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53726,53.4645,-2.2896,pineapple,cat,Yes,night owl,Yes,"Juke Box Hero
Foreigner"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,Mathematics ,Data Science ,53715,43.0731,-89.4012,pineapple,dog,Yes,early bird,No,"""The Changing Times"" by Earth, Wind & Fire "
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,23,Engineering: Mechanical,,,53703,40,-76,Other,dog,No,early bird,Maybe,Better Now - Post Malone
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Genetics,N/A,53715,41.8781,-87.6298,Other,dog,No,night owl,Yes,Pursuit of Happiness- Kid Cudi
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Data Science,,Economics,53706,43.0722,89.4008,pepperoni,cat,Yes,night owl,Yes,Caribbean Queen (No More Love On The Run) By Billy Ocean
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Business: Other,,,53706,41.8847,-87.6166,pepperoni,dog,No,night owl,Yes,Overdue (feat. Travis Scott) by Metro Boomin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Genetics,Certificate: Data Science & Global Health,53715,41.8781,-87.6298,Other,dog,No,night owl,Yes,Pursuit of Happiness- Kid Cudi
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53706,43.0592,141.3555,sausage,dog,No,no preference,Maybe,Top of the World - Carpenters
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,,,53703,43.7696,11.2558,sausage,dog,No,night owl,Yes,Little wing Jimi Hendrix
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,43.2286,-88.1104,pepperoni,dog,Yes,early bird,Yes,"Let's Get It On, Marvin Gaye"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Engineering: Industrial,N/A,Entrepreneurship certificate. ,53715,41,87,pepperoni,dog,Yes,early bird,Maybe,Margaritaville - Jimmy Buffett
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,Possibly business finance ,53706,35.2488,24.9132,pepperoni,dog,Yes,night owl,Maybe,Letter from Houston by Rod Wave
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pepperoni,cat,No,no preference,Maybe,Virtual Insanity - Jamiroquai
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Other (please provide details below).,My major is Information Science.,I'd like to pursue the Data Science Certificate or major as well.,53703,38.1157,13.3615,mushroom,cat,No,early bird,Yes,Snooze by SZA
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53703,23,114,Other,neither,No,no preference,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,43.1101,-87.9074,sausage,dog,No,night owl,Maybe,God's Plan- Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Data Science,,,53705,-19.9173,-43.9346,sausage,dog,Yes,no preference,No,Clube da Esquina 7 - Milton Nascimento
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Data Science,,Journalism,53706,30.3935,-86.4958,macaroni/pasta,dog,Yes,night owl,Maybe,One Man Band by Old Dominion
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Computer Science,,,28431,48.8647,2.349,pineapple,dog,No,night owl,Yes,Here with me by dv4d
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Data Science,,,53703,38.9433,-94.7342,pineapple,cat,No,early bird,Yes,Sun to Me- Zach Bryan
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Other,,,53703,40.7608,111.891,pepperoni,dog,Yes,night owl,No,Alors On Danse - Stromae
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53706,40.7128,-74.006,sausage,dog,No,night owl,Yes,Impossible - Travis Scott
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Mathematics/AMEP,,,53706,64.8367,-147.7389,Other,dog,No,early bird,Yes,Back in Black by AC/DC
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,,,53701,45.1027,-93.4649,sausage,cat,Yes,early bird,Maybe,"I prefer anything country, but my favorite song right now is Life Changes by Thomas Rhett. "
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Biomedical,,,53703,35.2271,-80.8431,pineapple,dog,No,early bird,No,Amazing by Rex Orange County
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Science: Other,I am currently undecided but interested in the STEM and Business fields,,53706,37.3891,-5.9845,basil/spinach,dog,Yes,no preference,Yes,"""If I Can Dream"" by Elvis Presley"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,,Engineering: Mechanical,,,53703,50.0755,14.4378,pepperoni,neither,No,early bird,Maybe,"What You Won't Do For Love by Bobby Caldwell
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Economics,Data Science,53703,-37.8136,144.9631,pepperoni,dog,Yes,no preference,Maybe,Need to know -John Newman
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Biomedical,BME,N/A,53711,22.54,114,sausage,dog,Yes,no preference,No,A sky full of stars - coldplay
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Industrial,,,53706,36.1627,-86.7816,sausage,dog,Yes,night owl,Maybe,Like We Used To by A Rocket To The Moon
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,20,Engineering: Biomedical,,,53719,47.6062,-122.3321,pepperoni,cat,Yes,night owl,Yes,Ex-factor by Lauryn Hill
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Other (please provide details below).,Economics,,53703,53.3501,6.2662,none (just cheese),dog,Yes,night owl,Yes,Heavy Eyes by Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Business: Actuarial,,"Finance, RMI, Economics",53726,42.9765,88.1084,pineapple,dog,Yes,early bird,No,"7 & 7, Turnpike Troubadours"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,22,Other (please provide details below).,Education Studies,Psychology,53703,35.8714,128.6014,pepperoni,cat,No,no preference,Yes,Top of the World - Carpenters
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Other (please provide details below).,Economics,,53706,43,-89,pepperoni,dog,Yes,night owl,Yes,Baby Shark
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Data Science,,Mathematics,53706,37.9659,23.7325,sausage,cat,Yes,night owl,Yes,No Surprises by Radiohead
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,21,Science: Other,environmental sciences,,53703,48.1351,11.582,pepperoni,cat,No,no preference,Maybe,I lived-One Republic
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Data Science,,Mathematics,53715,41.8781,-87.6298,pineapple,dog,No,night owl,No,All My Love by Noah Kahan
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,20,Engineering: Biomedical,,,53715,36.16,-86.78,pepperoni,dog,Yes,early bird,No,I Remember Everything by Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,No,early bird,Maybe,Take a Walk by Passion Pit
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Data Science,,CS,53706,26.0745,119.2965,green pepper,cat,Yes,night owl,Yes,We will Rock you
COMP SCI 319:LEC003,LEC003,27,Other (please provide details below).,Information Science,No,53705,19.7418,-155.8444,none (just cheese),cat,No,no preference,Maybe,Don't look back in anger
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,53.3456,-6.2559,basil/spinach,dog,Yes,no preference,Yes,"Stick Season, Noah Kahan"
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53703,41.3851,2.1734,pepperoni,dog,No,night owl,Maybe,The Other Side of the Door by Taylor Swift
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,22,Science: Physics,,"Mathematics in the Physical and Biological Sciences(BS), Computer Science Certificate ",53703,42.8501,-106.3252,pepperoni,cat,Yes,early bird,Maybe,Dopesmoker - 2022 Remastered Version - Sleep
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC004,20,Other (please provide details below).,Psychology and Spanish,,53701,45.891,-123.9619,basil/spinach,dog,Yes,early bird,Yes,Ella Baila Sola by Peso Pluma
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,My primary field of study is Economics but I am also pursuing a certificate in data science. ,,53703,41.8781,87.6298,pepperoni,dog,No,night owl,Maybe,Hey driver - Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,30.2672,-97.7431,Other,dog,No,no preference,No,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Engineering: Mechanical,,,53703,39.7392,-104.9903,pepperoni,dog,Yes,night owl,Maybe,Nikes on my feet Mac Miller
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Computer Science,,,53703,40.2436,-109.01,pepperoni,dog,No,no preference,Maybe,RAVE RATS VOLUME 1: INTERDIMENSIONAL LIFE by ooxygen
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Business: Information Systems,,,53703,41.8781,-87.6298,basil/spinach,dog,Yes,night owl,Yes,Margaritaville by Jimmy Buffet
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53715,24.4539,54.3773,pepperoni,cat,Yes,early bird,No,IDK
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,21,Engineering: Other,,,53703,48.2082,16.3738,sausage,dog,Yes,night owl,No,Shallow - Lady Gaga
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Business: Information Systems,,BUS: Finance,53706,44.9537,-93.09,sausage,dog,No,night owl,No,"Baby, Justin Bieber"
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,20,Computer Science,,,53703,42.3601,-71.0589,pineapple,dog,No,night owl,Maybe,"Erase Me, Kid Cudi"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53715,44.8945,-93.6728,pepperoni,dog,No,night owl,Maybe,Hey Driver- Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53706,47.7502,-90.3356,sausage,dog,No,no preference,Yes,"Fly me to the moon, Frank Sinatra"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,,,53706,59.9139,10.7522,pepperoni,dog,Yes,night owl,Yes,Normal Girl - SZA
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC001,18,Data Science,,,53706,50.0755,14.4378,Other,dog,No,night owl,Yes,Break From Toronto - PARTYNEXTDOOR
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Business: Information Systems,,Accounting,53597,25.7617,-80.1918,pepperoni,cat,No,no preference,Maybe,Graduation - Kanye West
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,39.74,-104.98,mushroom,cat,Yes,night owl,Yes,temperature-sean paul
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,,53706,45.4408,12.3155,mushroom,cat,Yes,no preference,No,Santeria by Sublime
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53703,45.056,92.8088,basil/spinach,dog,Yes,early bird,No,More Than A Feeling by Boston
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,21,Business: Other,Marketing,,53703,41.4174,2.2122,mushroom,dog,No,early bird,Yes,One of my favorite songs is Pull me out of this by Fred Again
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Computer Science,,,53703,35.6895,139.6917,mushroom,cat,Yes,night owl,Yes,Never gonna give you up -Rick Astley
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,37.4605,-122.1703,sausage,dog,No,no preference,Yes,saturday night
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Business: Information Systems,,Finance,53703,6.5244,3.3792,Other,cat,Yes,early bird,No,The Color Violet - Tory Lanez
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC003,20,Data Science,Comm Arts,no,53703,39.9042,116.4074,pineapple,dog,No,night owl,Maybe,For Tonight --- Giveon
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Industrial,,,53703,39.74,-104.98,mushroom,dog,Yes,night owl,No,"vienna, Billy Joel"
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Mechanical,,,53706,49.2764,-0.7056,sausage,dog,Yes,early bird,Maybe,Stairway to Heaven by Led Zeppelin
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Science: Other,economics,DS,53703,31.2304,121.4737,sausage,dog,No,night owl,Yes,“the greatest” Lana Del Rey
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53706,17.385,78.4867,pepperoni,dog,No,early bird,Maybe,Saint Pablo - Kanye West
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Science: Other,,,53703,44.424,-124.069,basil/spinach,dog,No,night owl,Yes,Waltz No. 2 by Dmitri Shostakovich
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Data Science,,,53715,42.3601,-71.0589,Other,dog,Yes,night owl,Maybe,All Your'n by Tyler Childers
COMP SCI 319:LEC003,LEC003,,Statistics,,,53715,24.18,102.98,pineapple,neither,Yes,no preference,No, Never gonna give you up
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Engineering: Industrial,,,53703,42.3601,-71.0589,mushroom,dog,No,no preference,Yes,"Heavy Eyes, Zach Bryan
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Science: Biology/Life,,,53703,35.6895,139.6917,none (just cheese),cat,No,night owl,No,Cake by the Ocean by DNCE
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,Economics,Political Science,53715,40.7128,74.006,sausage,dog,No,night owl,Yes,Stacey's Mom
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Data Science,,,53706,22.3312,103.838,pineapple,dog,Yes,no preference,Maybe,"""2 soon"" - keshi"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Computer Science,,Intend to double major in Data Science,53706,41.8844,-87.6191,pineapple,dog,No,night owl,Yes,1998 by Monsune
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,Economics,Data Science Certificate ,53715,40.7128,-74.006,pepperoni,cat,No,night owl,Yes,"It’s all so incredibly loud, Glass Animals"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,No,no preference,Yes,Immortal by 21 Savage
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Data Science,,,53706,41.0082,28.9784,none (just cheese),dog,No,night owl,Yes,Little Dark Age by MGMT
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Computer Science,,,53703,43.0731,-89.4012,pepperoni,dog,Yes,early bird,No,Romeo and Juliet by Peter McPoland
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Data Science,Information Systems,,53706,59.9139,10.7522,Other,dog,No,early bird,Yes,"Deep Down(ft. Never Dull) - Alok
Give it to Me - Timbaland"
COMP SCI 319:LEC002,LEC001,,Data Science,,,53593,55.9502,-3.1875,pineapple,neither,No,night owl,Maybe,I Will Survive by Gloria Gaynor
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Data Science,,Economics,53703,39.9042,116.4074,pineapple,cat,No,no preference,Yes,LMLY
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Other (please provide details below).,Biochemistry,,53706,51.5099,-0.1278,basil/spinach,dog,Yes,early bird,Yes,Burn Burn Burn by Zach Byran
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,41.8894,12.4924,sausage,dog,No,early bird,Yes,"Houstonfornication, Travis Scott"
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,,,53703,42.3249,-71.0706,sausage,dog,No,night owl,Maybe,Blood on my jeans - Juice Wrld
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Biomedical,,,53703,18.582,-68.4055,pepperoni,dog,Yes,night owl,No,Rod Wave - Call Your Friends
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Business: Finance,,,53715,41.3851,2.1734,sausage,dog,No,night owl,No,Closer By the Chainsmokers
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Science: Other,,,53706,42.3601,-71.0589,Other,dog,No,no preference,No,"Electric Feel, MGMT"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,40.7128,-74.006,none (just cheese),dog,No,night owl,Yes,I dont listen to music
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Business: Actuarial,,Risk Management and Insurance,53703,42.3012,-71.3157,sausage,dog,Yes,night owl,No,Sunday by Earl Sweatshirt
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,22,Data Science,.,.,53706,37.5,127,mushroom,neither,No,early bird,No,snowman - seung hwan jeong
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,sausage,cat,No,night owl,Yes,
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,Economics,Data Science,53706,22.3964,114.1095,none (just cheese),dog,No,night owl,Yes,Black and White by Juice Wrld
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Actuarial,,"Statistics, Risk Management and Insurance, Certificate in Mathematics",53719,43.0731,-89.4012,pepperoni,dog,No,night owl,Yes,"Sovereign Light Cafe, Keane"
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC002,20,Computer Science,,,53705,31,-238,pepperoni,dog,No,night owl,Yes,Castle on the Hill - by Ed Sheeran
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53706,37.5665,126.978,pepperoni,neither,No,no preference,No,World to the wise. Matt Corman
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Engineering: Mechanical,N/A,N/A,53715,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Maybe,"STRINGS by MAX, featuring JVKE and Bazzi"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53715,43.0389,-87.9065,sausage,dog,Yes,early bird,Maybe,paranoid- Rio da yung og
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,,,53726,41.8614,-87.6114,basil/spinach,dog,Yes,no preference,No,Wildfire by Periphery
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Economics, Data Science,53711,35.7101,139.8107,mushroom,dog,Yes,early bird,Yes,Lemon Tree by the Fools Garden
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC002,21,Engineering: Biomedical,,,53703,38.5385,-75.0617,basil/spinach,cat,Yes,early bird,Maybe,"Be young, be foolish, be happy by The Tams."
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Other (please provide details below).,"Still pretty undecided but I am between Computer Science, Data Science, and business. ",,68114,39.7392,-104.9903,pepperoni,dog,No,no preference,Maybe,All Star by Smash Mouth
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53703,35.5951,-82.5515,pepperoni,dog,Yes,night owl,Yes,Good Days - SZA
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,41.8781,-87.6298,pepperoni,cat,Yes,night owl,Yes,The Adults Are Talking - The Strokes
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,22.1565,-100.9855,pepperoni,dog,Yes,early bird,No,FE!N by Travis Scott
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53706,42.8886,88.0384,green pepper,dog,Yes,night owl,Yes,One of my favorite songs is '98 Braves by Morgan Wallen.
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Science: Biology/Life,,,53711,1.2062,103.7959,green pepper,cat,No,early bird,No,Golden Hour by Mark Lee
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,17,Other (please provide details below).,Economics,,53706,51.5074,-0.1278,pepperoni,cat,Yes,night owl,Maybe,A Sky Full Of Stars- Coldplay
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Business: Finance,,Information Systems,53715,42.3601,-71.0589,none (just cheese),dog,Yes,no preference,Maybe,December 1963 (What a Night)
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Science: Biology/Life,,,53706,36.1699,-115.1398,mushroom,dog,No,night owl,Yes,Drive By by Train.
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,44.9105,-93.3487,sausage,dog,No,early bird,No,"Center Point Road by Thomas Rhett, Kelsea Ballerini"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,,53706,37.778,-122.42,pepperoni,dog,No,night owl,No,Work Song by Hozier
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Other,Materials Science and Engineering,,53703,51.5074,-0.1278,mushroom,cat,No,early bird,Yes,Good Old-Fashioned Lover Boy - Queen
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Science: Other,Microbiology,,53705,41.8781,-87.6298,pepperoni,cat,No,early bird,No,"So Right, Shaun"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Computer Science,,Mathematics,53703,38.707,-9.1356,none (just cheese),dog,No,no preference,Maybe,"Taylor Swift ""Paper Rings"""
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,40.7948,-73.9628,none (just cheese),dog,No,night owl,Yes,sk8er boi - arvil lavinge
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Data Science,Data Science ,Information Science,53706,44.37,-89.81,pepperoni,neither,No,night owl,Yes,How You Like That- Blackpink
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Computer Science,,,53715,43.0731,-89.4012,Other,cat,No,night owl,Yes,Feel Good Inc. by Gorillaz
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC003,20,Data Science,Data Science ,,53711,29.6548,91.1405,pepperoni,dog,No,night owl,Yes,608 by Salt
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Science: Other,Global Health,,53703,41.8781,87.6298,none (just cheese),dog,Yes,early bird,Maybe,Slide by Calvin Harris ft. Frank Ocean & Migos
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Other (please provide details below).,Information Science ,I have two minors; Data Science and Digital Studies ,53703,-87.6298,41.8781,green pepper,cat,No,early bird,Maybe,August by Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53703,39.9042,116.4074,none (just cheese),dog,No,early bird,No,If by Bread
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Languages,,,53703,39.74,-105,macaroni/pasta,cat,No,night owl,Yes,Water by Mother Falcon
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,144,-37,pepperoni,dog,No,no preference,Yes,[Excitable - Def Leppard] (https://www.youtube.com/watch?v=jqVfxWgfWhw)
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,41.3851,2.1734,sausage,dog,No,early bird,Yes,"Memories, by David Guetta."
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Engineering: Biomedical,,,53736,41.8781,-87.6298,pineapple,dog,No,night owl,Maybe,softly by clairo
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Engineering: Mechanical,,,53715,59.9139,10.7522,mushroom,cat,Yes,early bird,No,"Perfect places
Artist: Lorde"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53715,47.0505,8.3053,sausage,dog,Yes,no preference,Yes,"Breathe Deeper, Tame Impala"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,,Information Systems (Business),53703,33.4725,-81.9644,pepperoni,dog,No,night owl,Yes,"Last Train Home, John Mayer."
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,24,Other (please provide details below).,Economics with Mathematical Emphasis ,"Data Science,",53703,42.7165,12.1116,pepperoni,dog,Yes,night owl,Yes,Tiny Dancer by Elton John
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,43.7696,11.2558,pepperoni,dog,No,early bird,No,Pride-Kendrick Lamar
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Business: Other,,,53703,35.6895,139.6917,pineapple,dog,Yes,night owl,Maybe,"Song: Cupid
Artist: FIFTY FIFTY"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Engineering: Industrial,,,53703,41.8781,-87.6298,sausage,dog,No,early bird,No,passionfruit- drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53703,39.1031,-84.512,pepperoni,cat,No,early bird,Yes,Call Me Maybe - Carly Rae Jepsen
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Computer Science,,"Data Science
Game Design certificate",53702,28.7041,77.1025,pepperoni,dog,No,night owl,Yes,Better Now by Post Malone
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Science: Chemistry,,Biochemistry,20016,38.9072,-77.0369,pepperoni,dog,Yes,night owl,Yes,I would rather not answer
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Science: Other,Nutritional Sciences,,53703,41.8781,-87.6298,green pepper,cat,No,early bird,Yes,Sweet Virginia by The Rolling Stones
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53715,25.7575,-80.2515,pepperoni,dog,No,night owl,Yes,Touch the Sky - Kanye West
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Information science,Human development and family studies ,53726,45.4059,-86.9087,pepperoni,dog,No,night owl,Yes,Radio Lana Del Ray
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,Mathematics,53706,43.0731,-89.4012,pepperoni,dog,No,night owl,No,"*******************
Party Rock Anthem,
*******************
******
LMFAO
******"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,Pursuing certificate in Data Science. ,53711,35.0116,135.768,mushroom,dog,Yes,night owl,Yes,Nightcall- Kavinsky
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Business: Actuarial,,"Risk Management & Insurance, Finance",53703,37.4467,25.3289,none (just cheese),dog,No,early bird,Maybe,london boy by taylor swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Other (please provide details below).,Economics,Data Science Certificate,53711,40.7131,-74.0072,sausage,dog,Yes,no preference,No,https://www.youtube.com/watch?v=XjN8qEs_K7c&list=PLuVodMYS9xWblpzyNp9CwjERyndPTnCGV&index=6
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53706,44.9232,-93.4853,pepperoni,dog,No,night owl,Yes,Kodachrome- Paul Simon
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Data Science,,,53703,24.4539,54.3773,green pepper,neither,No,night owl,Yes,Kiss The Sky
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Engineering: Mechanical,n/a,n/a,53703,32.7157,-117.1611,pepperoni,dog,Yes,night owl,Maybe,Dancing With Myself by Billy Idol
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,17,Computer Science,,,53706,13.0827,80.2707,pepperoni,dog,No,night owl,No,Starships by Nicki Minaj
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,-,-,53715,44.1782,-88.4772,pepperoni,dog,Yes,night owl,Maybe,Just Wanna Rock - Lil Uzi Vert
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Other (please provide details below).,Economics,Marketing or Mathematics,53706,40,116,pineapple,dog,No,night owl,Maybe,Save Your Tears(Remix) --Ariana Grande& The Weekend
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Science: Biology/Life,,"It's not a secondary major, but I'm completing a certificate in Computer Science.",53562,55.9515,-3.1895,basil/spinach,dog,No,night owl,Yes,"Second Child, Restless Child by The Oh Hellos"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Data Science,,,53597,47.2144,14.7788,Other,cat,No,no preference,Yes,Black Summer - Red Hot Chili Peppers
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Engineering: Industrial,,,53706,24.9905,-77.3897,none (just cheese),dog,No,night owl,Yes,"East Side of Sorrow
Zach Bryan"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Economics,,53703,42.3601,-71.0589,pepperoni,dog,Yes,night owl,Yes,Life i a Highway - Rascal Flatts
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Data Science,Double majoring in Data Science and Consumer Behavior and Marketplace Studies,Consumer Behavior and Marketplace Studies,53703,35.1796,129.0756,sausage,cat,Yes,night owl,Yes,The Kid Laroi - Always do
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Statistics,,,53706,37.5519,127.0246,pepperoni,dog,Yes,early bird,Yes,"I have few.
Madvillain : Great Day
Radiohead: Let down
The Strokes: Hard to Explain"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,basil/spinach,dog,No,night owl,Yes,Zach Bryan - I remember everything
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Engineering: Industrial,,,53726,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,Bohemian Rhapsody by Queen
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53706,43,87,pineapple,dog,Yes,no preference,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,41.8781,-87.6298,basil/spinach,dog,Yes,early bird,Yes,"Blue World, Mac Miller "
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,Civil Engineering,,53715,44.513,88.013,pepperoni,dog,Yes,night owl,Yes,I Remember You- Skid Row
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53726,43.0389,-87.9065,pepperoni,cat,No,night owl,Yes,Supercut by Lorde
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,,,53703,51.5986,-0.0752,sausage,dog,Yes,early bird,Maybe,Today is a Good Day - Ice Cube
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Engineering: Industrial,,,53706,21.593,-158.1034,none (just cheese),dog,No,early bird,Yes,Doses & Mimosas by Cherub
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Mathematics/AMEP,,Data science,53719,-27.4954,-64.8601,basil/spinach,cat,No,early bird,No,Andromeda by Weyes Blood
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Business: Finance,N/A,N/A,53703,41.87,-87.6657,pepperoni,dog,No,no preference,Maybe,The world is yours- Nas
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53711,40.865,-73.4175,macaroni/pasta,dog,No,early bird,Maybe,Piano Man Billy Joel
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Science: Other,Psychology,,53706,22.5429,114.0596,none (just cheese),dog,Yes,no preference,Maybe,Ballad in G minor by Chopin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Mathematics/AMEP,,,53715,,40.7128,pineapple,cat,No,early bird,Maybe,a little bit yours by jp saxe
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Political Science,,53715,40.7094,-73.8049,pepperoni,dog,No,early bird,No,Deal by Jerry Garcia.
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,"I am a Mechanical Engineer interested in automotive engineering; car design, formula 1 etc.",,53706,45.677,-111.0429,sausage,dog,Yes,night owl,Maybe,"Oklahoma City, Zach Bryan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,,,53703,42.6507,18.0944,pineapple,dog,No,night owl,Maybe,Sick Love by The Red Hot Chili Peppers
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Biomedical,,,53706,12.9716,77.5946,basil/spinach,dog,No,night owl,Yes,Right Round - Flo Rida
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Business: Information Systems,,,53715,43.0389,-87.9065,pepperoni,dog,No,night owl,Maybe,Juice World - Wasted
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Economics,,53703,-8.4095,115.1889,Other,dog,No,night owl,No,Sinônimos
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Engineering: Biomedical,,,53703,27.5268,-82.7363,pineapple,dog,No,no preference,Yes,The Last Great American Dynasty by Taylor Swift
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53726,43,-88,pepperoni,dog,No,night owl,Yes,Wonderful World by Sam Cooke
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Psychology ,Data Science Certificate,53703,40.7831,-73.9713,none (just cheese),dog,Yes,early bird,Yes,Doo Wop - Ms. Lauryn Hill
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,n/a,n/a,53703,41.9,-87.63,pepperoni,dog,Yes,early bird,No,Crocs & Wock - Babytron
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Science: Biology/Life,,Psychology,53706,33.198,-96.615,sausage,cat,No,night owl,Maybe,Experience - Ludovico Einaudi
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Statistics,,data science,53706,43.0759,89.3991,mushroom,dog,No,no preference,No,"running up that hill
Kate Bush"
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,63105,38.6418,-90.3342,pepperoni,dog,No,night owl,Yes,Ain't No Mountain High Enough by Marvin Gaye and Tammi Terrell.
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,20,Engineering: Mechanical,,,53703,46.0216,-90.135,sausage,dog,No,night owl,Maybe,"Kickstart my heart, Motley Crue"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,22,Science: Chemistry,,,53129,10.7765,106.701,mushroom,cat,No,night owl,No,girls like me don't cry (remix) - thuy ft. MIN
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,25,Other (please provide details below).,Social Work,,53713,46.8537,-91.1071,tater tots,cat,No,no preference,Maybe,Mona Lisa by Dominic Fike
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Data Science,,,53715,48.1934,-0.6643,pepperoni,dog,No,early bird,No,Renegade by Big Red Machine (ft. Taylor Swift)
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Global Health,,53715,13.2263,72.4973,mushroom,dog,Yes,no preference,Yes,Around me - Metro Boomin
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Computer Science,,,53726,41.813,-87.629,pepperoni,dog,No,night owl,Yes,Self Control by Frank Ocean
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Other (please provide details below).,Sociology!,,53703,43.0139,-83.5983,pepperoni,dog,Yes,night owl,Yes,Thneedville by John Powell and Cinco Paul
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,43.1117,-88.5011,pepperoni,dog,No,night owl,Yes,Bucket List by Mitchell Tenpenny
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,,Science: Other,Genetics and genomics ,,53711,42.78,-89.3,pepperoni,dog,No,night owl,Yes,Sunroof- Nicky Youre
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Other (please provide details below).,ECONOMIC,,53703,43,-80,none (just cheese),cat,No,night owl,Maybe,WOLVES (Hauzer)
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Pharmacology & Toxicology,Neurobiology,53706,35.0116,135.768,mushroom,cat,Yes,night owl,Maybe,All In My Head by Whethan
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,,Engineering: Industrial,,,53715,21.3069,-157.8583,tater tots,neither,Yes,early bird,No,Brian's Movie: peach pit
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Information Systems,,Supply Chain Management,53703,44.978,-93.2707,sausage,dog,No,night owl,Yes,"Upside Down, Jack Johnson"
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Computer Science,N/A,"Economics, Data Science",53706,33.749,84.388,pineapple,dog,No,no preference,Yes,Ctrl + Del by MegaGoneFree
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Biomedical,,,53706,41.8781,-87.6298,sausage,dog,Yes,night owl,Maybe,Entropy by Daniel Caesar
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Engineering: Mechanical,,"electrical engineering
",53706,23.9314,120.5641,sausage,neither,Yes,early bird,Yes,"There is a light that never goes out, the Smiths"
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,Data Science,53715,45.4343,12.3388,pepperoni,cat,No,night owl,No,Teenagers by My Chemical Romance
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,57303,38.8339,-104.8214,pepperoni,dog,No,night owl,Yes,Run-Around by Blue Traveler
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Computer Science,,"Statistics, Data Science Certificate, Mathematics Certificate",53715,41.8781,-87.6298,Other,dog,Yes,early bird,Maybe,"FE!N
Travis Scott, Playboi Carti"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Engineering: Industrial,,,53706,47.6062,-122.3321,sausage,dog,No,no preference,Maybe,Sunday Bloody Sunday - U2
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,21,Science: Biology/Life,,,53715,46.7867,92.1005,basil/spinach,dog,Yes,night owl,No,"Santeria, Sublime"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Data Science,,Economics,53715,34.0522,-118.2437,sausage,neither,Yes,no preference,Maybe,My favorite one will be The tale of 2 Citiez by J Cole
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Engineering: Other,,International Engineering,53703,40.4168,-3.7038,pepperoni,dog,No,night owl,No,"El Dorado - Zach Bryan
Scenes from an Italian restaurant - Billy Joel
Wouldve could’ve should’ve - Taylor swift"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Mechanical,,,53715,48.1351,11.582,sausage,dog,No,no preference,Maybe,In Your Atmosphere (live) - John Mayer
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,42.3601,-71.0589,macaroni/pasta,cat,Yes,night owl,Yes,Colder weather- Zac brown band
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Data Science,no,Spanish,53706,45.4408,12.3155,pineapple,dog,No,early bird,No,August - Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,Communication Arts,Sports Communication Certificate,53703,44.2947,90.8515,pineapple,dog,No,night owl,No,Simulation Swarm - Big Thief
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Science: Physics,,Mathematics,53706,46.2044,6.1432,sausage,dog,Yes,early bird,Yes,The Color Violet - Tory Lanez
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,43.0731,-89.4012,none (just cheese),dog,Yes,no preference,Yes,Starboy - Weeknd
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Other,Chemical engineering,,53706,34.3416,108.9398,pepperoni,cat,No,night owl,Yes,You Belong With Me - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,18,Engineering: Mechanical,,,53706,43.0597,-88.0269,pineapple,dog,No,no preference,Yes,AA-Isaiah Rashad
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Mechanical,,,53715,41.8781,-87.6298,pepperoni,dog,No,no preference,Maybe,"Margaritaville, Jimmy Buffett"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Other (please provide details below).,Atmospheric and Oceanic science ,Does ROTC count?,53706,47.8864,106.9057,mushroom,dog,Yes,early bird,Yes,"I have a lot lol
Water no get enemy-Fela Kuti is probably my favorite
I also love 70s rock if you want to talk about bands from then, a little from the 80s "
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Data Science,,Personal Finance,53703,51.5074,-0.1278,sausage,dog,No,night owl,Yes,White Iverson - Post Malone
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53726,43,-89,pineapple,dog,No,early bird,No,Pretty much anything by Led Zeppelin
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Business: Information Systems,N/A,N/A,53713,37.7749,-122.4194,sausage,dog,No,night owl,Yes,GEEKALEEK by OHGEESY
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,,,53703,40.788,-74.3921,sausage,dog,No,early bird,No,"i know you hate me, midwxst"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Data Science,,Political science ,53715,40.7128,-74.006,basil/spinach,dog,Yes,early bird,No,Slide Away by Oasis
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Data Science,,,53706,41.9028,12.4964,pepperoni,dog,Yes,night owl,Yes,Headlines by Drake
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,43.7696,11.2558,macaroni/pasta,dog,No,no preference,Yes,I Remember Everything by Zach Bryan
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,computer science,53703,31,121,mushroom,dog,No,night owl,No,lemon tree
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Business: Finance,,,53703,43.4796,-110.7624,mushroom,dog,Yes,night owl,Yes,shout Pt. 1 and 2 - the isley brothers
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Mathematics/AMEP,,Data Science,53703,39.1031,-84.512,Other,dog,Yes,no preference,Maybe,
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Computer Science,,Data Science,53703,41.8781,-87.6298,pepperoni,dog,No,night owl,Maybe,Cupid by Fifty Fifty
COMP SCI 319:LEC002,LEC002,25,Business: Other,Business Analytics,None,53705,15.2993,74.124,tater tots,dog,No,early bird,No,Shake it off - By Taylor Swift
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,47.8112,13.055,macaroni/pasta,dog,Yes,night owl,Yes,Flashing Lights by Kanye West
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,22,Statistics,,,53703,37.535,126.99,mushroom,dog,Yes,no preference,Yes,Ghost of you by 5SOS
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Business: Other,,,53703,50.0755,14.4378,Other,dog,Yes,night owl,Yes,Dark Horse. Katy Perry
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Data Science,,,53703,40.6782,-73.9442,pepperoni,dog,Yes,night owl,No,Shiver - Coldplay
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Engineering: Industrial,,,53706,41.9028,12.4964,basil/spinach,dog,No,night owl,Yes,Can't Tell Me Nothing by Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Other (please provide details below).,Economics,,53703,41.8781,-87.6298,pepperoni,cat,No,early bird,No,Too many nights- Metro Boomin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Econ BS,Certificates in DS & Consulting,53703,41.8781,-87.6298,basil/spinach,dog,No,night owl,Maybe,Shiver-Coldplay
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,21,Engineering: Biomedical,,,53726,45.17,-93.87,pepperoni,dog,No,night owl,Yes,Eye of the Tiger by Survivor
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53715,-33.8688,151.2093,pepperoni,dog,No,night owl,Maybe,Read My Mind by the Killers
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Biomedical,,Computer science or data science,53706,40.7128,-74.006,basil/spinach,dog,No,early bird,Yes,any taylor swift
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53703,37.5665,126.978,sausage,cat,Yes,night owl,Yes,
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Economics,,53703,34.4208,-119.6982,pepperoni,dog,No,early bird,No,Chicken Fried-Zac Brown Band
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Science: Biology/Life,biochemistry,certificate of data science,53711,31.23,121.47,sausage,dog,No,night owl,No,"
Taylor Swift
Love Story"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Data Science,,Econ,53715,42.3601,-71.0589,sausage,dog,No,night owl,No,Let it Happen Tame Impala
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,21,Other (please provide details below).,Economics,Certificate in Data Science,53703,47.6062,122.3321,pepperoni,dog,No,no preference,Yes,Elton John- Funeral for a Friend/Love Lies Bleeding
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,21,Data Science,,,53715,43.215,-87.9955,Other,dog,Yes,night owl,Yes,
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Information Systems,,"Risk Management and Insurance, Legal Studies",53715,41.8781,-87.6298,mushroom,cat,No,night owl,Yes,"All too Well, Taylor Swift"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Mathematics/AMEP,I'm a double-major in Math and Computer Science. ,I'm a double-major in Math and Computer Science. ,53706,43.073,-89.401,pepperoni,dog,Yes,no preference,Yes,Listen to the Music: The Doobie Brothers
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Engineering: Mechanical,,,53707,43.0779,-89.3902,pepperoni,dog,No,early bird,No,"Revival, Zach bryan "
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Data Science,,Economics Major/ Data Science Minor,53703,41.2959,73.7933,none (just cheese),dog,Yes,night owl,Maybe,Sky Full of Stars- Coldplay
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Business: Information Systems,,Business: Finance,53715,39.7392,-104.9903,sausage,cat,No,night owl,Yes,Lose My Mind - Jai Wolf
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Finance,,Econ,53715,21.1619,-86.8515,pepperoni,cat,No,night owl,Maybe,Just the two of us - Washington Jr.
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,45.1865,-87.1239,pepperoni,dog,No,no preference,No,Hey Driver- Zach Bryan
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Computer Science,,,53706,36.2048,138.2529,pineapple,dog,Yes,night owl,Maybe,Pretender by OFFICIAL HIGE DANDISM
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,20,Business: Information Systems,,,53598,43.0731,-89.4012,pepperoni,dog,Yes,night owl,Yes,Holiday - Green Day
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,22,Engineering: Other,NA,NA,53703,41.8781,-87.6298,mushroom,cat,Yes,night owl,Maybe,Dancing Queen by ABBA
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53715,43.7696,11.2558,pepperoni,dog,No,early bird,Maybe,Last Nite-Strokes
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Engineering: Industrial,,,53706,35.6895,139.6917,pepperoni,neither,Yes,early bird,Maybe,"It will Rain - Bruno Mars
Blank Space - Taylor Swift
Right There - Ariana Grande
Stuck with U - Ariana Grande & Justin Bieber "
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Business: Finance,,,53706,37.9753,23.7361,none (just cheese),dog,No,night owl,Maybe,"Homecoming, Kanye West"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,Economics with certificate in data science ,,53715,45.4408,12.3155,Other,dog,No,early bird,No,Chris Stapleton White Horse
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53703,42.4173,27.6964,sausage,cat,No,no preference,Yes,S91 by Karol G
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Industrial,,,53703,38.288,-85.67,none (just cheese),dog,Yes,night owl,Yes,"Waiting on the world to change, John Mayer"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Information Systems,-,Considering another business major as well as a language certificate,53706,44.3289,-88.5391,pepperoni,dog,No,night owl,Maybe,Surf - Mac Miller
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Engineering: Mechanical,,,53706,43.4782,-110.7627,sausage,dog,Yes,no preference,Yes,Something in the Orange - Zach Bryan
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,17,Data Science,,,53706,55.9533,3.1883,sausage,dog,Yes,early bird,Yes,Build Me Up Buttercup by The Foundations
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,35.6528,139.8395,pepperoni,dog,No,night owl,Maybe,"For my hand, Burna Boy feat. Ed Sheeran "
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Other (please provide details below).,Economics,,53703,40.4406,-79.9959,sausage,dog,Yes,early bird,Maybe,Take Me Home Country Roads - John Denver
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,22,Science: Biology/Life,,"Data Science, Global Health ",53726,44.9765,-93.2652,pepperoni,dog,Yes,night owl,No,Where The Streets Have No Name - U2
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Other (please provide details below).,I intend to pursue a double major with Neurobiology and Data Science.,-,53706,25.1972,55.2744,mushroom,cat,No,no preference,Yes,Crazy by Aerosmith
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Business: Actuarial,,Data science,53706,40.7128,-74.006,basil/spinach,cat,No,early bird,No,Timeless by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Biology/Life,N/a,Certificate in Data Science,53715,43.0739,-89.3852,pineapple,dog,No,night owl,Yes,Hold on We're Going Home by Drake
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Industrial,,,53703,41.3894,2.1588,macaroni/pasta,dog,Yes,no preference,No,"Brazil- Declan Mckenna
British Bombs- Declan McKenna"
COMP SCI 319:LEC001,LEC001,26,Science: Other,,,53560,55.8931,-3.0666,pepperoni,dog,No,night owl,No,I'm Gonna Be (500 Miles) by the Proclaimers
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,GIS/Cartography,"Political Science, Data Science",35715,-88.99,45.1686,pepperoni,dog,Yes,early bird,Yes,With Arms Wide Open - Creed
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Other (please provide details below).,"My primary major is Economics.
",and my second major is Data Science.,53715,17.385,78.4867,mushroom,dog,No,no preference,Yes,"Say you won't let go- James Arthur
GASOLINA- Daddy Yankee"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,,53705,1.3521,103.8198,Other,cat,No,no preference,Yes,"Held Up in New York City - Mia Lailani, Devan Ibiza"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Business: Actuarial,,Risk management,53706,39.1333,117.1833,mushroom,cat,No,night owl,Yes,"One of my favorite songs is ""Maroon .45"" by ME3CH."
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Other (please provide details below).,economics,statistics,53706,39.9042,116.4074,mushroom,neither,Yes,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,22,Science: Biology/Life,,,53703,50.0755,14.4378,sausage,dog,Yes,early bird,No,Hundred by Khalid
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53706,37.5665,126.978,sausage,dog,No,early bird,Maybe,Don't look back in anger- Oasis
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Data Science,,Economics,53703,87.6298,41.8781,sausage,dog,No,early bird,Yes,"Franklins Tower, Dead and Company 7/14/2018"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pineapple,dog,Yes,night owl,Maybe,PRIDE. by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Data Science,,,53711,44.5133,-88.0158,sausage,dog,Yes,early bird,No,When the Levee Breaks - Led Zeppelin
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Computer Science,,,53703,43.771,11.2486,pepperoni,dog,Yes,early bird,Yes,Paranoid - Black Sabbath
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Business: Information Systems & Data Science Double Major,N/A,53706,44.5133,-88.0133,sausage,dog,No,early bird,Maybe,Another is Waiting - The Avett Brothers
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Business: Finance,,,53703,41.8781,87.6298,pepperoni,dog,No,night owl,Maybe,rich spirit by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,,Computer Science,,,53705,55.6761,12.5683,pepperoni,dog,No,night owl,Yes,Drunk in the morning - Lukas Graham
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Computer Science,,,53703,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Someday - The Strokes
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Science: Biology/Life,,,53706,32.22,-80.75,pepperoni,dog,Yes,no preference,Maybe,Homegrown by Zac Brown Band
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,41.8781,87.6298,Other,dog,Yes,early bird,Yes,Constellations - Jack Johnson
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,34.0549,118.2426,sausage,dog,Yes,night owl,Yes,"Come On Eileen
By Dexys Midnight Runners "
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,40.7128,74.006,pepperoni,cat,Yes,early bird,Yes,Free Bird - Lynyrd Skynyrd
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53703,40.416,-3.703,pepperoni,dog,Yes,no preference,Maybe,"come as you are, nirvana"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Clarity by Zedd
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics Major ,Data Science Certificate or Minor,53706,22.3964,114.1095,sausage,dog,Yes,night owl,Maybe,The Less I know The Better - Tame Impala
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Engineering: Mechanical,,,53715,44.9778,-93.265,pineapple,dog,Yes,early bird,No,Superposition Daniel Caesar
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Science: Chemistry,,,53706,41.3851,2.1734,basil/spinach,dog,Yes,early bird,No,Don't Stop Believing by Journey
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,59.9115,10.7579,pepperoni,dog,Yes,no preference,Maybe,Apologize - OneRepublic
COMP SCI 319:LEC001,LEC001,23,Science: Other,,,53726,43.0389,-87.9065,sausage,dog,No,early bird,Yes,Homesick - Noah Kahan
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Science: Biology/Life,,,53706,46.7867,92.1005,pineapple,cat,Yes,early bird,Yes,Birdhouse In Your Soul (They Might Be Giants)
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,44,-94,pineapple,dog,Yes,early bird,Maybe,Rick Astley- Never Gonna Give You Up
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Data Science,,,53705,65.6466,-21.643,macaroni/pasta,cat,Yes,no preference,No,Choose Life by Poorstacy
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Computer Science,,,53706,40.7128,-74.006,pineapple,cat,No,early bird,No,Love Story- Taylor Swift
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Mathematics/AMEP,,,53703,,,pepperoni,neither,No,night owl,Yes,"雪distance - Capper
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,17,Data Science,,,53706,51.7692,19.4018,basil/spinach,cat,Yes,night owl,Maybe,Eventually by Tame Impala
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,17,Data Science,,,53706,48.857,2.352,none (just cheese),dog,Yes,night owl,No,Clean by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,My primary major is economics and I will major in Business (Actuarial Science or Accounting).,"As a secondary major, I have an interest in Data Science.",53703,36,127.7,Other,dog,Yes,night owl,Yes,"Vancouver - BIG Naughty
"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,37.9598,-104.8202,mushroom,dog,Yes,night owl,Maybe,Hotel California by the Eagles
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,40.628,14.485,sausage,dog,No,night owl,Yes,No More by Jazzmeia Horn
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,43.4203,-88.1865,none (just cheese),dog,No,early bird,Yes,Style - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,21,Computer Science,,,53703,40.7128,-74.006,mushroom,cat,Yes,night owl,Maybe,"Welcome to New York, Taylor Swift"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,25.2048,55.2708,pineapple,cat,No,night owl,Yes,90210 - Travis Scott
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Science: Biology/Life,,,53706,39.6636,105.8792,basil/spinach,dog,Yes,early bird,No,We'll All Be Here Forever by Noah Kahan
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC001,18,Engineering: Mechanical,,,53706,44.5937,-93.4329,pepperoni,dog,No,no preference,Yes,One Beer - MF DOOM
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,"I'm a Dairy Science major, but am pursuing a Data Science certificate.",,53726,42.36,71.1,sausage,dog,No,night owl,Yes,Secrets by One Republic
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Business: Finance,,Information systems ,53706,3.139,101.6869,none (just cheese),cat,No,no preference,Yes,"Knocking on Heavens Door, Guns n roses"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53703,,,pepperoni,dog,No,early bird,Maybe,This Town's Been Too Good To Us by Dylan Scott
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Engineering: Other,,,53706,44.9608,-89.6302,none (just cheese),dog,Yes,night owl,No,Need a Favor - Jelly Roll
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,21,Engineering: Biomedical,,,53703,32.7765,-79.9311,pepperoni,cat,No,no preference,No,Revival - Zach Bryan
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53706,38.9072,-77.0369,sausage,dog,No,night owl,Yes,White Lies- Max Frost
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Other (please provide details below).,Education Studies,,53703,30.5728,104.0668,mushroom,cat,No,no preference,Maybe,Hindenburg lover-Anson Seabra
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,21,Statistics,,,53715,30,20,pineapple,cat,No,night owl,Yes,hello from adele
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53706,44.3009,-90.9505,none (just cheese),cat,Yes,early bird,No,"All along the watchtower, Jimi Hendrix"
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC005,18,Engineering: Industrial,,,53706,30.3539,97.7702,sausage,cat,Yes,early bird,Maybe,Pink + White by Frank Ocean
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,40.4855,-106.8336,pineapple,neither,No,night owl,Maybe,"Viva La Vida - Coldplay
"
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,"Economics, English",53706,60.3913,5.3221,sausage,dog,Yes,no preference,Yes,Before the Sun - Greg alan isakov
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53703,40.7128,-74.006,basil/spinach,cat,No,early bird,Yes,"Moonlight on The River, Mac Demarco"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Engineering: Biological Systems ,,53703,43.0731,-89.4012,pineapple,dog,Yes,early bird,No,Fast Car by Luke Combs
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,,53706,25.7617,-80.1918,pepperoni,dog,Yes,night owl,Yes,Favorite Song Toosii
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,32,Other (please provide details below).,Consumer Behavior and Marketplace Studies,"Digital Studies, Business Cert for non-business majors",53719,23.1136,-82.3666,Other,dog,No,no preference,Yes,Arctic Monkey’s - Do I wanna Know ( Dua Lipa Cover)
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC003,,Engineering: Industrial,,,53703,36.058,103.79,pineapple,cat,No,night owl,No,<<Love Story>>; Taylor Swift;
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,Spanish,53703,37.3891,-5.9845,basil/spinach,cat,Yes,early bird,No,Everybody wants to rule the world by Tears for fears
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53715,38.6973,-9.4218,pepperoni,dog,No,night owl,Yes,Go Your Own Way - Fleetwood Mac
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,n/a,n/a,53706,42.1491,-84.0202,sausage,dog,Yes,night owl,Yes,TNT by AC DC
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Biomedical,,,53703,35.6895,35.6895,mushroom,dog,No,night owl,Yes,Threat to Joy- Strokes
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,17,Data Science,,I am double majoring in data science and economics.,53706,41.7851,-88.2471,basil/spinach,dog,No,night owl,Yes,Back to December by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Science: Biology/Life,,,53706,44.98,93.27,sausage,cat,Yes,night owl,Yes,Fade Into You - Mazzy Star
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53590,47.9972,7.8538,pepperoni,dog,No,early bird,Maybe,Bohemian Rhapsody - Queen
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Engineering: Biomedical,,,53706,41.9,12.5,Other,neither,Yes,night owl,Maybe,Getaway car
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Engineering: Mechanical,,,53706,45.61,-94.21,basil/spinach,dog,Yes,no preference,No,Everybody Wants to Rule the World - Tears For Fears
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,,Engineering: Mechanical,,,53703,40.4168,3.7038,pepperoni,cat,No,early bird,No,One of then is Find Your Flame by SEGA
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,,53706,35.6895,139.6917,pepperoni,dog,Yes,night owl,Yes,Hotel California - Eagles
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Data Science,,Spanish,53706,46.7828,-92.1055,none (just cheese),dog,Yes,early bird,Yes,Stacy's Mom
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53703,40.7128,-74.006,mushroom,dog,Yes,early bird,No,All my love - Noah Kahan
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Engineering: Industrial,,,53706,32.8262,-117.2642,pineapple,dog,No,night owl,Maybe,"Down Low, Dombresky"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Undecided ,,53706,64.1472,-21.9424,pepperoni,dog,Yes,no preference,Maybe,i by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Economics w data science certificate,,53703,40.7306,-73.9352,pepperoni,dog,Yes,night owl,Yes,Schizo - Travis Scott & Young Thug
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Business: Other,Management & Human Resources,Data Science,53706,10.8231,106.6297,mushroom,dog,No,night owl,Maybe,Flowers - Miley Cyrus
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53534,43.0739,-89.3852,sausage,dog,No,no preference,Yes,All I wanna do-Jay Park
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,41.8781,-87.6298,Other,dog,Yes,no preference,Yes,surf - mac miller
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,23.7142,-166.205,pepperoni,dog,No,night owl,Maybe,Somthing in the Orange (Zack Bryan)
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,N/A,53706,40.5509,14.2429,pepperoni,cat,No,early bird,Yes,"Any Taylor Swift Song, one including Fearless"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Engineering: Mechanical,,,53562,19.0533,-104.3161,macaroni/pasta,dog,No,early bird,Yes,Escape (The Pina Colada Song) - Rupert Holmes
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pineapple,cat,Yes,night owl,Yes,Anything by Taylor Swift (must be Taylor's Version if the album is available)
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Industrial,,Data Science ,55424,21.1743,-86.8466,pineapple,dog,Yes,no preference,Maybe,Some nights - fun.
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Other (please provide details below).,I am a sociology major.,A few minors but no other majors at this point. ,53726,43,-88,green pepper,dog,Yes,night owl,Yes,Natural Mystic - Bob Marley
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Engineering: Industrial,,,53705,34.6819,112.4681,green pepper,neither,No,night owl,Yes,"Komm, süßer Tod (come on sweet death)"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53706,-22.9068,43.1729,Other,dog,Yes,night owl,Yes,Red Red Wine by UB40
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Engineering: Mechanical,,,53711,44.9932,-93.5635,sausage,dog,Yes,night owl,Yes,Chan Chan; Bueno Vista Social Club
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,economics,political science,53715,41.9,12.5,basil/spinach,cat,No,early bird,No,sundress Asap Rocky
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Computer Science,,Mathematics,53703,,,pineapple,cat,No,night owl,Maybe,"Blinding Lights, The Weeknd "
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Science: Biology/Life,,,53706,23.0033,120.2588,none (just cheese),dog,No,no preference,Yes,It's a Kind of Magic - Queen
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,20,Data Science,,,53706,34.4208,-119.6982,pineapple,dog,No,early bird,Yes,Cigarette Daydreams by Cage the Elephant
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,No,night owl,Yes,Can't Tell Me Nothing - Kanye West
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Other (please provide details below).,Political Science,data science,53706,39.2783,-74.5755,sausage,dog,No,night owl,Yes,Goodmorning by bleachers
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC001,19,Other (please provide details below).,A double major in Data Science and Economics,,53706,39.0742,21.8243,sausage,dog,No,no preference,Yes,New Romantics - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Engineering: Mechanical,,,53715,39.9527,-75.164,sausage,dog,Yes,early bird,Yes,Golden Hour- jVke
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,I am also planning to major in Business Management.,53706,35.6528,139.8395,pepperoni,dog,No,night owl,Maybe,"I do not really have a specific favorite song, but my all-time favorite genres are rocks with bands like Queens, The White Stripes, Linkin Park,...But mostly I listen to unlyrical songs like phonk and lofi depending on the mood. "
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,21,Science: Physics,,,53726,43.0731,-89.4012,green pepper,cat,No,night owl,No,Gymnopedie No. 1 - Eric Satie
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.6003,-105.9831,sausage,dog,No,night owl,Yes,Istanbul (Not Constantinople)
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Industrial,,,53715,19.7193,-156.0013,pepperoni,dog,No,night owl,Yes,Cuccurucucù by Franco Battiato
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Other (please provide details below).,Economics,Possibly mathematics,53706,42.3601,-71.0589,macaroni/pasta,dog,No,night owl,Yes,Castle on the Hill by Ed Sheeran
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Other (please provide details below).,Information Science ,Political Science,53715,41.8781,-87.6298,pepperoni,cat,Yes,early bird,No,Both - Tiesto & BIA
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Communication,,53715,45.0557,-92.8101,basil/spinach,dog,No,no preference,Maybe,"Meet me in the morning, Bob Dylan"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53706,35.6067,-220.2139,pepperoni,cat,No,night owl,Yes,24k magic- Bruno Mars
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,,53703,-36.8485,174.7633,pepperoni,cat,No,night owl,Yes,Eastside Banny Blanco
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Business: Actuarial,,,53703,-33.8688,151.2093,pepperoni,dog,Yes,night owl,Yes,I Remember Everything by Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC005,18,Data Science,,,53703,40.7128,74.006,none (just cheese),dog,No,night owl,Yes,Revival by Zach Bryan
COMP SCI 319:LEC002,LEC002,30,Science: Other,Geoscience,,53703,-63.9755,-57.9712,basil/spinach,dog,Yes,early bird,Yes,Un Dia - Juana Molina
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Engineering: Mechanical,na,na,53704,,,sausage,cat,No,early bird,Maybe,
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pepperoni,cat,No,night owl,Yes,No Plan By Hozier
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,23,Computer Science,,,53705,30.2741,120.1551,macaroni/pasta,neither,Yes,no preference,No,soaring-TomLeevis
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53726,18.15,-65.8,sausage,dog,Yes,night owl,Maybe,Its all coming back to me now by Celine Dion
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Biology/Life,,,53715,39.9042,116.4074,sausage,cat,No,night owl,Maybe,"[米津玄師 - アンビリーバーズ , Kenshi Yonezu - Unbelivers] (https://www.youtube.com/watch?v=naJcqMBbAn4)"
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Statistics,,mathematics ,53706,35.86,104.2,sausage,cat,No,no preference,Maybe,Lemon Tree by Fools Garden
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,Mathematics,53706,41.8781,-87.6298,pepperoni,cat,No,no preference,Yes,Kon Queso by MF DOOM
COMP SCI 319:LEC001,LEC001,22,Computer Science,,,53703,45.576,13.8475,pepperoni,dog,No,early bird,No,i dont know
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,35.6895,139.6917,pepperoni,dog,Yes,early bird,Yes,Levels - Sidhu Moosewala
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53703,29.6548,91.1405,green pepper,cat,Yes,early bird,No,Perfect by Ed Sheeran
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics,,53715,64.1472,-21.9424,Other,cat,No,no preference,Maybe,
%% Cell type:code id: tags:
``` python
import csv
import json # today's topic!
```
%% Cell type:code id: tags:
``` python
# Warmup 0: Recall how to read in the csv data and the cell function.
# source: Automate the Boring Stuff with Python
def process_csv(filename):
exampleFile = open(filename, encoding="utf-8")
exampleReader = csv.reader(exampleFile)
exampleData = list(exampleReader)
exampleFile.close()
return exampleData
survey_data = process_csv('cs220_survey_data.csv')
survey_header = survey_data[0]
survey_rows = survey_data[1:]
def cell(row_idx, col_name):
col_idx = survey_header.index(col_name)
val = survey_rows[row_idx][col_idx]
if val == "":
return None
elif col_name in ["Age", "Zip Code"]:
return int(val)
elif col_name in ["Latitude", "Longitude"]:
return float(val)
else:
return val
```
%% Cell type:code id: tags:
``` python
# Warmup 1: Put survey_data into buckets by lecture
# Make a dictionary of lists
# Key is the lecture
# Value is the list of students, where each student is a dictionary
lecture_dict = {}
for i in range(len(survey_rows)):
current_student = survey_rows[i]
current_lecture = cell(i, 'Lecture')
if current_lecture not in lecture_dict:
lecture_dict[current_lecture] = []
current_student = {}
for header_value in survey_header:
current_student[header_value] = cell(i, header_value)
lecture_dict[current_lecture].append(current_student)
# lecture_dict
```
%% Cell type:code id: tags:
``` python
# Warmup 2: Find the average, min, and max age for our lecture (LEC005)
people_age = []
for person in lecture_dict["LEC005"]:
current_age = person['Age']
if current_age != None:
current_age = int(current_age)
people_age.append(current_age)
print(min(people_age))
print(max(people_age))
print(sum(people_age) / len(people_age))
```
%% Output
17
39
19.13235294117647
%% Cell type:code id: tags:
``` python
# Warmup 3: Make a dictionary of each lecture's average age
# The key is the lecture name
# The value is the average age
lec_age_dict = {}
for lec in lecture_dict:
current_lec_ages = []
for person in lecture_dict[lec]:
current_age = person['Age']
if current_age != None:
current_age = int(current_age)
current_lec_ages.append(current_age)
lec_age_dict[lec] = sum(current_lec_ages) / len(current_lec_ages)
lec_age_dict
```
%% Output
{'LEC003': 19.320197044334975,
'LEC004': 19.50785340314136,
'LEC005': 19.13235294117647,
'LEC001': 19.508130081300813,
'LEC002': 19.47107438016529}
%% Cell type:code id: tags:
``` python
# Warmup 4: Same thing as before except...
# The key is the lecture name
# The value is a dictionary (nested dictionary!)
# ... with keys 'avg', 'min', and 'max'
lec_age_dict = {}
for lec in lecture_dict:
current_lec_ages = []
for person in lecture_dict[lec]:
current_age = person['Age']
if current_age != None:
current_age = int(current_age)
current_lec_ages.append(current_age)
lec_age_dict[lec] = {}
lec_age_dict[lec]['avg'] = sum(current_lec_ages) / len(current_lec_ages)
lec_age_dict[lec]['min'] = min(current_lec_ages)
lec_age_dict[lec]['max'] = max(current_lec_ages)
lec_age_dict
```
%% Output
{'LEC003': {'avg': 19.320197044334975, 'min': 17, 'max': 27},
'LEC004': {'avg': 19.50785340314136, 'min': 17, 'max': 40},
'LEC005': {'avg': 19.13235294117647, 'min': 17, 'max': 39},
'LEC001': {'avg': 19.508130081300813, 'min': 17, 'max': 32},
'LEC002': {'avg': 19.47107438016529, 'min': 17, 'max': 30}}
%% Cell type:markdown id: tags:
# CS220: Lecture 19
## Learning Objectives
After this lecture you will be able to...
- Interpret JSON formatted data and recognize differences between JSON and Python
- Deserialize data from JSON for use in Python programs (read)
- Serialize data into JSON for long term storage (write)
%% Cell type:code id: tags:
``` python
# We will be looking at lecture slides to understand JSON
```
%% Cell type:code id: tags:
``` python
# Deserialize
def read_json(path):
with open(path, encoding="utf-8") as f: # f is a variable
return json.load(f) # f represents a reference the JSON file
# Serialize
def write_json(path, data):
with open(path, 'w', encoding="utf-8") as f:
json.dump(data, f, indent=2)
```
%% Cell type:code id: tags:
``` python
# first, let's take a look at the file score_history.json
```
%% Cell type:code id: tags:
``` python
# now let's read it in and investigate the data
scores_dict = read_json('score_history.json')
print(type(scores_dict))
print(scores_dict.keys())
print(scores_dict['bob'])
print(scores_dict)
scores_dict['cole'] = [50.0, 20.0]
print(scores_dict)
```
%% Output
<class 'dict'>
dict_keys(['bob', 'alice', 'meena'])
[20.0, 10.0]
{'bob': [20.0, 10.0], 'alice': [30.0, 20.0], 'meena': [100.0, 10.0]}
{'bob': [20.0, 10.0], 'alice': [30.0, 20.0], 'meena': [100.0, 10.0], 'cole': [50.0, 20.0]}
%% Cell type:code id: tags:
``` python
# Let's practice writing to a JSON file
# when I'm testing code, I like to name my output file differently from my input file
# so that I don't accidentally erase or overwrite my data
write_json('score_history2.json', scores_dict)
```
%% Cell type:markdown id: tags:
### We can make JSON files in many varied ways
### This makes a list of dictionaries
%% Cell type:code id: tags:
``` python
# Code from last lecture,
# reads in the survey data into a list of dicts
table_dict_list = []
for i in range(len(survey_rows)):
row = survey_rows[i]
row_dict = {}
for item in survey_header: # iterate through each column name
row_dict[item] = row[survey_header.index(item)] # find the value in the row using .index
# add row_dict to table_dict_list
table_dict_list.append(row_dict)
# table_dict_list # what is this? A list of dictionaries
```
%% Cell type:code id: tags:
``` python
# Let's write this list of dictionaries into a JSON file
write_json('cs220_as_json_list.json', table_dict_list)
```
%% Cell type:code id: tags:
``` python
# Verify: can you find this file in your directory?
```
%% Cell type:code id: tags:
``` python
# let's write our original dictionary of lists - buckets into a JSON file
write_json('cs220_as_json_dict.json', lecture_dict)
```
%% Cell type:code id: tags:
``` python
# Verify: can you find this file in your directory?
```
%% Cell type:markdown id: tags:
### Many Web Sites have APIs that allow you to get their data
%% Cell type:markdown id: tags:
#### cs571.org
%% Cell type:code id: tags:
``` python
# Read cs571.json data
cs571_data = read_json('cs571.json')
# cs571_data
```
%% Cell type:code id: tags:
``` python
# What are each of the messages?
cs571_messages = cs571_data['messages']
for msg in cs571_messages:
print(msg['content'])
```
%% Output
hello!
hello!
test
vroom
test
Test
Even MORE generic content
More generic posting content
I need this to be generic content
tttt
i <3 react
so I went running for answers
The evils of lucy was all around me
I didn't want to self destruct
found myself screaming in a hotel room
resentment that turned into a great depressions
abusing my power full of resentment
sometimes I did the same
I remember you was conflicted misusing your influence
r
Hello
hello
You got this!
test again
test
%% Cell type:code id: tags:
``` python
# What are the unique posters?
posters = []
for msg in cs571_messages:
posters.append(msg['poster'])
posters = list(set(posters))
posters
```
%% Output
['k.dot',
'krirk1',
'robert',
'testaccmc1234',
'chase',
'car',
'w',
'newAnkit',
'b',
'q',
'g',
'testtesttest1',
'user']
%% Cell type:markdown id: tags:
#### Kiva.com Micro-lending site
%% Cell type:code id: tags:
``` python
# Take a look at kiva.json
# read it into a dictionary
kiva_dict = read_json('kiva.json')
# kiva_dict
```
%% Cell type:code id: tags:
``` python
# Plumbing the data
loan_list = kiva_dict['data']['lend']['loans']['values'] # this gives us a list of dicts
loan_list
```
%% Output
[{'name': 'Polikseni',
'description': "Polikseni is 70 years old and married. She and her husband are both retired and their main income is a retirement pension of $106 a month for Polikseni and disability income for her husband of $289 a month. <br /><br />Polikseni's husband, even though disabled, works in a very small shop as a watchmaker on short hours, just to provide additional income for his family and to feel useful. Polikseni's husband needs constant medical treatment due to his health problems. She requested another loan, which she will use to continue paying for the therapy her husband needs. With a part of the loan, she is going to pay the remainder of the previous loan.",
'loanAmount': '1325.00',
'geocode': {'city': 'Korce',
'country': {'name': 'Albania',
'region': 'Eastern Europe',
'fundsLentInCountry': 9051250}}},
{'name': 'Safarmo',
'description': "Safarmo is 47 years old. She lives with her husband and her children in Khuroson district. <br /><br />Safarmo is a seamstress. She has been engaged in sewing for 10 years. She learned this activity with help of her mother and elder sister. <br /><br />Safarmo's sewing machine is old and she cannot work well. Her difficulty is lack of money. That’s why she applied for a loan to buy a new modern sewing machine. <br /><br />Safarmo needs your support.",
'loanAmount': '1075.00',
'geocode': {'city': 'Khuroson',
'country': {'name': 'Tajikistan',
'region': 'Asia',
'fundsLentInCountry': 64243075}}},
{'name': 'Elizabeth',
'description': 'Elizabeth is a mom blessed with five lovely children, who are her greatest motivation in life. She lives in the Natuu area of Kenya. Elizabeth is one of the most hardworking women in sub-Saharan Africa. Being a mother and living in a poor country has never been an excuse for Elizabeth, who has practiced mixed farming for the past few years.<br /><br />The cultural expectations in her area contribute to the notion that men should support their families. However, Elizabeth works independently for the success of her children. She perseveres because she wants to provide a better future for them.<br /><br />Elizabeth has always loved farming. She is a very proud farmer and enjoys milking her dairy cows. Elizabeth keeps poultry and grows crops, but she has not been making a good profit because of poor farming inputs. <br /><br />Elizabeth will use this loan to buy farm inputs and purchase high-quality seeds and good fertilizer to improve her crop production. Modern farming requires the use of modern techniques, and, therefore, using high-quality seeds will assure her of a bumper harvest and increased profit levels.<br /><br />Elizabeth is very visionary. Her goal for the season is to boost her crop production over the previous year.',
'loanAmount': '800.00',
'geocode': {'city': 'Matuu',
'country': {'name': 'Kenya',
'region': 'Africa',
'fundsLentInCountry': 120841775}}},
{'name': 'Ester',
'description': 'Ester believes that this year is her year of prosperity. Ester is a hardworking, progressive and honest farmer from a very remote village in the Kitale area of Kenya. This area is very fertile, with favorable weather patterns that support farming activities. Ester is happily married and the proud mother of lovely children. Together, they live on a small piece of land that she really treasures. Her primary sources of income are eggs and milk.<br /><br />Although this humble and industrious mother makes a profit, she faces the challenge of not being able to produce enough to meet the readily available market. Therefore, she is seeking funds from Kiva lenders to buy farm inputs such as good fertilizer and good-quality seeds. Through this loan, Ester should double her production, and this will translate into increased income. She then intends to save more money in the future so that she can develop her farming.<br /><br />One objective that Juhudi Kilimo aims at fulfilling is increasing the ease of accessing farm inputs and income-generating assets for farmers. Through the intervention of Juhudi Kilimo and Kiva, inputs such as fertilizers and pesticides have become more accessible to its members than buying a bottle of water. Ester is very optimistic and believes this loan will change her life completely.',
'loanAmount': '275.00',
'geocode': {'city': 'Kitale',
'country': {'name': 'Kenya',
'region': 'Africa',
'fundsLentInCountry': 120841775}}},
{'name': 'Cherifa',
'description': 'Cherifa is married, 57 years old with two children. She caters and also sells the local drink. She asks for credit to buy the necessities, in particular bags of anchovies, bags of maize and bundles of firewood. She wants to have enough income to run the house well.',
'loanAmount': '875.00',
'geocode': {'city': 'Agoe',
'country': {'name': 'Togo',
'region': 'Africa',
'fundsLentInCountry': 13719125}}}]
%% Cell type:code id: tags:
``` python
# what can we learn from this data?
for loan_dict in loan_list:
print(type(loan_dict))
for key in loan_dict:
print(key)
```
%% Output
<class 'dict'>
name
description
loanAmount
geocode
<class 'dict'>
name
description
loanAmount
geocode
<class 'dict'>
name
description
loanAmount
geocode
<class 'dict'>
name
description
loanAmount
geocode
<class 'dict'>
name
description
loanAmount
geocode
%% Cell type:code id: tags:
``` python
# print out all the names
for loan_dict in loan_list:
print(loan_dict['name'])
```
%% Output
Polikseni
Safarmo
Elizabeth
Ester
Cherifa
%% Cell type:code id: tags:
``` python
# print out the total amount to loan
tot_loan_amount = 0.0
for loan_dict in loan_list:
tot_loan_amount += float(loan_dict['loanAmount'])
tot_loan_amount
```
%% Output
4350.0
%% Cell type:code id: tags:
``` python
loan_amounts = []
for loan_dict in loan_list:
loan_amounts.append(float(loan_dict['loanAmount']))
print(min(loan_amounts))
print(max(loan_amounts))
print(sum(loan_amounts) / len(loan_amounts))
```
%% Output
275.0
1325.0
870.0
%% Cell type:code id: tags:
``` python
# print out all the country names
for loan_dict in loan_list:
print(loan_dict['geocode']['country']['name'])
```
%% Output
Albania
Tajikistan
Kenya
Kenya
Togo
%% Cell type:code id: tags:
``` python
# more complex APIs...
# https://static01.nyt.com/elections-assets/2020/data/api/2020-11-03/state-page/wisconsin.json
```
%% Cell type:markdown id: tags:
## After Lecture: Worksheet
%% Cell type:code id: tags:
``` python
```
%% Cell type:code id: tags:
``` python
import csv
import json # today's topic!
```
%% Cell type:code id: tags:
``` python
# Warmup 0: Recall how to read in the csv data and the cell function.
# source: Automate the Boring Stuff with Python
def process_csv(filename):
exampleFile = open(filename, encoding="utf-8")
exampleReader = csv.reader(exampleFile)
exampleData = list(exampleReader)
exampleFile.close()
return exampleData
survey_data = process_csv('cs220_survey_data.csv')
survey_header = survey_data[0]
survey_rows = survey_data[1:]
def cell(row_idx, col_name):
col_idx = survey_header.index(col_name)
val = survey_rows[row_idx][col_idx]
if val == "":
return None
elif col_name in ["Age", "Zip Code"]:
return int(val)
elif col_name in ["Latitude", "Longitude"]:
return float(val)
else:
return val
```
%% Cell type:code id: tags:
``` python
# Warmup 1: Put survey_data into buckets by lecture
# Make a dictionary of lists
# Key is the lecture
# Value is the list of students, where each student is a dictionary
lecture_dict = {}
for i in range(len(survey_rows)):
current_student = survey_rows[i]
current_lecture = cell(i, 'Lecture')
???
lecture_dict
```
%% Cell type:code id: tags:
``` python
# Warmup 2: Find the average, min, and max age for our lecture (LEC005)
people_age = []
for person in lecture_dict["LEC005"]:
???
```
%% Cell type:code id: tags:
``` python
# Warmup 3: Make a dictionary of each lecture's average age
# The key is the lecture name
# The value is the average age
lec_age_dict = {}
for lec in lecture_dict:
???
```
%% Cell type:code id: tags:
``` python
# Warmup 4: Same thing as before except...
# The key is the lecture name
# The value is a dictionary (nested dictionary!)
# ... with keys 'avg', 'min', and 'max'
lec_age_dict = {}
for lec in lecture_dict:
???
```
%% Cell type:markdown id: tags:
# CS220: Lecture 19
## Learning Objectives
After this lecture you will be able to...
- Interpret JSON formatted data and recognize differences between JSON and Python
- Deserialize data from JSON for use in Python programs (read)
- Serialize data into JSON for long term storage (write)
%% Cell type:code id: tags:
``` python
# We will be looking at lecture slides to understand JSON
```
%% Cell type:code id: tags:
``` python
# Deserialize
def read_json(path):
with open(path, encoding="utf-8") as f: # f is a variable
return json.load(f) # f represents a reference the JSON file
# Serialize
def write_json(path, data):
with open(path, 'w', encoding="utf-8") as f:
json.dump(data, f, indent=2)
```
%% Cell type:code id: tags:
``` python
# first, let's take a look at the file score_history.json
```
%% Cell type:code id: tags:
``` python
# now let's read it in and investigate the data
scores_dict = read_json('score_history.json')
# print(type(scores_dict))
# print(scores_dict.keys())
# print(scores_dict['bob'])
# print(scores_dict)
# scores_dict['cole'] = [50.0, 20.0]
print(scores_dict)
```
%% Cell type:code id: tags:
``` python
# Let's practice writing to a JSON file
# when I'm testing code, I like to name my output file differently from my input file
# so that I don't accidentally erase or overwrite my data
write_json('score_history2.json', scores_dict)
```
%% Cell type:markdown id: tags:
### We can make JSON files in many varied ways
### This makes a list of dictionaries
%% Cell type:code id: tags:
``` python
# Code from last lecture,
# reads in the survey data into a list of dicts
table_dict_list = []
for i in range(len(survey_rows)):
row = survey_rows[i]
row_dict = {}
for item in survey_header: # iterate through each column name
row_dict[item] = row[survey_header.index(item)] # find the value in the row using .index
# add row_dict to table_dict_list
???
table_dict_list # what is this?
```
%% Cell type:code id: tags:
``` python
# Let's write this list of dictionaries into a JSON file
write_json('cs220_as_json_list.json', table_dict_list)
```
%% Cell type:code id: tags:
``` python
# Verify: can you find this file in your directory?
```
%% Cell type:code id: tags:
``` python
# let's write our original dictionary of lists - buckets into a JSON file
write_json('cs220_as_json_dict.json', lecture_dict)
```
%% Cell type:code id: tags:
``` python
# Verify: can you find this file in your directory?
```
%% Cell type:markdown id: tags:
### Many Web Sites have APIs that allow you to get their data
%% Cell type:markdown id: tags:
#### cs571.org
%% Cell type:code id: tags:
``` python
# Read cs571.json data
cs571_data = ...
cs571_data
```
%% Cell type:code id: tags:
``` python
# What are each of the messages?
```
%% Cell type:code id: tags:
``` python
# What are the unique posters?
```
%% Cell type:markdown id: tags:
#### Kiva.com Micro-lending site
%% Cell type:code id: tags:
``` python
# Take a look at kiva.json
# read it into a dictionary
kiva_dict = read_json('kiva.json')
kiva_dict
```
%% Cell type:code id: tags:
``` python
# Plumbing the data
loan_list = ??? # this gives us a list of dicts
loan_list
```
%% Cell type:code id: tags:
``` python
# what can we learn from this data?
for loan_dict in loan_list:
print(type(loan_dict))
for key in loan_dict:
print(key)
```
%% Cell type:code id: tags:
``` python
# print out all the names
for loan_dict in loan_list:
???
```
%% Cell type:code id: tags:
``` python
# print out the total amount to loan
for loan_dict in loan_list:
???
```
%% Cell type:code id: tags:
``` python
# print out the min, max, and avg loan amounts
loan_amounts = []
for loan_dict in loan_list:
???
```
%% Cell type:code id: tags:
``` python
# print out all the country names
for loan_dict in loan_list:
???
```
%% Cell type:code id: tags:
``` python
# more complex APIs...
# https://static01.nyt.com/elections-assets/2020/data/api/2020-11-03/state-page/wisconsin.json
```
%% Cell type:markdown id: tags:
## After Lecture: Worksheet
%% Cell type:code id: tags:
``` python
```
section,Lecture,Age,Primary major,Other Primary Major,Other majors,Zip Code,Latitude,Longitude,Pizza topping,Cats or dogs,Runner,Sleep habit,Procrastinator,Song
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Other (please provide details below).,Atmospheric and Oceanic Science,,53703,44.256,-88.409,basil/spinach,cat,No,early bird,Yes,Kanye
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53711,51.5072,-0.1257,Other,dog,No,night owl,Yes,Eyes Closed by Ed Sheeran
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Computer Science,,,53703,37.7749,-122.4194,pineapple,dog,Yes,night owl,Yes,Eight - IU
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Engineering: Other,Engineering Undecided,,53706,44.9241,-93.3474,pineapple,dog,Yes,no preference,No,"Feathered Indians, Tyler Childers"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,,Data Science,,,53715,40.7128,-74.006,sausage,dog,Yes,early bird,Yes,Post malone -overdrive
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,No secondary majors ,53715,51.5072,0.1276,pepperoni,dog,Yes,night owl,Yes,No Role Modelz - J. Cole
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,17,Mathematics/AMEP,,Computer Science,53706,19.076,72.8777,pepperoni,dog,Yes,early bird,Maybe,Do Not Disturb - Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,,Engineering: Mechanical,,,53706,37.5683,157.3409,none (just cheese),cat,Yes,night owl,Yes,
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics ,,53706,44.5133,88.0133,sausage,cat,No,night owl,Yes,"Pyro
Kings of Leon"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Other (please provide details below).,Global Health,,53706,40.7128,-74.006,none (just cheese),dog,Yes,no preference,Maybe,everywhere by fleetwood mac
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Information Systems,,,54601,25.7617,-80.1918,mushroom,cat,No,night owl,Yes,bando playboy carti
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53703,43.0658,-87.9671,none (just cheese),dog,No,early bird,Yes,Today was a good day by Ice Cube
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Statistics,,data science,53703,43.0766,-89.3972,pineapple,dog,Yes,night owl,Yes,Nikes on my feet - Mac Miller
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,,,53558,45.0854,93.0081,pepperoni,dog,Yes,no preference,Yes,Last Night - Morgan Waller
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Business: Finance,,,53706,28.3852,-81.5639,pepperoni,dog,Yes,night owl,Yes,Paradise -- Coldplay
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Science: Biology/Life,,Data Science,53706,32.0809,-81.0912,sausage,cat,Yes,no preference,Yes,Cupid de Locke - the Smashing Pumpkins
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Data Science,,,53716,77.82,86.48,pepperoni,dog,No,early bird,Yes,"Violent crimes
Kanye west"
COMP SCI 319:LEC002,LEC002,28,Engineering: Other,,,53703,24.8801,102.8329,pepperoni,neither,Yes,night owl,Yes,No,I hardly listen to music.
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Other (please provide details below).,Atmospheric and Oceanic Sciences ,Journalism ,53706,48.8566,2.3522,Other,dog,No,night owl,Maybe,"Dancing Queen
By Abba "
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Business: Finance,N/A,N/A,53703,25.7,-80.2,pepperoni,dog,No,no preference,Yes,All Me by Drake
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,,Computer Science,,,53704,0,0,sausage,cat,No,night owl,Maybe,WYS - Snowman
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Science: Other,,,53703,43.0833,-89.3725,basil/spinach,dog,Yes,early bird,Yes,Fly Love by Jamie Foxx
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,,Engineering: Mechanical,,,53706,33.3062,111.8413,mushroom,cat,No,night owl,Yes,Nerves by DPR Ian
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,,Computer Science,,,53726,35.6528,139.8395,mushroom,dog,No,night owl,No,Us by milet
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,"Comp sci, certificate in economic analytics",53715,39.7392,-104.9903,pineapple,dog,Yes,night owl,Yes,Everlong - Foo Fighters
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,BS Art,,53593,37.5665,126.978,pepperoni,cat,No,night owl,Yes,Mariah Carey - All I Want for Christmas Is You
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,43.07,-89.4,pineapple,dog,No,night owl,Yes,Vienna by Billy Joel
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Other,,,53175,42.8646,-88.3332,pepperoni,dog,Yes,night owl,Yes,Temperature by Sean Paul
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Computer Science,,Mathematics,53706,47.6081,-122.0117,pepperoni,cat,No,night owl,Yes,"Fly High!!, Burnout Syndrome "
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Engineering: Mechanical,,,53703,34,5,sausage,dog,No,night owl,Yes,say so - doja cat
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,21,Business: Information Systems,,,53715,47,86,pepperoni,dog,Yes,no preference,Yes,7 Years - Lukas Graham
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,,Business: Information Systems,information science,,53715,29.4393,106.4556,sausage,dog,Yes,early bird,No,love story
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,20,Business: Other,,Sociology,53703,43.07,-89.4,sausage,neither,Yes,night owl,Maybe,Cudi Zone- Kid Cudi
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Data Science,,,53706,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Peppas - Farruko
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,38258,46.3131,-91.4905,sausage,dog,Yes,night owl,Yes,No Remorse Metalica
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Data Science,,,53703,3.2028,73.2207,pepperoni,dog,Yes,night owl,Yes,"Rich Men North of Richmond
Oliver Anthony"
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,21,Engineering: Mechanical,,,53715,44.9778,-93.265,pepperoni,dog,Yes,no preference,Yes,"Never Gonna Give You Up -Rick Astley
"
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,1134,40.4111,-105.6413,pepperoni,dog,No,night owl,Yes,Out of Touch by Daryl Hall and John Oats
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Computer Science,,Public Health and Policy,53706,37.5,126.9,basil/spinach,cat,No,night owl,No,No One Else Like You(Adam Levine)
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Data Science,,,53703,41.9028,12.4964,pepperoni,dog,No,night owl,Yes,Pursuit of Happiness by Kid Cudi
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,,Engineering: Mechanical,,,53703,12.957,77.401,macaroni/pasta,dog,Yes,night owl,Yes,Out of Touch by Hall and Oates
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,44.5133,-88.0133,pepperoni,dog,No,night owl,Yes,Where the Boat Leaves From By Zac Brown Band
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Other,bme,,53715,42.3601,71.0589,pepperoni,dog,No,no preference,Maybe,noah kahan - mess
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Engineering: Mechanical,,,53703,39.0476,-77.132,pepperoni,dog,Yes,night owl,Yes,
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Other (please provide details below).,"Econ with math emphasis (photography certificate)
",,53703,-41.2865,174.7762,pineapple,neither,Yes,no preference,Maybe,None.
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pepperoni,dog,No,night owl,No,
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,40.7128,-74.006,pepperoni,dog,No,night owl,Maybe,Sultans of Swing - Dire Straits
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,45.3733,84.9553,macaroni/pasta,dog,Yes,night owl,Yes,kimdracula - deftones
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,21,Other (please provide details below).,My primary major is Economics.,I'm planning to get data science certificate.,53715,37.5665,126.978,sausage,dog,Yes,night owl,Maybe,Dandelions - Ruth B.
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,40.7,-74,pepperoni,dog,No,no preference,Maybe,I don't really have a favorite song.
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,Consumer behavior and marketplace studies.,,53715,44.9778,-93.265,pineapple,cat,Yes,early bird,Maybe,Love Story - Taylor Swift
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,,Data Science,,,53706,41.8781,87.6298,pepperoni,cat,No,night owl,Yes,Bright Size Life by Pat Metheny
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Data Science,,I am considering majoring in Genetics as well,53706,45.6378,-89.4113,Other,dog,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,,53726,43.0731,-89.4012,sausage,dog,Yes,early bird,Yes,Young Girls - Bruno Mars
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,,Engineering: Mechanical,,,53711,,,pepperoni,cat,Yes,no preference,Maybe,"""Wont Back Down""
-Tom Petty"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,Genetics,Data science,53706,42.0262,-88.0697,pineapple,dog,No,night owl,Yes,Merrry-Go-Round of life by joe Hisaishi
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,53715,37.5665,126.978,basil/spinach,dog,No,no preference,No,"""a lot"" by 21 savage"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53705,31.2244,121.4692,pepperoni,cat,No,night owl,Yes,ハゼ馳せる果てるまで by ずっと真夜中でいいのに
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Biomedical,,i’m considering a double major in economics or political science ,53703,48.8566,2.3522,basil/spinach,cat,No,no preference,Yes,alien superstar by beyoncé
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,23,Mathematics/AMEP,N/A,Certificate in Data Science,53703,19.4326,-99.1332,pepperoni,dog,Yes,early bird,Maybe,Runaway by Kanye West (Fyi: it’s a 10 min song)
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Data Science,,,53706,47.6062,-122.3321,pineapple,cat,No,night owl,Yes,you belong with me by taylor swift
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Industrial,,,53706,38.752,48.8466,pepperoni,cat,No,early bird,Maybe,Kerosene -Crystal Castles
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Economics and Psychology ,Possibly a Data science minor ,53703,40.4406,-79.9959,sausage,dog,No,early bird,Maybe,Wonderwall - Oasis
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Mathematics/AMEP,,Mathematics and Economics,53703,86.9212,40.4237,mushroom,cat,No,early bird,Maybe,Christmas List by Anson Seabra
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53708,42.3611,-71.0571,Other,dog,No,night owl,Yes,Sultans of Swing by Dire Straits
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Science: Chemistry,,None,53715,37.5683,126.9978,sausage,dog,No,night owl,Yes,Under the bridge - Red Hot Chili Peppers
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics,Data science. ,53703,36.6769,117.1201,sausage,dog,No,night owl,Yes,Heat waves by Glass Animals
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pepperoni,dog,No,night owl,Yes,Hey ya- outkast
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Engineering: Mechanical,,,53704,44.5133,-88.0133,pepperoni,cat,No,early bird,Yes,The adults are talking-The strokes
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,Statistics,53706,24.5551,-81.78,pepperoni,neither,Yes,no preference,No,Circles- bangers only & fawlin
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,45.4408,12.3155,pepperoni,dog,Yes,night owl,Yes,"Upside Down, Jack Johnson"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,21,Data Science,,Secondary major: Computer Science,53711,35.6528,139.8395,sausage,cat,Yes,night owl,Yes,Mayonaka no Door / Stay With Me
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economics ,maybe data science,53703,25.2048,55.2708,mushroom,cat,Yes,night owl,Maybe,"Dancing with A Stranger
Sam Smith and Normani
"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Other (please provide details below).,Pre-business.,Want to do Computer Science as my secondary major.,53718,39.9042,116.4074,pepperoni,cat,Yes,night owl,Maybe,Lose Yourself - Eminem
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,,Science: Other,Zoology ,Conservation Biology ,53706,43.0731,-89.4012,none (just cheese),cat,No,night owl,Yes,The Fall- Lovejoy
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Economics,"French, International Studies",53715,43,89.4,sausage,dog,Yes,night owl,Yes,"Tiny Dancer, Elton John"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,22,Data Science,,,53715,37.5665,126.978,pepperoni,dog,Yes,night owl,Yes,My favorite song is Hate you by Yerin Baek.
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53715,47.6062,-122.3321,pepperoni,dog,No,night owl,Maybe,"it changes often, through many genres, but currently,
Aaron Hibell - destroyer of worlds (oppenheimer trance edit)
"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC001,21,Other (please provide details below).,Economics ,Data Science,53703,0.8035,90.0425,pineapple,dog,No,night owl,Yes,Lifestyles of the Rich and Famous by Good Charlotte
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Engineering: Other,Computer Engineering,NA,53715,39.795,-74.7773,pepperoni,dog,Yes,night owl,Yes,NA
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Business: Finance,,,53706,45.4647,9.1885,sausage,dog,Yes,early bird,Maybe,Drake-Passionfruit
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,I'm a Computer Science Major. ,I'm a Data science Major.,53706,42.2475,-84.4089,Other,dog,No,no preference,Maybe,Just like me by A boogie wit da hoodie.
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,,Engineering: Mechanical,,,53706,40.7128,-74.006,pepperoni,cat,No,night owl,Yes,Love Lost - Mac Miller
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Other (please provide details below).,,"Data Science, Mathematics",53706,39.4822,-106.0462,pepperoni,dog,Yes,early bird,Yes,"Keep Your Head Up
by Andy Grammar"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Other (please provide details below).,Economics,,53073,60.3913,5.3221,pepperoni,cat,No,night owl,No,Iron Lung - King Gizzard and the Lizard Wizard
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Other (please provide details below).,Econ Major ,,53703,43.0731,-89.4012,sausage,dog,No,night owl,Yes,Follow God by Kayne West
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Engineering: Mechanical,,,53076,43.7696,11.2558,Other,dog,No,no preference,Maybe,The Difference -Flume
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Information Science.,Economics.,53703,43.0731,-89.4012,Other,cat,Yes,night owl,Yes,GEEKED N BLESSED by LUCKI
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Other (please provide details below).,Journalism,,53715,41.3874,2.1686,none (just cheese),cat,Yes,night owl,Yes,revival zach bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,Economics and certificate in Data Science ,,53703,23.2494,106.4111,pineapple,dog,No,night owl,Maybe,Sketzo by Travis Scott and Young Thug
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Business: Finance,Finance,data science,53705,200,116,mushroom,cat,Yes,night owl,Yes,Who am I- why don't we
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Mathematics/AMEP,,,53706,43.0731,-89.4012,sausage,dog,Yes,night owl,Yes,Runaway- Kanye
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,21,Business: Other,Pass,Pass,53705,40.7128,-74.006,green pepper,cat,Yes,night owl,Yes,"""Steal the show"", by Lauv
"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Computer Science,,,53706,25.7617,-80.1918,sausage,dog,No,no preference,Maybe,Bank Account - 21 Savage
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53703,-23.5505,-46.6333,Other,cat,Yes,night owl,Yes,"Violent Crimes - Kanye West
ps: Not a fan at all of him as a person, but huge fan of his work."
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,Computer Science,53706,50,21,sausage,cat,Yes,night owl,Maybe,Symphony No. 9 by Ludwig van Beethoven
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,42.7261,-87.7895,pepperoni,dog,No,no preference,Yes,Margaritaville by Jimmy Buffett
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Biomedical,,,53706,26.1242,-80.1436,basil/spinach,cat,No,no preference,Yes,"Wash it all away, Five Finger Death Punch"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Data Science,,,53703,42.1281,-88.0937,pineapple,dog,No,night owl,Yes,Thunderstruck AC/DC
COMP SCI 319:LEC004,LEC004,23,Other (please provide details below).,Economics,No,53703,30.5728,104.0668,pineapple,cat,No,early bird,Yes,蓝雨 -- Jacky Cheung
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53711,31.5879,120.2127,pineapple,neither,No,night owl,Maybe,"Samudrartha and Wildfire by HOYO-MiX
Watchtower of the East by Quadimension "
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Mechanical,,,53706,35.2401,24.8093,pepperoni,cat,Yes,night owl,No,The Seventh Sense by NCT U
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,21,Engineering: Biomedical,,,53703,43.0128,-88.2351,sausage,dog,No,night owl,Yes,Hannah Montana by the Migos
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Business: Finance,,,53703,41.3874,2.1686,pepperoni,dog,Yes,night owl,Yes,Your love - Sosa UK
COMP SCI 319:LEC001,LEC001,29,Science: Physics,,,53715,40.7128,-74.006,sausage,dog,Yes,no preference,Yes,"Beat it, Michael Jackson"
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Engineering: Other,,,53706,43.6532,-79.3832,pepperoni,dog,No,night owl,Maybe,Killer Queen - Queen
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,Computer Science,53706,41.8781,87.6298,pineapple,dog,No,night owl,No,Shampoo Bottles - Peach Pit
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,21,Mathematics/AMEP,,,53706,30.5928,114.305,none (just cheese),cat,No,night owl,Yes,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,Communication Arts,53706,52.7107,-8.879,Other,dog,No,night owl,Yes,Boomerang by Summer Set
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Atmospheric and Oceanic Science,,53703,64,21,green pepper,dog,No,no preference,No,
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Statistics,,Still deciding between math or data science,53703,,,pepperoni,cat,No,no preference,No,Mandy by Barry Manilow
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economics,,53726,22.5431,114.0579,mushroom,dog,No,early bird,Maybe,Forever Young; Blackpink
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC002,20,Engineering: Mechanical,,,53706,41.8781,87.6298,pineapple,dog,Yes,early bird,Maybe,"""Peg"" - Steely Dan
"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,Data Science ,Economics,53703,12.9,77.5,sausage,neither,Yes,night owl,Maybe,Metallica - Enter Sandman
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Engineering: Industrial,,,73506,8.538,-80.7821,none (just cheese),dog,No,no preference,Maybe,"Como has estau? -Mora
Quevedo - Quevedo
Yankee- quevedo"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Engineering: Industrial,,Data Science,53719,55.7558,37.6173,pineapple,cat,No,night owl,Yes,Cate's Brother by Maisie Peters
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53715,47.9031,-91.8565,pineapple,cat,Yes,night owl,Yes,Kiss Me - Sixpence None The Richer
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Mechanical,Mechanical Engineering,,53706,19.076,72.8777,none (just cheese),dog,No,no preference,Maybe,This Side of Paradise - Coyote Theory
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,21,Business: Other,Econ,,53703,41,-73.6,Other,dog,Yes,night owl,Yes,Sunflower seeds by bryce vine
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,25,Other (please provide details below).,Economics,,53703,35,129,Other,dog,No,night owl,Maybe,Not today - bts
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Business: Actuarial,,Math,53703,22.5431,114.0579,sausage,dog,No,night owl,Maybe,"All We Know
The Chainsmokers"
COMP SCI 319:LEC001,LEC001,26,Business: Other,MBA specializing in tech strategy and product management ,,53558,41.0082,28.9784,basil/spinach,cat,No,night owl,Yes,"Tears in the Rain, The Weeknd "
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Mathematics/AMEP,,,53703,40.6541,109.8201,sausage,cat,No,night owl,Yes,Yellow - Coldplay
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,,53706,35.0568,118.3406,Other,cat,No,night owl,Yes,"Common Jasmin Orange by Jay Chou
it's a Chinese song, so you probably can't understand the lyrics"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Biomedical,,,53703,46.7828,-92.1055,sausage,cat,Yes,night owl,Yes,I'm Just Ken by Ryan Gosling
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Business: Finance,N/A,Comp Sci ,53703,43.0731,-89.4012,pineapple,dog,Yes,no preference,No,Don't go breaking my heart - Elton John
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Industrial,,,53719,43.0731,-89.4012,pepperoni,cat,Yes,night owl,Yes,Pride by Kendrick Lamar
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53715,31.2304,121.4737,green pepper,cat,No,night owl,Yes,Talking to the Moon--Bruno Mars
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,23,Other (please provide details below).,consumer science,i don't have,53703,31.2304,121.4737,mushroom,neither,Yes,early bird,Yes,hero Mariah Carey
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Business: Other,,,53706,13.7563,100.5018,pepperoni,dog,No,night owl,Maybe,Die for you by the Weeknd
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,,Engineering: Biomedical,,,53706,37.5665,126.978,pepperoni,cat,Yes,night owl,Yes,You give love a bad name - Bon Jovi
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,21,Business: Finance,,RMI,53703,48.8566,2.3522,pepperoni,cat,No,no preference,Yes,Get out off town - Anita O'day
COMP SCI 319:LEC002,LEC002,,Science: Other,,,53703,49,-123,pepperoni,neither,No,night owl,Yes,Whatever :)
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Computer Science,,,537061127,36.1627,-86.7816,sausage,dog,No,no preference,Yes,Runnin' With the Devil - EVH
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Other (please provide details below).,Economics,Math,53703,43.0969,-89.5115,pepperoni,dog,No,early bird,Yes,Homemade - Jake Owen
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,,1000,48.8566,2.3522,pepperoni,neither,No,no preference,Maybe,"Imagine Dragons, Radioactive."
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Business: Other,,,53715,44.2134,-88.5018,pepperoni,dog,No,no preference,Yes,3005 - Childish Gambino
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Mechanical,,,53216,20.8854,-156.6653,pepperoni,neither,No,no preference,No,
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Business: Information Systems,,,53715,40.71,-74,pineapple,cat,No,night owl,Yes,Japanese Denim by Daniel Caesar
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53715,14.5995,120.9842,pepperoni,dog,Yes,night owl,No,Cherry Wine- Grent Perez
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Computer Science,,,53706,85.8398,10.2985,mushroom,dog,No,night owl,Maybe,"""Streems"" by The Symposium"
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Statistics,"I'm double majoring in mathematics and statistics; I hope to do research in some sort of applied probability theory after graduating (e.g. econometrics, mathematical biology, etc.)",n/a,53726,,,pepperoni,cat,Yes,early bird,No,"How Much a Dollar Cost, by Kendrick Lamar"
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,business,53715,27.4967,-82.6948,pepperoni,dog,No,early bird,No,Jimmy Cooks - Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Data Science,I am doing eco and plan to get a ds certificate,no,53703,39.9042,116.4074,Other,neither,No,early bird,No,''Capital''by Lo Ta-you
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Engineering: Mechanical,,,53726,41.8781,-87.6298,sausage,cat,Yes,night owl,Maybe,Shiva - Spillage Village & JID
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,35.9594,-83.9196,pepperoni,dog,Yes,early bird,No,Talkin' Tennessee by Morgan Wallen
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53706,44.5667,-92.5343,pepperoni,dog,No,night owl,Yes,street dreams by nas
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Business: Other,,,53703,37.7749,-122.4194,mushroom,dog,No,night owl,Yes,"Take it Easy - The Eagles
Otherside - Red Hot Chili Peppers"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Other (please provide details below).,Global Health,N/A,53706,42.3601,71.0589,basil/spinach,dog,Yes,night owl,Maybe,Somewhere Only We Know by Keane
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics,,53703,42.3314,-83.0458,sausage,dog,Yes,no preference,No,"Life Goes On - Lil Baby, Lil Uzi Vert, Gunna"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,"Biomechanics focus, Dance Certificate",53715,36.1627,-86.7816,pepperoni,dog,No,night owl,Maybe,"No specific songs but I love Elton John, Queen, Noah Kahan"
COMP SCI 319:LEC003,LEC003,22,Science: Biology/Life,,,53703,43.07,-89.38,mushroom,dog,No,early bird,No,Swimming Horses by Siouxsie and the Banshees
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,22,Statistics,,,53706,22.5431,114.0579,sausage,dog,Yes,no preference,Maybe,I Want My Tears Back--Nightwish
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Data Science,,Physics,53706,27.7172,85.3239,sausage,dog,Yes,early bird,No,Hall of fame
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,Economics,53706,48.8647,2.349,pepperoni,dog,Yes,night owl,Yes,Let It Happen - Tame Impala
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Business: Finance,,Data Science,53706,41.8781,-87.6298,basil/spinach,cat,No,night owl,Yes,LOYALTY FT. RIHANNA - KENDRICK LAMAR
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Other (please provide details below).,,,53706,41.9028,12.4964,Other,neither,No,no preference,Yes,Danza Kuduro - Don Omar
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Statistics,,,53706,47.3769,8.5417,mushroom,dog,No,no preference,Maybe,Blue Jay Way by the Beatles
COMP SCI 319:LEC002,LEC002,22,Business: Finance,,,53715,35,36,sausage,dog,No,early bird,Yes,TALLY BLACKPINK
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Mathematics/AMEP,,Data Sciene,53706,43.0707,-89.4142,sausage,dog,Yes,night owl,No,Build me up Buttercup- The foundations
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,23,Mathematics/AMEP,,,53703,34.34,108.93,mushroom,cat,Yes,early bird,Yes,The name is Super Gremlin. Artist is Kodak Black.
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Science: Other,,,537061127,3.139,101.6869,sausage,dog,Yes,no preference,Yes,Edge of Desire - John Mayer
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Data Science,,,53562,44.5004,-88.0613,pepperoni,dog,Yes,no preference,Maybe,
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Business: Finance,,,53703,41.8842,-87.6324,sausage,dog,No,early bird,Maybe,"Stayin Alive, Drake and DJ Khalid"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,56.4907,-4.2026,mushroom,dog,No,early bird,Maybe,Maroon by Taylor swift
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,was provided,German (maybe),53726,48.1351,11.582,pepperoni,dog,No,night owl,Yes,You Proof - Morgan Wallen
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,pepperoni,dog,No,night owl,Maybe,Springsteen - Eric Church
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,36.3932,25.4615,basil/spinach,dog,No,night owl,Yes,Mercy Now by Mary Gauthier
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC001,21,Business: Information Systems,,Data science ,53715,30.2667,-97.7333,pepperoni,dog,Yes,early bird,Yes,Hey driver Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC004,21,Business: Other,,,53703,41.3851,2.1734,pepperoni,dog,Yes,night owl,Yes,I remember by Zach Bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Mechanical,,,53715,44.0999,9.7382,pineapple,dog,No,no preference,No,Bury Me in Georgia by Kane Brown
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Business: Finance,Finance,,53726,35.6895,139.6917,sausage,cat,No,night owl,Yes,Mona Lisas and mad hatters by elton john
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53706,38,-77,Other,dog,No,night owl,Yes,dont stop believing
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53703,40.78,-73.97,none (just cheese),dog,No,night owl,Yes,"Replay by Iyaz
"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Computer Science,,,53715,43.0731,-89.4012,sausage,neither,No,no preference,Yes,Cream Soda - EXO
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC001,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,Yes,night owl,Yes,Beast of Burden - The Rolling Stones
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53715,40.7128,-74.006,pepperoni,cat,Yes,early bird,Maybe,Upside down- Jack Johnson
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Statistics,,computer science ,53706,40.7128,-74.006,pineapple,dog,Yes,early bird,No,The greatest show man
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Industrial,,,53715,41.8781,87.6298,sausage,cat,Yes,night owl,Yes,Ghost Town-Kanye West
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,sausage,dog,No,night owl,Maybe,Money by Pink Floyd
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,,Business: Information Systems,,,53703,36.107,-112.113,pepperoni,cat,Yes,night owl,Maybe,"Blinding lights, the weeknd"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Engineering: Mechanical,,,53703,44.9591,-89.6343,green pepper,dog,Yes,night owl,Yes,any wheeler walker junior song
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Engineering: Industrial,"
",,53711,43.0731,89.4012,pepperoni,cat,Yes,early bird,No,I will wait by mumford and sons
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,finance,53706,41.8781,87.6298,sausage,dog,No,night owl,Yes,"La Cancion, Bad Bunny and J Balvin"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,My primary major is Economics ,Informations Systems,53703,33.8812,-118.4072,sausage,dog,No,night owl,Yes,Lakeshore Drive Aloitta Haynes Jeramiah
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Other (please provide details below).,Economics,,53703,41.88,-87.63,mushroom,cat,Yes,night owl,Yes,"Everything She Aint, Hailey Whitters"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,23,Other (please provide details below).,Econ,no,53703,43.0731,-89.4012,mushroom,dog,No,night owl,Maybe,In the night gardeen
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Computer Science,,math,53715,,,mushroom,dog,No,night owl,Maybe,bones
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Mathematics/AMEP,\,"Economics major, Data Science certificate",53703,39.8954,116.3946,none (just cheese),cat,Yes,no preference,Maybe,no preference
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Engineering: Biomedical,,,53715,48.8566,2.3522,sausage,neither,No,night owl,Yes,ETA - New Jeans
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,economics ,"Data science
",53703,33.6188,-117.8566,pepperoni,dog,No,night owl,Maybe,"Heartache on the dance floor - jon pardi
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53703,39.9042,116.4074,mushroom,dog,No,night owl,Yes,Gone-Nelly/Kelly
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Data Science,,Statistics,53715,35.414,-79.0933,Other,dog,Yes,night owl,Yes,Revival - Zach bryan
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,21,Engineering: Other,Material Science and Engineering,.,53703,51.2094,3.2252,pineapple,dog,No,early bird,No,Aria Math
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Computer Science,,,53703,40.95,-73.73,none (just cheese),neither,Yes,early bird,Maybe,Closer - Chainsmokers
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,12.9716,77.5946,none (just cheese),dog,Yes,night owl,Yes,Any Coldplay song works!
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Data Science,,Economics,53066,43.1144,-88.5072,pepperoni,dog,No,night owl,Maybe,God tier-Baby Tron
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53073,52.3702,4.8952,pepperoni,dog,No,night owl,Yes,Vienna: Billy Joel
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,24,Other (please provide details below).,Neurobiology,Psychology,53703,60.3913,5.3221,Other,dog,Yes,early bird,Yes,"Title: Ôba, Lá Vem Ela
Artist: Jorge Ben"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Data Science,,,53703,43.0731,-89.4012,mushroom,neither,No,early bird,No,"《To have,or not to have》
Lin Sheng Hsiang"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53706,42.64,-71.1291,pepperoni,dog,No,early bird,Yes,505 - arctic monkeys
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Computer Science,,,53715,41.8781,-87.6298,mushroom,dog,Yes,night owl,Yes,Sicko Mode by Travis Scott and Drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Computer Science,,,53706,25.033,121.5654,mushroom,neither,Yes,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Business: Other,marketing,economics,53706,40,116,pineapple,dog,No,night owl,Yes,Save Your Tears (Remix)--Ariana Grande& The Weekend
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Computer Science,,Biochemistry,53706,10.8231,106.6297,none (just cheese),dog,Yes,early bird,Maybe,"""Dress""
Taylor Swift"
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,17,Data Science,,Economics,53706,31.2304,121.4737,pepperoni,dog,No,night owl,Maybe,Shed a light
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,21,Data Science,Econ,,53703,34.6937,135.5022,pineapple,dog,No,night owl,Maybe,Moon by Kanye west
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Computer Science,N/A,Certificate - Data Science,53703,-33.9235,151.1399,Other,dog,Yes,night owl,Yes,5SOS - Teeth
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Computer Science,,,53726,39.9042,116.4074,sausage,cat,No,night owl,Maybe,Planet of the bass
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,23,Business: Finance,,Data Science Certificate (reason I am taking the course),53705,39.6403,-106.3709,pineapple,cat,Yes,no preference,Yes,"professional Griefers; Deadmau5, Gerard Way"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Business: Information Systems,,International Business,53703,38.6992,-75.0968,basil/spinach,dog,Yes,early bird,No,"Revival, Zach Bryan
"
COMP SCI 319:LEC002,LEC002,27,Science: Other,Information Science,,53705,44.0164,-92.4754,sausage,dog,Yes,night owl,Yes,Enchanted - Taylor Swift
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53703,28,81,pepperoni,dog,No,night owl,Yes,More than my hometown by Morgan Wallen
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Business: Other,Business Admin,,53706,36.7194,-4.42,Other,dog,Yes,night owl,Yes,cigarette daydreams - cage the elephant
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,39.0655,85.2563,pepperoni,neither,Yes,night owl,Maybe,n/a
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Data Science,Economics,,53703,31.2304,121.4737,mushroom,cat,Yes,no preference,No,Summertime Sadness---Lana Del Rey
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Data Science,,,53706,35.6895,139.6917,basil/spinach,dog,No,night owl,Maybe,Slow Dancing from V
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Other,Materials Science and Engineering,,53711,45.9013,-89.8459,Other,cat,No,night owl,Yes,Rio by Duran Duran
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Actuarial,,,53703,35.6895,139.6917,pepperoni,dog,Yes,no preference,Maybe,"dancing in the dark by Bruce Springsteen
"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Engineering: Other,My major is Chemistry but I intend to switch to Material Science and Engineering,,53711,48.8647,2.349,macaroni/pasta,cat,No,no preference,Maybe,Anything Taylor Swift
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53703,41.8781,87.6298,basil/spinach,dog,Yes,early bird,Maybe,Landslide Fleetwood Mac
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Computer Science,,Data Science,53715,33.9835,-118.248,pepperoni,cat,No,early bird,Yes,Khai Dreams - Sunkissed
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53715,47.61,122.33,pepperoni,cat,Yes,night owl,Yes,"Maroon, Taylor Swift"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53703,38.9333,-77.0711,pepperoni,dog,No,early bird,No,Smaller acts- Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Data Science,,,53701,45.1433,-89.1518,pepperoni,dog,Yes,early bird,Yes,When I'm gone - Dirty Honey
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Data Science,,Psychology,53711,37.9838,23.7275,green pepper,neither,No,night owl,Yes,Telepatia by Kali Uchis
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,N/A,N/A,53706,43.0737,-89.4026,pepperoni,dog,No,night owl,No,Trustfall by P!nk (Pink)
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Engineering: Mechanical,,,53715,42.35,-71.06,mushroom,cat,No,night owl,Yes,Upside Down - Jack Johnson
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Computer Science,,"Computer Science, Mathematics",53706,34.6937,135.5022,mushroom,dog,Yes,early bird,Yes,Taylor Swift
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,22,Engineering: Other,,,53703,41.8781,-87.6298,pineapple,dog,No,early bird,No,Semi-Charmed Life - Third Eye Blind
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,47.6062,-122.3321,pepperoni,dog,No,early bird,Yes,Ultralight Beam- Kanye West
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Economics,Data Science,53703,31.2304,121.4737,pepperoni,dog,Yes,night owl,Yes,Excuses-- Jay Zhou
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Economics with a Mathematical Emphasis,,53703,37.7749,-122.4194,pepperoni,dog,Yes,night owl,No,Cigarette Daydreams by Cage the Elephant
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Psychology,Data Science,53719,30.5928,114.3052,pepperoni,cat,Yes,no preference,Yes,Marunouchi Sadistic
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,,Business: Information Systems,,Data Science,53715,41.8781,-87.6298,sausage,dog,No,early bird,Yes,Staying Over by Sam Grow
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Computer Science,,,53706,37.3387,121.8853,basil/spinach,dog,Yes,night owl,Maybe,All Too Well-Taylor Swift
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,,Engineering: Industrial,,,53705,47.6,-122.3,green pepper,neither,No,night owl,Maybe,Good Time (Owl City)
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Business: Other,,Data Science,57306,-33.8688,151.2093,sausage,cat,Yes,no preference,No,Time by Pink Floyd
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Business: Information Systems,,Risk Management & Insurance,53703,43.0739,-89.3852,none (just cheese),dog,Yes,night owl,Yes,Heading South by Zack Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Biomedical,//,//,53715,45.7088,-121.5252,Other,dog,Yes,early bird,No,Honeybee - the Head and the Heart
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,20,Mathematics/AMEP,,,53726,44.1495,9.6547,pepperoni,dog,Yes,early bird,No,"John Mayor - Wild Blue
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,23,Engineering: Industrial,,,53715,37.5665,126.978,pepperoni,cat,Yes,night owl,Yes,"Burning Heart, Survivor"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Computer Science,"
",Certificate in Data Science,53715,39.483,-106.0463,macaroni/pasta,dog,Yes,night owl,Yes,505 by the Arctic Monkeys
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53703,5.4164,100.3327,none (just cheese),dog,Yes,no preference,Yes,Melancholy Hill - Gorillaz
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Statistics,,,53706,55.6672,12.5512,green pepper,dog,Yes,no preference,Maybe,Pink + White by Frank Ocean
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,23,Business: Finance,ECONOMICS ,FINANCE,53703,-45.0312,168.6626,pineapple,dog,Yes,early bird,No,Kiss Me Through The Phone - Souja Boy
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,economy,no,53703,39,116,sausage,neither,Yes,no preference,Maybe,the nights Avicii
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Science: Other,Political Science,,53715,45.0813,-93.135,pepperoni,dog,No,night owl,Yes,No Surprises: Radiohead
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Other (please provide details below).,Economics ,Maybe data science,53715,19.076,72.8777,basil/spinach,dog,No,night owl,Yes,none at the moment
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Mathematics/AMEP,N/A,N/A,53703,38.914,121.6147,macaroni/pasta,cat,No,night owl,Yes,You(=I) by BOL4
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,29.9511,-90.0715,pineapple,dog,Yes,night owl,Yes,Margaritaville - Jimmy Buffett
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,20,Data Science,,,53715,60.1699,24.9384,pepperoni,dog,No,early bird,Yes,Poison - Alice Cooper
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,Economics,53703,22.5431,114.0579,basil/spinach,dog,Yes,early bird,No,Palm Springs-Virginia To Vegas
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,21,Engineering: Other,Materials Science and Engineering,,53703,32.7157,-117.1611,green pepper,dog,No,night owl,No,The Fragrance of Dark Coffee by Noriyuki Iwadare
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Other (please provide details below).,Math,"Econ, CS",53703,39.9042,116.4074,mushroom,dog,No,early bird,Maybe,"Qing tian, Jay Chou"
COMP SCI 319:LEC003,LEC003,24,Engineering: Other,,,53711,32.4,119.4301,mushroom,cat,Yes,early bird,No,Just the two of us——Jose James
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Poli Sci & History,"Business, Development Economics, Data Science, Public Policy",53715,40.1728,74.006,Other,dog,No,night owl,Maybe,"""The Adults Are Talking"" by The Strokes"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,28.3731,-81.5569,none (just cheese),cat,No,no preference,Maybe,The Story of Us by Taylor Swift
COMP SCI 319:LEC003,LEC003,24,Other (please provide details below).,Economics,,53703,38.914,121.6147,tater tots,dog,No,no preference,No,Butter—Fly by わだ こうじ
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Science: Physics,,,53706,52.3676,4.9014,pineapple,cat,No,night owl,Yes,"Orion - Metallica, first section is decent but the entire middle section is the most beautiful piece of music to me and has always been my favorite song ever."
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,39.4821,-106.0487,none (just cheese),cat,No,night owl,Yes,ivy by taylor swift
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,35.6895,139.6917,pepperoni,cat,Yes,night owl,Yes,"Title: The Less I Know the Better
Artist: Tame Impala"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53711,43.7696,11.2558,sausage,dog,No,night owl,Yes,Break My Stride Mattew Wilder
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Other (please provide details below).,Biochemistry,Data Science,53715,34.0522,-118.2437,macaroni/pasta,dog,No,night owl,Yes,Nonsense - Sabrina Carpenter
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Other,,,53706,35.6528,139.8395,pineapple,cat,Yes,night owl,Yes,"Fly me to the moon --- Frank Sinatra
Night Dancer --- imase"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,39.4784,-106.0443,pepperoni,cat,No,night owl,Yes,Style by Taylor Swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53703,42.3601,-71.0589,pineapple,dog,No,night owl,Yes,Do Not Disturb -Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,n/a,n/a,53715,25.7617,-80.1918,pineapple,cat,Yes,night owl,Yes,Chicken Tendies by Clinton Kane
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,,53715,43.0731,-89.4012,sausage,cat,Yes,early bird,Maybe,Mayonaise by The Smashing Pumpkins
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Engineering: Mechanical,,,53706,41.3851,2.1734,mushroom,dog,No,early bird,Yes,Hysteria - Muse
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,,Other (please provide details below).,not declare yet,,53711,37.5665,126.978,mushroom,dog,No,no preference,Maybe,blackpink - pink venom
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Computer Science,,Data Science certificate,53703,44.5012,-88.0611,pepperoni,cat,No,night owl,Maybe,All That by Mac Miller
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53711,51.5074,-0.1278,mushroom,dog,Yes,no preference,Maybe,"""Always There"" -Greta Van Fleet"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,,Computer Science,,,53715,49,50,pepperoni,dog,No,night owl,Maybe,Chandelier - DJ Khaled
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,22,Business: Other,,"consumer behavior & marketpace studies, economics",53703,18.2528,109.5119,mushroom,dog,No,no preference,Yes,"Angel, Mosiah"
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,44.0134,-69.3102,Other,cat,Yes,no preference,No,September by Earth Wind and Fire
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Biomedical,,,53706,41.8781,-87.6298,mushroom,dog,No,early bird,Maybe,no option post malone
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Business: Finance,,Information Systems,53703,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Wat's Wrong by Isaiah Rashad
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,"Double major: Finance, Investment, and Banking / Information Systems",,53715,43.6123,-110.7054,pepperoni,dog,No,night owl,Yes,"Looking out for you, Joy Again"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Other (please provide details below).,Economics,Data Science minor,53703,33.8847,-118.4072,pineapple,dog,Yes,no preference,Yes,Boss DJ by Sublime
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.9526,-75.1652,mushroom,dog,No,no preference,Maybe,Everybody Wants to Rule the World- Tears for Fears
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,21,Science: Biology/Life,,,53703,30.5728,104.0668,mushroom,cat,Yes,early bird,Yes,"Until I Found You
Stephen Sanchez"
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Other (please provide details below).,econ,data science,53703,0,45,pineapple,dog,No,no preference,No,fire on fire Sam Smith
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Biomedical,,Data science,53706,43.168,-89.284,basil/spinach,dog,No,night owl,Yes,505 by the artic monkeys
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Other (please provide details below).,Textiles and Fashion Design ,,53703,48.6997,-122.8756,basil/spinach,dog,Yes,night owl,Yes,32 Flavors by Alana Davis
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Science: Biology/Life,,,53706,42.9005,-88.0291,pineapple,dog,No,night owl,Maybe,Regular (English Version)- NCT 127
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Other (please provide details below).,Economics,Spanish,53715,36.1699,-115.1398,mushroom,dog,No,night owl,Yes,
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,I am an undecided freshman major right now. I am thinking about applying to the industrial engineering major or majoring in psychology and legal studies because I have an interest in going to law school. ,,53706,25.7033,-80.2828,none (just cheese),dog,Yes,night owl,Maybe,Lay All Your Love On Me by ABBA
COMP SCI 319:LEC003,LEC003,24,Other (please provide details below).,Economics,,53703,40,116,sausage,cat,No,night owl,No,"Play Date
Martinez"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Information Science. Possibly data science certificate.,,53703,48.8566,2.3522,macaroni/pasta,dog,No,night owl,Maybe,Dandelions by Ruth B.
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Computer Science,,,53715,42.1024,-88.0585,pineapple,dog,Yes,night owl,Yes,The Scientist by Coldplay
COMP SCI 319:LEC004,LEC004,23,Other (please provide details below).,Economics,,53704,39.904,116.407,pineapple,neither,Yes,early bird,Yes,Every song by Jay Chou. A Chinese singer.
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Data Science,,economics,57306,24.4798,118.0894,pepperoni,neither,No,night owl,No,The Hills by The weekend
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Business: Finance,,,53703,43.076,89.3929,pepperoni,dog,Yes,no preference,Yes,"Jake's Piano - Long Island
Zach Bryan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,Nuclear Engineering,,53703,40.7128,-74.006,Other,dog,Yes,night owl,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,,Engineering: Mechanical,,,53703,33.493,-111.9258,pepperoni,dog,No,night owl,Yes,Teguila Shots- Kid Cudi
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Mathematics/AMEP,,,53703,53.3498,-6.2603,none (just cheese),dog,No,early bird,Yes,You Can't Make Old Friend by Kenny Rogers ft. Dolly Parton
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53703,40.71,-74,none (just cheese),dog,Yes,night owl,Yes,Anything Harry Styles
COMP SCI 319:LEC004,LEC004,22,Business: Information Systems,,,53703,36.0671,120.3826,pineapple,dog,No,night owl,Maybe,lonely dance
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Mechanical,,,53715,44.9212,-93.4688,pepperoni,dog,No,night owl,Yes,Snow (Hey Oh) by Red Hot Chili Peppers
COMP SCI 319:LEC001,LEC001,23,Computer Science,,,53703,23.1291,113.2644,tater tots,neither,Yes,early bird,Maybe,《lost stars》- Adam Levine
COMP SCI 319:LEC003,LEC003,22,Other (please provide details below).,Geography - Geographic Information Science and Cartography,N/A,53715,45.5017,-73.5673,mushroom,dog,No,night owl,Yes,Afterglow - Ed Sheeran
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Other (please provide details below).,Computer Science,Data Science,53706,35.6895,139.6917,sausage,dog,No,night owl,Yes,"Lost in Paradise , Miura Jam"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53715,30.1766,-85.8055,pepperoni,dog,No,early bird,No,"Billie Jean-Micheal Jackson
or
Cum on Feel the Noize-Quiet Riot"
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,39.1898,106.8183,pepperoni,dog,No,night owl,Yes,Peach — Sammy Virji
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,22,Computer Science,,,53703,17.4203,78.4029,mushroom,dog,Yes,no preference,Maybe,Popular (feat. Playboi Carti) by The Weeknd & Madonna
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Data Science,,Computer Science,53705,37.45,-122.2,pineapple,cat,No,early bird,Maybe,Natural - What If
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,Yes,night owl,Yes,All Falls Down by Kanye West
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,Other,dog,Yes,early bird,No,Fishing in the Dark - Nitty Gritty Dirt Band
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Other (please provide details below).,Economics,,53703,22.5431,114.0579,pepperoni,dog,Yes,night owl,No,snowman-sia
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Data Science,,,53706,28.5383,-81.3792,sausage,dog,No,early bird,No,Come On Eileen by Dexys Midnight Runners
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,39,Data Science,xxx,Biomedical Data Science,53713,47.3006,-88.0459,pepperoni,cat,Yes,no preference,Yes,"Our Song, Joe Henry"
COMP SCI 319:LEC001,LEC001,23,Science: Other,information science,,53718,40.4259,-86.9081,pepperoni,dog,No,no preference,Yes,Young and Beautiful by Lana Del Rey
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Computer Science,,,53703,39.3597,111.5863,pepperoni,dog,No,night owl,Yes,Baby I'm bleeding - Jpeg Mafia
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Engineering: Biomedical,,,57303,41.8,-72,sausage,dog,No,early bird,No,Money - The Drums
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC001,20,Data Science,,Math Econ,53711,48.1376,11.5799,pepperoni,cat,No,no preference,Maybe,FE!N by Travis Scott
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,Spanish,53706,44.7666,-85.5946,none (just cheese),dog,Yes,no preference,No,Single ladies - Beyoncé
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53718,40.7584,-73.9843,none (just cheese),dog,Yes,early bird,Maybe,"Spectrum - Florence + The Machine, Calvin Harris"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Computer Science,,,53706,22.3072,73.1812,none (just cheese),neither,Yes,no preference,Maybe,I have no such preference for songs.
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Computer Science,I am a computer science major.,Not Mandatory,53706,25.2048,55.2708,pepperoni,dog,Yes,early bird,No,Titi me pregunto by bad bunny.
COMP SCI 319:LEC004,LEC004,24,Other (please provide details below).,Econometrics,,53711,24.8801,102.8329,pineapple,cat,No,night owl,Yes,Resting Ground by Christopher Larkin
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,economics,data science,53703,5.4203,100.3119,none (just cheese),cat,No,no preference,Maybe,You give love a bad name bon jovi
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,,Business: Finance,,,53703,52.3702,4.8952,pepperoni,dog,No,night owl,Yes,Radio Ga Ga by Queen.
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Science: Biology/Life,,,53706,-8.6399,115.1402,Other,dog,No,night owl,Yes,Rise
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Data Science,,,53706,,,pepperoni,dog,No,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Biomedical,,Spanish,53715,44.8504,93.7876,pineapple,dog,Yes,night owl,Yes,Nonstop by Drake
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53711,-33.9249,18.4241,pineapple,dog,Yes,early bird,Yes,Violent Crimes - Kanye West
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Data Science,,Information Systems,53175,28.5383,-81.3792,sausage,dog,No,early bird,No,Come On Eileen by Dexys Midnight Runners
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Mathematics/AMEP,,Psychology,53715,38.9072,-77.0369,pineapple,dog,No,early bird,Yes,Love Story - Taylor Swift
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Engineering: Industrial,N/A,N/A,53711,42.6507,18.0944,pepperoni,dog,Yes,no preference,Yes,Holanda - Jhayco
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53715,40.7128,-74.006,pepperoni,neither,Yes,night owl,Yes,《花海》from 周杰伦;Floral Sea by Jay Chou
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,22,Other (please provide details below).,Mechanical Engineering,Physics,53711,39.7392,-104.9903,pineapple,dog,No,night owl,Yes,"""The Weight of Dreams"" by Greta Van Fleet (modern day copy-cat of Led Zeppelin)"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Mechanical,,,53715,49.7938,-93.1955,mushroom,dog,Yes,night owl,Yes,Hurt Feelings by Mac Miller
COMP SCI 319:LEC002,LEC002,23,Science: Other,master of science information (data analyst),none,53703,44.0521,-123.0868,sausage,cat,No,night owl,Yes,beside you - keshi
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,21,Statistics,,,53703,44.51,88.01,basil/spinach,cat,No,night owl,Yes,Dunno - mac miller
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,23,Computer Science,,Economics,53715,55.6761,12.5683,sausage,dog,Yes,no preference,Yes,Uden dig - ukendt kunster
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Cellular and Molecular Biology,Japanese,53703,35.3032,139.5657,basil/spinach,dog,No,night owl,Yes,Memories by Maroon 5
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Computer Science,,,53706,37.5326,127.0246,sausage,cat,Yes,no preference,Yes,"Title: Some might say (Oasis)
"
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Finance,Finance ,Marketing,53715,64.9631,-19.0208,sausage,dog,No,night owl,Yes,Jump Around by House of Pain
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,Undecided,,53715,41.8781,-87.6298,basil/spinach,dog,No,early bird,Yes,New Beat by Toro y moi
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Economics,,53818,43,0,sausage,neither,No,night owl,Maybe,None
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,39.9526,-75.1652,pepperoni,dog,No,night owl,Yes,All the Stars by Kendrick Lamar and SZA
COMP SCI 319:LEC004,LEC004,22,Computer Science,,,53715,22.5431,114.0579,sausage,cat,No,night owl,Yes,cruel summer!!! Taylor swift!!!
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Accounting,Finance,53715,41.8781,-87.6298,sausage,dog,Yes,night owl,Yes,Change- Bailey Zimmerman
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Political Science,,53703,41.8781,-87.6298,Other,cat,Yes,early bird,Maybe,"Nashville, TN by Chris Stapleton"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Computer Science,,,53715,22.5886,88.4043,Other,dog,No,no preference,Yes,Elevated - Shubh
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC004,20,Data Science,,,53703,35.9078,127.7669,pepperoni,dog,Yes,early bird,Yes,One Call Away - Charlie Puth
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53703,49.2827,-123.1207,pineapple,cat,No,no preference,Yes,"before he cheats
by carrie underwoods"
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Engineering: Biomedical,,,53706,35.6895,139.6917,basil/spinach,dog,Yes,no preference,Yes,Wind Blows - Dreamcatcher
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Mechanical,n/a,n/a,53706,43.0517,-89.3427,macaroni/pasta,dog,Yes,no preference,Yes,"title: wonderwall
artist: Oasis "
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Data Science,,,53716,44.5133,-88.0133,green pepper,dog,No,night owl,Yes,Mr. Rager by Kid Audi
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Business: Finance,,"Mathamatics for finance, Economics",53703,24.4798,118.0894,Other,cat,Yes,no preference,Maybe,Not good enough for you-Jay Chou
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Business: Other,Marketing,,53715,43.0389,-87.9065,none (just cheese),cat,Yes,no preference,Maybe,I guess that's why they call it the blues - Elton John
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Data Science,I plan to major in Data science.,no second major,53711,33.6225,113.3418,basil/spinach,dog,No,night owl,Maybe,That Girl by Olly Murs
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,23,Other (please provide details below).,Economics,Political Science,53703,43.0731,-89.4012,pepperoni,cat,Yes,night owl,No,500 Miles
COMP SCI 319:LEC001,LEC001,30,Engineering: Other,,,53705,-34.4909,-58.4892,pepperoni,dog,Yes,early bird,Maybe,Sweet Child O' Mine - Guns N' Roses
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economic,,53705,31.2304,121.4737,none (just cheese),cat,No,early bird,Yes,Closer by the chainsmokers
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Business: Information Systems,,,53706,33.4484,-112.074,none (just cheese),dog,No,no preference,Yes,runaway by Kanye West
COMP SCI 319:LEC002,LEC002,25,Engineering: Other,,,53705,37.1765,-3.5979,basil/spinach,cat,No,night owl,Maybe,Time of Our life - DAY6
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,21,Science: Biology/Life,,French,53703,44.9019,-93.3388,basil/spinach,dog,Yes,no preference,Yes,Brazil- Declan McKenna
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Data Science,,Economics,53715,43.7696,11.2558,none (just cheese),cat,Yes,night owl,Yes,November Rain Guns N' Roses
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Finance,Econ with data science certificate ,53703,41.3851,2.1734,pepperoni,dog,No,no preference,No,(It goes like) nanana by Peggy Gou
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,38.7223,-9.1393,basil/spinach,dog,Yes,no preference,No,Nice For What by Drake
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Information Systems,,"Supply chain, operation technology managment ",53703,12.4964,41.9028,pineapple,dog,No,night owl,Yes,My favorite song is probably dancing queen by ABBA
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Mechanical,,,53706,47.6775,11.2041,basil/spinach,dog,No,no preference,Yes,Uptown Girl by Billy Joel
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Data Science,,,53703,31.8433,117.2457,Other,dog,No,night owl,Yes,"Title: [Mrs. Shexiang] (https://www.last.fm/music/Phoenix+Legend/_/Mrs.+Shexiang)
Artist: Phoenix Legend"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Data Science,,,53706,55.68,12.58,pepperoni,cat,No,night owl,Maybe,Love Lost - Mac Miller
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,economics BA,,53711,35.6895,139.6917,mushroom,dog,No,no preference,Yes,My favorite song is Favorite Song.
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,18,Computer Science,,,53706,45.4642,9.19,pepperoni,cat,No,night owl,Maybe,"****************************
The Weeknd - Save Your Tears
****************************"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,31.8089,120.6153,Other,cat,No,no preference,Yes,Blood Type-Viktor Tsoi
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Engineering: Biomedical,,,53703,40.4855,-106.8336,pepperoni,dog,Yes,early bird,Maybe,When it Rains it Pours by Luke Combs
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Business: Finance,,Real Estate,94024,40.7128,-74.006,sausage,dog,Yes,night owl,Maybe,
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Finance,N/A,N/A,53703,1.2,4.2,pepperoni,dog,No,no preference,Maybe,I'm gonna be (500miles) by the proclaimers
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,,Engineering: Mechanical,,,53703,39.6456,-77.4205,pepperoni,dog,No,no preference,Yes,Jimmy Cooks by Drake
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Business: Finance,N/A,Data science,53706,13.8079,108.1094,basil/spinach,dog,No,early bird,Maybe,"Truoc khi em ton tai - Thang
Mirror ball - Taylor Swift"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Other,Environmental Science,,53715,41.8781,-87.6298,green pepper,dog,Yes,night owl,Yes,Black Swan by BTS
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,19,Mathematics/AMEP,,,53715,44.79,-89.7,pepperoni,dog,No,no preference,No,I don't have a favorite
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Data Science,Information and data science,,53703,43.0389,-87.9065,pepperoni,dog,No,night owl,Maybe,mayonaise smashing pumpkins
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,My primary major is Economics.,My secondary major is Psychology. I have declared a certificate in data science.,53703,35.6895,139.6917,pepperoni,neither,No,no preference,Maybe,"Hype boy - New Jeans
Paris in the rain - Lauv
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,21,Data Science,,,53703,32.8328,-117.2713,Other,dog,Yes,night owl,Maybe,The Pale Moonlight - Kid Cudi
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,information science ,data science,53706,41.3851,2.1734,green pepper,dog,Yes,night owl,Yes,Jungle - Drake
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,22,Science: Biology/Life,,,53715,47.0502,8.3093,macaroni/pasta,dog,No,night owl,Yes,Under Pressure by Queen and David Bowie
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Industrial,,,53703,18.0231,-63.0482,Other,cat,No,no preference,No,Could you be loved - Bob Marley
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Information Science,,53703,49.2827,-123.1207,pepperoni,dog,No,night owl,Yes,tell me what you want - dacelynn
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Statistics,I selected Statistics above.,I am considering double majoring in data science.,53703,60.1699,24.9384,pepperoni,dog,Yes,early bird,Yes,Mrs. Hollywood - Go-Jo
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,I am undecided but planning on potentially majoring in Data Science or at least getting a certificate. ,"I am also potentially majoring in International Studies, but am currently undecided.",53706,37.7749,-122.4194,basil/spinach,dog,Yes,night owl,Maybe,"""The Air That I Breathe"" The Hollies "
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,N/A,N/A,53706,43.0389,-87.9065,pepperoni,dog,Yes,early bird,Yes,Jungle by Andre Nickatina. Its Christian Yelich's walk up song.
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Business: Finance,,Psychology,53715,51.5074,-0.1278,basil/spinach,cat,No,night owl,Yes,Daydreaming by Harry Styles
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,Mech E,,53715,41.1579,-8.6291,basil/spinach,dog,No,night owl,Yes,Zach Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Data Science,,,53706,19.64,-156,pepperoni,dog,Yes,night owl,Yes,From Time by Drake
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Actuarial,,Data Science,53706,43.485,-89.754,mushroom,neither,No,night owl,Yes,"New Romantics, Taylor Swift"
COMP SCI 319:LEC001,LEC001,22,Other (please provide details below).,Information Science,No,53703,31.23,121.47,mushroom,dog,No,night owl,Maybe,"Artist: BLACKPINK, Title: Shut Down"
COMP SCI 319:LEC001,LEC001,22,Other (please provide details below).,Information science,,53703,31.23,121.47,mushroom,dog,No,night owl,Yes,"Song: Shut Down, Artist: Black Pink"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Engineering: Mechanical,,,53706,47.6062,-122.3321,pineapple,dog,Yes,early bird,No,Flashing Light by Kanye West
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53714,45.8713,-89.7116,pepperoni,cat,Yes,night owl,Yes,Africa by Toto
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Science: Physics,,,53726,60.39,5.32,mushroom,dog,Yes,night owl,Yes,Heat Above by Greta Van Fleet
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,21,Other (please provide details below).,Genetics and Genomics,,53703,36.7234,25.2822,basil/spinach,dog,Yes,early bird,Maybe,Kiss of Venus - Dominic Fike
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Other (please provide details below).,Data Science and Mathematics ,,53706,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,Heart Throb - Pritam
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Business: Finance,,,53703,41.8818,-87.8367,pepperoni,dog,No,night owl,No,"Boogie Wonderland by Earth, Wind, and Fire and The Emotions"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Legal Studies major,,10075,40.7131,-74.0072,pepperoni,dog,Yes,no preference,Yes,Dancing in the Moonlight
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Computer Science,,,53703,43.0731,-89.4012,pineapple,cat,No,no preference,Yes,Hits Different - Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Data Science,,,53715,45.4642,9.19,pineapple,dog,No,night owl,Yes,Passionfruit - Drake
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Computer Science,,Data Science,53715,25.2345,110.18,mushroom,cat,No,night owl,Maybe,Midsummer Madness by 88rising
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Engineering: Industrial,,,53706,60.8525,7.1136,pepperoni,dog,Yes,no preference,No,Boulevard of Broken Dreams by Green Day
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Engineering: Industrial,,,53715,51.5074,-0.1278,none (just cheese),dog,No,night owl,Yes,"unruly NSG,Meeks"
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Data Science,,Global Health,53715,18.58,-68.41,macaroni/pasta,cat,Yes,early bird,Yes,"November Rain, Guns N' Roses"
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,44.5004,-88.0613,pepperoni,cat,Yes,early bird,Maybe,"""Take It Easy"", Eagles"
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,21,Science: Biology/Life,,,53590,59.9,10.7,macaroni/pasta,cat,Yes,early bird,Yes,Trouble by Elvis Presley
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Engineering: Mechanical,,,53703,44.5133,-88.0133,pepperoni,dog,No,early bird,No,Revival by Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Business: Information Systems,,,53590,45.5017,73.5674,pepperoni,neither,Yes,night owl,Maybe,Teeth by 5 Seconds of Summer (please do play this one sometime!)
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53706,47.227,-88.164,pineapple,cat,No,night owl,Yes,stacy's mom by fountains of wayne
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Other (please provide details below).,Undecided,,53706,42.3314,-83.0458,pepperoni,dog,No,night owl,Maybe,Always Forever by Cults
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,36.3719,-94.2027,mushroom,dog,Yes,early bird,No,At the Beach by the Avett Brothers
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Other (please provide details below).,Economics,,53703,41.9028,12.4964,pepperoni,dog,Yes,night owl,Yes,Free bird - lynyrd skynyrd
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Other (please provide details below).,Behavioral Economics,"Mathematics, Data Science Minor",53715,42.3601,-71.0589,basil/spinach,dog,Yes,early bird,No,Sitting on Top of the World - Burna Boy
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Mechanical,,,53706,34.4208,-119.6982,pineapple,dog,No,early bird,Maybe,snooze by SZA
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53706,42.584,-87.82,pepperoni,dog,Yes,no preference,Maybe,Outside- Calvin Harris
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Business: Other,,,53703,37.1324,24.815,pepperoni,dog,No,night owl,Yes,Thunder by Imagine Dragons
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,44.79,-89.723,pepperoni,dog,No,no preference,No,Eye of the Tiger
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Engineering: Mechanical,,,53703,-33.9249,18.4241,pepperoni,dog,No,no preference,Yes,The Adults Are Talking - The Strokes
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Science: Other,My primary major is Atmospheric and Oceanic Science.,I am considering double majoring in either Environmental Studies or Math. ,53715,40.5853,-105.0844,none (just cheese),dog,Yes,no preference,Yes,"""Tidal"" Noah Kahan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Mechanical,,,53703,41.9,-87.6,pepperoni,dog,No,night owl,No,Revival by Zach Bryan
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC002,20,Other (please provide details below).,Economics.,Data Science.,53703,44.972,-93.51,pepperoni,dog,Yes,night owl,Maybe,Broken Clocks by SZA.
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Other (please provide details below).,Economics and Data Science,,57315,42.6256,-71.3853,pepperoni,dog,Yes,night owl,Yes,Style by Taylor Swift
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Data Science,-,Econ ,53711,1.3521,43.0731,mushroom,dog,Yes,early bird,Maybe,low-key - Nikki
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Computer Science,,,53703,61.2114,-149.7313,mushroom,cat,Yes,night owl,No,"""I Wonder"" by Kanye West"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Mechanical,,,53726,46.5436,-87.3954,basil/spinach,cat,Yes,night owl,Yes,"Snow, Red Hot Chili Peppers "
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53715,43,-89.3,pepperoni,dog,No,night owl,Yes,"FIEN, Travis Scott"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Mathematics/AMEP,,Statistics,53715,27.2195,78.0216,Other,neither,No,night owl,Yes,Taylor Swift- Style
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Science: Physics,n/a,n/a,53706,31.2304,121.4737,mushroom,cat,No,night owl,Yes,"Concorde -- Black Country, New Road"
COMP SCI 319:LEC001,LEC001,,Other (please provide details below).,economics,no,53705,39.9042,116.4074,mushroom,cat,Yes,night owl,Yes,What you mean to me -- Matthew Morrison/Laura Michelle Kelly
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC003,18,Engineering: Industrial,n/a,n/a,53706,1.3521,103.8198,pepperoni,dog,Yes,night owl,Yes,When the Day is Done by Grent Perez
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Science: Biology/Life,,,53719,51.5074,-0.1278,Other,cat,No,night owl,Maybe,Father Time - Kendrick Lamar
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Business: Other,Business related but undecided.,n/a,53706,37.5326,127.0246,mushroom,dog,No,night owl,Yes,"New Jeans - ETA
New Jeans - OMG"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,42.2387,-87.9596,pepperoni,neither,Yes,night owl,Maybe,Laugh Now Cry Later - Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,21,Data Science,,,53703,43.4714,-110.7688,sausage,dog,Yes,night owl,Yes,My Old School - Steely Dan
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53715,43.07,-89.4,sausage,dog,No,no preference,Maybe,I Hope That's True by Morgan Wallen
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,,Other (please provide details below).,Undecided.,,53706,35.6895,139.6917,sausage,cat,No,night owl,Yes,Stitches-Shawn Mendes
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,Finance,Information Systems,53718,43.6511,-79.347,sausage,dog,No,night owl,Maybe,Over by Drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Science: Biology/Life,,Data Science,53715,13.7563,100.5018,pepperoni,dog,No,night owl,Yes,Hurricane Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Business: Finance,,,53715,50.0755,14.4378,pepperoni,dog,No,night owl,Yes,Nonstop by Drake
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,22,Science: Biology/Life,,"Data Science, BS",53703,37.5683,126.9978,pepperoni,cat,No,night owl,No,'Mourning' - Post Malone
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,20,Data Science,,,53703,37.44,25.37,pepperoni,cat,No,night owl,Yes,Spotless- Zach Bryan ft. The Lumineers
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Business: Finance,,Business: Information Systems,53715,52.3702,4.8952,Other,cat,No,early bird,Yes,As It Was by Harry Styles
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53703,24.4882,54.3773,none (just cheese),cat,No,night owl,Yes,
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Computer Science,,,53703,42.9856,-88.0761,Other,dog,No,night owl,No,"Aries - Fools gold
"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Data Science,,,53703,33.4484,-112.074,mushroom,cat,No,night owl,Yes,fire burning -sean kingston
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53715,40.7128,-74.006,none (just cheese),dog,No,early bird,Yes,"Ordinaryish People, by AJR"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,22,Other (please provide details below).,"Economics, with data science certificate.",,53711,34.7466,113.6253,pepperoni,cat,Yes,no preference,Maybe,"One Last Kiss, by Utada Hikaru"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Data Science,,,53726,43.2815,-88.4091,sausage,dog,No,night owl,No,Normal Girl by SZA
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Engineering: Industrial,,,53703,39.6349,-106.5283,pepperoni,dog,Yes,night owl,Yes,Dark Necessities by The Red Hot Chilli Peppers
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Mathematics/AMEP,,Statistics,53706,31.2304,121.4737,sausage,cat,Yes,early bird,Yes,Scared 2 be Lonely--Lil Tjay
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,,Computer Science,,Data Science,53715,42.3601,-71.0589,sausage,dog,No,night owl,Yes,The Ladder - Margolnick
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Data Science,,Economics,53706,60.1282,18.6435,Other,dog,No,night owl,Maybe,Smells like teen spirit-Nirvana & Pretender- Foo Fighters (I'm never able to select my most favourite out of these two)
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Atmospheric and Oceanic Studies,,53726,44.447,88.889,pepperoni,dog,No,night owl,Yes,Julia - Mt. Joy
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53706,47.3886,-88.0226,pepperoni,dog,Yes,night owl,Maybe,"""Need 2"" by Pinegrove"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC004,19,Science: Other,,,53703,29.4316,106.9123,mushroom,neither,No,night owl,No,“FIREWORK” by &TEAM
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,44.5133,-88.0133,pineapple,dog,Yes,early bird,Yes,At the End of the Day -Wallows
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,,Data Science,,,53713,3.139,101.6869,basil/spinach,cat,Yes,no preference,Yes,Lady Gaga - Bad Romance
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Other (please provide details below).,Economics,N/A,53703,42.3601,-71.0589,basil/spinach,dog,No,night owl,Maybe,Revival - Zach Bryan
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,No,night owl,Yes,"""Passionfruit"" by Drake"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Engineering: Mechanical,,,53706,46.8108,-90.8182,pepperoni,dog,No,night owl,Maybe,"""My Hero"" by Foo Fighters "
"COMP SCI 220:LEC003, COMP SCI 220:LAB334, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,25.3176,82.9739,pepperoni,dog,Yes,early bird,Maybe,"Safe and Sound, by Capital cities"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Languages,N/A,N/A,53706,12.9716,77.5946,basil/spinach,cat,Yes,night owl,No,baseball - Hippocampus
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Data Science,,,53706,42.3601,-71.0589,sausage,dog,Yes,night owl,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,40.7128,-74.006,none (just cheese),dog,No,night owl,Yes,Father Stretch My Hands - Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Data Science,,,2038,,-71.0589,pepperoni,dog,Yes,night owl,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Mathematics/AMEP,,"Statistics, B.S.",53703,30.2741,120.1551,none (just cheese),dog,Yes,night owl,Maybe,Careless Whisper by Wham!
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Other,Material Science and Engineering,,53706,47.608,-122.3352,sausage,dog,No,night owl,Maybe,"************
Sixteen Tons
************
Geoff Castellucci
"
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,I am an economics major.,I may double major in data science but for now it is a minor.,53703,40.4987,-111.8188,green pepper,cat,No,night owl,Yes,Walking On A Dream by Empire of The Sun.
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Other (please provide details below).,economics,,53706,45.0938,-93.4976,Other,dog,No,no preference,Maybe,Drift Away - Uncle Kracker
COMP SCI 319:LEC004,LEC004,23,Science: Other,Economics,nope,53703,41.7407,123.4399,pepperoni,cat,No,night owl,No,Kiss Goodbye
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Business: Finance,,,54143,37.3891,-5.9845,pepperoni,dog,Yes,early bird,No,The House of the Rising Sun - The Animals
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,46.5,-94.3,sausage,dog,No,night owl,Yes,As She's Walking Away by Zac Brown Band
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Engineering: Mechanical,,,53703,40.7128,-74.006,pepperoni,dog,Yes,night owl,Yes,"Junio, Maluma
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,,54636,41.8781,-87.6298,mushroom,dog,No,early bird,Yes,Cherry by Harry Styles
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53597,44.7866,20.4489,macaroni/pasta,cat,No,night owl,Yes,bad dream baby - hippo campus
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Other (please provide details below).,Economics ,N/A,53703,43,-89,sausage,dog,No,early bird,Maybe,Cough Syrup - Young the Giant
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Biomedical,,,53706,40.7865,-74.3921,sausage,dog,No,night owl,Yes,"Fancy
Drake"
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Mechanical,,,53706,-8.6786,115.4556,pepperoni,dog,Yes,no preference,Maybe,Hotel California-Eagles
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53703,40.7131,-74.0072,pineapple,dog,Yes,night owl,Yes,Freestyle by Lil Baby
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,Deciding between Biology and Biomedical Engineering,,53706,45.2658,-111.3003,pepperoni,dog,No,night owl,No,Best of You by the Foo Fighters
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Other (please provide details below).,Economics (Minor in Data Science),,53715,43.0722,-89.4012,sausage,dog,Yes,night owl,No,Art of Living - Mat Kerekes
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,51.5035,-0.1278,macaroni/pasta,neither,No,night owl,Yes,Movin' Out by Billy Joel
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53703,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,I Know - Travis Scott
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Science: Physics,NA,Currently in astrophysics but trying to transfer into the school of Engineering for Mechanical Engineering. ,53703,21.3069,-157.8583,sausage,cat,Yes,no preference,Maybe,"It's my Life, Bon Jovi"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,,Computer Science,,Maybe majoring in data science but I might minor it.,53706,60.1282,18.6435,none (just cheese),cat,No,no preference,Yes,Mad at the World - Heffron Drive
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Science: Physics,,,53706,44.9778,-93.265,basil/spinach,cat,No,night owl,Yes,Out of My League - Fitz and the Trantrums
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Business: Other,,,53726,43,-89,pepperoni,neither,No,no preference,Maybe,post malone
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53705,31,121,pepperoni,cat,No,night owl,Yes,Something Just Like This - The Chainsmokers & Coldplay
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics and Data Science.,,53703,26.6141,-81.8258,pepperoni,dog,Yes,night owl,Maybe,"Sweet Caroline, Neil Diamond"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,25,Other (please provide details below).,Zoology Major,n/a,53719,41.8781,-87.6298,basil/spinach,dog,No,night owl,Yes,"Dirty Little Secret
Song by The All-American Rejects"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,39,116,mushroom,cat,Yes,night owl,Maybe,see you again
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Yes,Fear and Fridays - Zach Bryan
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Data Science,,,53706,40.7128,-74.006,pepperoni,dog,No,early bird,Maybe,Holy Ground by Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,mushroom,dog,No,no preference,No,"Wish You Were Here - Pink Floyd
"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53715,38.5733,-109.5498,pineapple,dog,No,early bird,No,Don't You Worry Child by Swedish House Mafia
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53715,46.2044,6.1432,sausage,dog,Yes,no preference,No,"""Woods"" by Mac Miller"
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,"Economics major, data science minor ",,53703,38.4187,27.1296,green pepper,cat,Yes,no preference,No,Piano Man by Billy Joel
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Engineering: Industrial,,,53705,24.7136,46.6753,pepperoni,dog,Yes,early bird,No,"Mohammed Abdu- Artist
Wienak ya darb al mahaba"
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,40,Data Science,"Data Science is my primary major.
I am a returning student. My past Major was AMEP. Data Science majors didnt exist then. It fits better with what I was working towards. I love probablility and statistics.",NA,53705,43,88,sausage,cat,Yes,no preference,No,"Moonlight Sonata Movement #1 played on the piano vs the radio while it rains or at night with the windows open is awesome!!!!!!
Movement #3 will blow your mind.
If you dont like any of those, louisiana harmonica is good."
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,NA,NA,53703,45.8733,-63.5841,pepperoni,cat,No,early bird,Maybe,"Revival, Zach Bryan "
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Other (please provide details below).,"Still deciding from Mathematics, Statistics, and Economics.",,53706,39.9042,116.4074,sausage,neither,Yes,early bird,Maybe,"Title: Croatian Rhapsody
Artist: Tonci Huljic"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Science: Other,Nursing,Global Health minor ,53706,43.8376,10.4951,pepperoni,dog,Yes,night owl,Maybe,Gimme! Gimme! Gimme! by ABBA
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Data Science,,Economics (Math Emphasis) or Math for Econ and finance (still thinking),53706,55.7558,37.6173,pepperoni,dog,No,no preference,Maybe,Safe and Sound by Capital Cities
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Science: Other,Atmospheric and Oceanic Sciences,,53711,48.8566,2.3522,pineapple,dog,Yes,night owl,Maybe,Lady May by Tyler Childers
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,43.0742,89.3838,macaroni/pasta,dog,Yes,night owl,Yes,Little Wing - Jimi Hendrix
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53711,43.0731,-89.4012,sausage,dog,Yes,night owl,Yes,"Encore by the Red Hot Chili Peppers
"
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Other (please provide details below).,undecided,,53703,40.7306,73.9352,basil/spinach,dog,No,night owl,Yes,"Erase Me, Lizzie McAlpine"
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53726,45.5152,122.6784,pepperoni,dog,Yes,night owl,Yes,Pennies - Smashing Pumpkins
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,,Engineering: Industrial,,,53715,44.4047,8.9291,sausage,dog,Yes,early bird,Yes,"You Don't Love Me (No, No, No) - Dawn Penn"
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53715,40.7128,-74.006,pepperoni,dog,Yes,early bird,No,"""What You Know"" by Two Door Cinema Club"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC003,18,Data Science,,,53706,18.7897,98.9844,pineapple,dog,No,night owl,Yes,"One of my favorite songs is ""Bahamas"" by HARBOUR. "
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Computer Science,,,53704,43.0739,-89.3852,pepperoni,dog,Yes,night owl,Maybe,Bang Bang - K'NAAN
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,nuclear engineering,.,53715,47.6,-122.33,sausage,dog,Yes,night owl,Yes,"smells like teen spirit
-nirvana"
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53703,39.0742,21.8243,mushroom,dog,No,night owl,Yes,Cardigan - Don Toliver
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Business: Other,"Other: Accounting
",Business- Information Systems,53726,51.5074,-0.1278,none (just cheese),dog,Yes,early bird,No,Abba- Dancing Queen
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Science: Biology/Life,I am planning to major in neurobiology.,"Data Science
total 2 majors. Neurobiology and Data Science.",53706,36.9741,-122.0288,none (just cheese),cat,Yes,no preference,Maybe,Learn To Fly - Foo Fighters
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,42.3601,-71.0589,pepperoni,cat,No,night owl,Maybe,Show No Regret by Daniel Caesar
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,17,Engineering: Mechanical,,,53706,57.6202,-133.2372,pineapple,dog,No,night owl,Maybe,I Wanna Dance with Somebody by Whitney Houston
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Science: Other,Atmospheric and Oceanic Sciences,N/A,53726,42.7,-89.8679,none (just cheese),cat,No,night owl,Maybe,Might Be Right - White Reaper
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics ,N/a,53703,25.1931,55.279,pepperoni,neither,No,early bird,No,6th Sense-Kodak Black
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Data Science,,,53706,40.4168,-3.7038,basil/spinach,dog,Yes,early bird,No,Polaris Remix Saiko ft. Mora Feid Quevedo
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,42.3601,-71.0589,pineapple,cat,No,night owl,Yes,"zz melt - Jagger Finn
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Data Science,,,53703,44.7394,-93.1258,pepperoni,dog,No,night owl,No,"Self Care, Mac Miller"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Other (please provide details below).,international studies,,53703,41.3851,2.1734,pineapple,dog,Yes,no preference,Yes,"American Pie, Don Mclean"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53706,43.039,-87.906,pepperoni,neither,No,no preference,Yes,Flashing Lights - Kanye West
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Engineering: Industrial,N/A,N/A,53715,88.384,43.0058,pepperoni,dog,Yes,night owl,Maybe,"Stick Season
Noah Kahan"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC003,19,Data Science,,,53713,35.6895,139.6917,sausage,cat,No,night owl,Yes,Its You by Keshi
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Data Science,,,53715,45.9141,-89.2558,mushroom,dog,No,no preference,Yes,"Making Eyes by Archers. Madison based metalcore band! (beware of the screamo sections to some of their songs, lol)"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Engineering: Biomedical,,,53706,22.9068,43.172,mushroom,dog,Yes,early bird,Maybe,Out of Reach- BoywithUke
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,21,Business: Actuarial,,Risk Management & Insurance,53703,43.0731,-89.4012,green pepper,dog,Yes,early bird,No,Layla by Eric Clapton
COMP SCI 319:LEC004,LEC004,24,Other (please provide details below).,Econ,,53703,39.9042,116.4074,pineapple,neither,No,night owl,Maybe,"Savage Daughter
Sarah Hester Ross"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,cat,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Business: Finance,,,53703,40.7128,-74.006,pineapple,dog,No,night owl,Yes,FE!N- Travis Scott
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Business: Finance,,I am doing a data science certificate and planning on a double major in information systems.,53703,41.8781,-87.6298,mushroom,dog,No,early bird,No,"Hozier
Cherry Wine"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,,53711,21.3069,-157.8583,sausage,dog,Yes,night owl,Yes,I KNOW ? - Travis Scott
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,18,Engineering: Industrial,,,55337,48.8566,2.3522,mushroom,dog,No,night owl,Yes,The Other Side of the Door - Taylor Swift
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,17,Data Science,None,Biology,53706,52.3702,4.8952,Other,dog,Yes,early bird,No,Counting Stars by One Republic
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53703,1.3521,103.8198,pineapple,cat,Yes,night owl,Maybe,Someone Like You by Adele
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53726,44.988,-87.243,sausage,dog,No,early bird,No,Chattahochee by Alan Jackson
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Industrial,,,53705,23.5859,58.4059,pepperoni,neither,No,no preference,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,,Data Science,,Economics,53706,1.3521,103.8198,mushroom,cat,No,night owl,Yes,Cupid by Fifty Fifty
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Business: Other,Marketing,,53703,41.3851,2.1734,basil/spinach,dog,No,no preference,No,What is Love by Haddaway
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Data Science,,,53706,43.1132,-87.9997,sausage,cat,Yes,early bird,Yes,Viva la Vida by Coldplay
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Other (please provide details below).,Urban Studies,,53715,37.9838,23.7275,pepperoni,cat,No,no preference,No,Eat The Rich by Aerosmith
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Engineering: Mechanical,,,53715,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Yes,"""If I Know Me"" by Morgan Wallen"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Engineering: Industrial,,,53706,18.3288,-66.9713,pineapple,dog,No,night owl,No,Dancing Queen - Abba
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Industrial,,,53706,43.0739,-89.3852,pepperoni,dog,No,no preference,Maybe,Be Happy by 347aidan
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Science: Biology/Life,,,53726,30.2741,120.1551,pepperoni,cat,No,night owl,Maybe,N/A. I don't have a favorite song.
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,17,Data Science,,,53706,39.9042,116.4074,sausage,dog,No,night owl,No,"Red Eye
Justin Bieber"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,40.7128,-74.006,Other,dog,Yes,night owl,Maybe,September by Earth Wind and Fire
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Other (please provide details below).,Psychology,,53706,45.9857,-123.9082,pepperoni,dog,No,early bird,No,"""Stay"" by Post Malone"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Computer Science,,,53711,43.0739,-89.3852,Other,dog,No,night owl,Yes,Little Wing by Jimi Hendrix
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Mathematics/AMEP,,English - Creative Writing,53715,41.8661,-88.107,pepperoni,neither,No,early bird,Maybe,Unending Stream of Life -- David Maslanka
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,17,Data Science,,,53711,32.2259,35.2549,none (just cheese),cat,No,night owl,No,Dakiti - Bad Bunny
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Other (please provide details below).,Computer Science,"Along with CS, I plan to do Data Science, and maybe a certificate on Marketing.",53706,29.1523,48.1212,mushroom,dog,Yes,early bird,Maybe,Dance Monkey - Tones and I
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,20,Business: Finance,,"Economics, Information Systems",53703,43.0731,-89.4012,pepperoni,dog,No,night owl,No,White Room - Cream
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Industrial,N/A,N/A,53706,51.1785,-115.5743,none (just cheese),cat,No,night owl,Yes,green light by lorde
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Science: Physics,,"Data Science, Mathematics",53706,25.2048,55.2708,pepperoni,dog,Yes,night owl,No,AM Gold by Train
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC001,20,Engineering: Mechanical,,,53925,55.9533,-3.1883,pepperoni,cat,No,early bird,Yes,Wonderwall by Oasis
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC002,19,Other (please provide details below).,economics,,53703,33.6052,-117.8886,pepperoni,dog,No,early bird,Maybe,23 chayce beckham
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Mathematics/AMEP,,,53703,45.374,-84.9556,basil/spinach,dog,Yes,night owl,Maybe,Fire and Rain by James Taylor
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Other (please provide details below).,Atmospheric and Oceanic Science,Mathematics ,53715,45.2464,-93.3028,Other,dog,Yes,early bird,Maybe,Mr. Blue Sky by Electric Light Orchestra
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Computer Science,N/A,N/A,53715,43.0731,-89.4012,sausage,dog,No,night owl,Maybe,What You Know - Two Door Cinema Club
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Statistics,,,53706,44.3,-88.4,pepperoni,dog,Yes,early bird,Maybe,"Sing About me, I'm dying of thirst by Kendrick Lamar"
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Business: Actuarial,,"Finance, Risk Management and Insurance",53715,40.015,-105.2705,pepperoni,dog,No,night owl,Yes,Sweet Child O' Mine
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Data Science,,,53711,37.664,127.9,pepperoni,dog,Yes,night owl,Yes,Never go wrong
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,48.8566,2.3522,pepperoni,dog,No,night owl,Yes,moonwalking in the Calabasas by ddg.
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC004,20,Engineering: Mechanical,,,53703,39.9481,-74.077,sausage,dog,No,night owl,Yes,Set fire to the rain - Adele
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Data Science,,,53706,25.1204,121.5103,pineapple,cat,No,early bird,No,Studio Ghibli movie music
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Business: Information Systems,NA,Real Estate,53703,18.3368,-64.7281,mushroom,cat,Yes,no preference,Yes,"You Proof, Morgan Wallen"
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC001,18,Engineering: Mechanical,,,53706,63.4195,-18.9986,none (just cheese),dog,Yes,no preference,Yes,Ticking by Zach Bryan
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Science: Biology/Life,,,53706,45.2646,-111.2533,pineapple,dog,Yes,early bird,No,Romeo and Juliet by the Dire Straits
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,37.7654,-122.4511,pepperoni,dog,No,early bird,No,All I Do - Stevie Wonder
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Astronomy/Physics,Physics,53711,43.0731,-89.4012,Other,dog,Yes,night owl,Maybe,Bank Account 21 Savage
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,Idk if this counts but I'm doing the game design certificate,53706,38.9072,-77.0369,pepperoni,cat,No,night owl,Maybe,Osmosis by Good Kid
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Industrial,,,53703,40.4168,-3.7038,sausage,dog,Yes,early bird,No,Pepas by farruco
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,,Data Science,,Statistics,53706,47.1212,-88.5645,pepperoni,dog,No,early bird,Maybe,Party in the USA
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,18,Engineering: Industrial,,,53706,43.6047,1.4442,Other,dog,Yes,night owl,Yes,Cigarettes out the window-Tv Girl
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Engineering: Mechanical,,Business ,53703,27.0993,-82.4315,pepperoni,dog,Yes,no preference,Yes,Island In The Sun
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Science: Biology/Life,,,53706,64.9631,-19.0208,mushroom,cat,No,night owl,Maybe,cardigan - Taylor Swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Other (please provide details below).,Journalism,,53706,41.3974,2.13,pepperoni,cat,Yes,no preference,Maybe,Maps - Yeah Yeah Yeahs
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,,Other (please provide details below).,Economics,,53703,47.608,122.3352,Other,cat,Yes,night owl,Yes,Revival Zach Bryan
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Statistics,Mathematics,,53706,50.8476,4.3572,pepperoni,dog,Yes,early bird,Maybe,"New Person, Same Old Mistakes - Tame Impala"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC002,19,Computer Science,N/A,N/A,53706,37.8715,112.5512,sausage,neither,Yes,no preference,Maybe,N/A
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,35.9802,-75.6421,sausage,dog,No,early bird,Yes,Gypsy - Fleetwood Mac
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Mechanical,,,53726,45.4408,12.3155,sausage,dog,No,night owl,Yes,Sultans of Swing by Dire Straights
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,40.7128,-73.9352,pepperoni,dog,Yes,night owl,Yes,Virtual Insanity - Jamiroquai
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.6403,-106.3709,sausage,dog,Yes,no preference,Maybe,Whiskey Friends by Morgan Wallen
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Engineering: Mechanical,,,53711,39.1907,-106.8192,Other,neither,No,early bird,No,Try that in a small town - Jason Aldean
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Other (please provide details below).,Undecided,,53703,40.7721,-73.9578,none (just cheese),dog,No,night owl,Yes,Company by Drake
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Data Science,,,53706,41.2974,-96.6059,sausage,dog,Yes,night owl,Yes,m.y l.i.f.e. J cole
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53703,-33.9014,151.0576,pepperoni,dog,No,no preference,Yes,Zach Bryan - Revival
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC001,21,Business: Actuarial,,statistics ,53703,23.1291,113.2644,pineapple,dog,Yes,night owl,Yes,love story Taylor swift
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Other (please provide details below).,I am currently undecided but I am seriously considering Data Science at the moment.,,53715,48.7786,2.45,Other,dog,Yes,night owl,Yes,My Eyes - Travis Scott
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC004,20,Science: Biology/Life,,,53703,-81.7136,-109.3253,pineapple,neither,No,no preference,Maybe,"capybara song
just search it and you will find"
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Computer Science,,,53715,41.8781,-87.6298,none (just cheese),dog,No,no preference,No,Too comfortable - Future
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Other,Civil Engineering,Spanish,53715,43.0731,-89.4012,pepperoni,dog,Yes,night owl,Maybe,Aint no mountain high enough - Marvin Gaye
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,22,Computer Science,,Data Science,53703,23.1291,113.2644,basil/spinach,cat,No,night owl,Yes,Bohemian Rhapsody - Queen
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53715,49.1747,-123.0194,green pepper,dog,No,night owl,Yes,"Gangsters Paradise
"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Science: Other,Double majoring in Biochemistry and Data Science.,"Data Science, Biochemistry ",53703,32.7157,-117.1611,Other,dog,Yes,night owl,Yes,Don't Stop; Fleetwood Mac
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Biomedical,,,53715,43.0389,-87.9065,sausage,dog,No,early bird,Maybe,505 - Artic Monkeys
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Industrial,,Business,53706,46.2388,-97.3636,sausage,dog,No,night owl,Maybe,Solo - Future
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Computer Science,,Data Science,53715,41.8781,-87.6298,Other,cat,No,night owl,Yes,Heartless by The Weeknd
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Statistics,,"Econ, Statistics",53706,55.9502,-3.1875,sausage,dog,Yes,night owl,Yes,Demons by Imagine Dragons
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Computer Science,,My second major is Data Science. My minors are Consulting and Leadership.,53711,34.0522,-118.2437,macaroni/pasta,cat,No,night owl,Yes,Consume by Chase Atlantic
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53706,41.9028,12.4964,sausage,dog,Yes,night owl,Yes,Secrets by The Weekend
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Business: Finance,,"Finance, Real Estate",53706,38.8707,-106.9809,sausage,dog,Yes,night owl,Maybe,Look after you - The Fray
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Engineering: Mechanical,,,53715,38.9828,-76.8819,basil/spinach,neither,No,night owl,Maybe,The Vampire Masquerade by Peter Gundry
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,18,Engineering: Other,,,53713,43.0663,-89.4049,pepperoni,dog,No,night owl,Yes,
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Mechanical,1,1,53711,37,-122,sausage,cat,No,night owl,Yes,For Whom the Bell Tolls by Metallica
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,,53706,55.6761,12.5683,sausage,cat,No,no preference,Maybe,Poe Mans Dreams by Kendrick Lamar
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Data Science,,,53703,43,87,sausage,dog,Yes,night owl,Maybe,Better ma. By Pearl jam
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,23,Other (please provide details below).,Information Science,,53703,32.0853,34.7818,pepperoni,dog,No,early bird,No,Funkytown by Lipps
"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC001,19,Business: Actuarial,,,53703,48.86,2.35,pepperoni,cat,No,night owl,Yes,imperial - j^p^n
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,,Statistics,53706,22.3964,114.1095,basil/spinach,neither,No,no preference,Maybe,"""Put Your Records On"" by Corinne Bailey Rae"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Other,Engineering Physics,,53703,44.9204,-93.2802,basil/spinach,dog,Yes,early bird,No,Houdini - Foster the People
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Data Science,,,53703,40.4168,-3.7038,basil/spinach,dog,No,night owl,Yes,19.10 by Childish Gambino
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Data Science,,data science,53703,56,51,mushroom,cat,No,night owl,Maybe,"too many night, metro boomin"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,My major is Economics with Mathematics Emphasis (BS),N/A,53705,51.5074,-0.1278,green pepper,dog,Yes,early bird,Maybe,"English language
Return of the Mack by Mark Morrison
"
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Engineering: Mechanical,,,53706,45.8,89.7,pepperoni,dog,Yes,night owl,Maybe,Hannukah Song- Adam Sandler
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Other,,,53715,45.9495,-89.151,macaroni/pasta,dog,Yes,early bird,No,More Than a Feeling by Boston
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,57703,74.8,41.33,mushroom,dog,No,night owl,No,Dancing with Myself by Billy Idol
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53715,29.9511,-90.0715,none (just cheese),cat,No,night owl,No,Shut up and Dance -Walk the moon
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,N/A,Risk Management & Insurance,53711,29.9511,-90.0715,pepperoni,dog,Yes,night owl,Maybe,The jeopardy song
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,43.0389,-87.9065,pepperoni,neither,No,night owl,Yes,"After Last Night by Bruno Mars, Anderson Paak, Silk Sonic "
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Other (please provide details below).,Accounting,Information Systems,53703,41.9028,12.4964,mushroom,cat,Yes,early bird,Yes,"Steady Love, Ben Rector"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53726,53.4645,-2.2896,pineapple,cat,Yes,night owl,Yes,"Juke Box Hero
Foreigner"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,Mathematics ,Data Science ,53715,43.0731,-89.4012,pineapple,dog,Yes,early bird,No,"""The Changing Times"" by Earth, Wind & Fire "
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,23,Engineering: Mechanical,,,53703,40,-76,Other,dog,No,early bird,Maybe,Better Now - Post Malone
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Genetics,N/A,53715,41.8781,-87.6298,Other,dog,No,night owl,Yes,Pursuit of Happiness- Kid Cudi
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Data Science,,Economics,53706,43.0722,89.4008,pepperoni,cat,Yes,night owl,Yes,Caribbean Queen (No More Love On The Run) By Billy Ocean
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Business: Other,,,53706,41.8847,-87.6166,pepperoni,dog,No,night owl,Yes,Overdue (feat. Travis Scott) by Metro Boomin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Genetics,Certificate: Data Science & Global Health,53715,41.8781,-87.6298,Other,dog,No,night owl,Yes,Pursuit of Happiness- Kid Cudi
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53706,43.0592,141.3555,sausage,dog,No,no preference,Maybe,Top of the World - Carpenters
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,,,53703,43.7696,11.2558,sausage,dog,No,night owl,Yes,Little wing Jimi Hendrix
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,43.2286,-88.1104,pepperoni,dog,Yes,early bird,Yes,"Let's Get It On, Marvin Gaye"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Engineering: Industrial,N/A,Entrepreneurship certificate. ,53715,41,87,pepperoni,dog,Yes,early bird,Maybe,Margaritaville - Jimmy Buffett
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,Possibly business finance ,53706,35.2488,24.9132,pepperoni,dog,Yes,night owl,Maybe,Letter from Houston by Rod Wave
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pepperoni,cat,No,no preference,Maybe,Virtual Insanity - Jamiroquai
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Other (please provide details below).,My major is Information Science.,I'd like to pursue the Data Science Certificate or major as well.,53703,38.1157,13.3615,mushroom,cat,No,early bird,Yes,Snooze by SZA
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53703,23,114,Other,neither,No,no preference,Maybe,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,43.1101,-87.9074,sausage,dog,No,night owl,Maybe,God's Plan- Drake
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Data Science,,,53705,-19.9173,-43.9346,sausage,dog,Yes,no preference,No,Clube da Esquina 7 - Milton Nascimento
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Data Science,,Journalism,53706,30.3935,-86.4958,macaroni/pasta,dog,Yes,night owl,Maybe,One Man Band by Old Dominion
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Computer Science,,,28431,48.8647,2.349,pineapple,dog,No,night owl,Yes,Here with me by dv4d
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Data Science,,,53703,38.9433,-94.7342,pineapple,cat,No,early bird,Yes,Sun to Me- Zach Bryan
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Other,,,53703,40.7608,111.891,pepperoni,dog,Yes,night owl,No,Alors On Danse - Stromae
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53706,40.7128,-74.006,sausage,dog,No,night owl,Yes,Impossible - Travis Scott
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Mathematics/AMEP,,,53706,64.8367,-147.7389,Other,dog,No,early bird,Yes,Back in Black by AC/DC
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,,,53701,45.1027,-93.4649,sausage,cat,Yes,early bird,Maybe,"I prefer anything country, but my favorite song right now is Life Changes by Thomas Rhett. "
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Biomedical,,,53703,35.2271,-80.8431,pineapple,dog,No,early bird,No,Amazing by Rex Orange County
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Science: Other,I am currently undecided but interested in the STEM and Business fields,,53706,37.3891,-5.9845,basil/spinach,dog,Yes,no preference,Yes,"""If I Can Dream"" by Elvis Presley"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,,Engineering: Mechanical,,,53703,50.0755,14.4378,pepperoni,neither,No,early bird,Maybe,"What You Won't Do For Love by Bobby Caldwell
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Economics,Data Science,53703,-37.8136,144.9631,pepperoni,dog,Yes,no preference,Maybe,Need to know -John Newman
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Biomedical,BME,N/A,53711,22.54,114,sausage,dog,Yes,no preference,No,A sky full of stars - coldplay
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Industrial,,,53706,36.1627,-86.7816,sausage,dog,Yes,night owl,Maybe,Like We Used To by A Rocket To The Moon
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,20,Engineering: Biomedical,,,53719,47.6062,-122.3321,pepperoni,cat,Yes,night owl,Yes,Ex-factor by Lauryn Hill
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Other (please provide details below).,Economics,,53703,53.3501,6.2662,none (just cheese),dog,Yes,night owl,Yes,Heavy Eyes by Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Business: Actuarial,,"Finance, RMI, Economics",53726,42.9765,88.1084,pineapple,dog,Yes,early bird,No,"7 & 7, Turnpike Troubadours"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,22,Other (please provide details below).,Education Studies,Psychology,53703,35.8714,128.6014,pepperoni,cat,No,no preference,Yes,Top of the World - Carpenters
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Other (please provide details below).,Economics,,53706,43,-89,pepperoni,dog,Yes,night owl,Yes,Baby Shark
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Data Science,,Mathematics,53706,37.9659,23.7325,sausage,cat,Yes,night owl,Yes,No Surprises by Radiohead
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,21,Science: Other,environmental sciences,,53703,48.1351,11.582,pepperoni,cat,No,no preference,Maybe,I lived-One Republic
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Data Science,,Mathematics,53715,41.8781,-87.6298,pineapple,dog,No,night owl,No,All My Love by Noah Kahan
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,20,Engineering: Biomedical,,,53715,36.16,-86.78,pepperoni,dog,Yes,early bird,No,I Remember Everything by Zach Bryan
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,No,early bird,Maybe,Take a Walk by Passion Pit
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Data Science,,CS,53706,26.0745,119.2965,green pepper,cat,Yes,night owl,Yes,We will Rock you
COMP SCI 319:LEC003,LEC003,27,Other (please provide details below).,Information Science,No,53705,19.7418,-155.8444,none (just cheese),cat,No,no preference,Maybe,Don't look back in anger
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,53.3456,-6.2559,basil/spinach,dog,Yes,no preference,Yes,"Stick Season, Noah Kahan"
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53703,41.3851,2.1734,pepperoni,dog,No,night owl,Maybe,The Other Side of the Door by Taylor Swift
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,22,Science: Physics,,"Mathematics in the Physical and Biological Sciences(BS), Computer Science Certificate ",53703,42.8501,-106.3252,pepperoni,cat,Yes,early bird,Maybe,Dopesmoker - 2022 Remastered Version - Sleep
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC004,20,Other (please provide details below).,Psychology and Spanish,,53701,45.891,-123.9619,basil/spinach,dog,Yes,early bird,Yes,Ella Baila Sola by Peso Pluma
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,My primary field of study is Economics but I am also pursuing a certificate in data science. ,,53703,41.8781,87.6298,pepperoni,dog,No,night owl,Maybe,Hey driver - Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,30.2672,-97.7431,Other,dog,No,no preference,No,
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Engineering: Mechanical,,,53703,39.7392,-104.9903,pepperoni,dog,Yes,night owl,Maybe,Nikes on my feet Mac Miller
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Computer Science,,,53703,40.2436,-109.01,pepperoni,dog,No,no preference,Maybe,RAVE RATS VOLUME 1: INTERDIMENSIONAL LIFE by ooxygen
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Business: Information Systems,,,53703,41.8781,-87.6298,basil/spinach,dog,Yes,night owl,Yes,Margaritaville by Jimmy Buffet
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53715,24.4539,54.3773,pepperoni,cat,Yes,early bird,No,IDK
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,21,Engineering: Other,,,53703,48.2082,16.3738,sausage,dog,Yes,night owl,No,Shallow - Lady Gaga
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Business: Information Systems,,BUS: Finance,53706,44.9537,-93.09,sausage,dog,No,night owl,No,"Baby, Justin Bieber"
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,20,Computer Science,,,53703,42.3601,-71.0589,pineapple,dog,No,night owl,Maybe,"Erase Me, Kid Cudi"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53715,44.8945,-93.6728,pepperoni,dog,No,night owl,Maybe,Hey Driver- Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53706,47.7502,-90.3356,sausage,dog,No,no preference,Yes,"Fly me to the moon, Frank Sinatra"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,,,53706,59.9139,10.7522,pepperoni,dog,Yes,night owl,Yes,Normal Girl - SZA
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC001,18,Data Science,,,53706,50.0755,14.4378,Other,dog,No,night owl,Yes,Break From Toronto - PARTYNEXTDOOR
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Business: Information Systems,,Accounting,53597,25.7617,-80.1918,pepperoni,cat,No,no preference,Maybe,Graduation - Kanye West
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,39.74,-104.98,mushroom,cat,Yes,night owl,Yes,temperature-sean paul
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,,53706,45.4408,12.3155,mushroom,cat,Yes,no preference,No,Santeria by Sublime
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53703,45.056,92.8088,basil/spinach,dog,Yes,early bird,No,More Than A Feeling by Boston
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,21,Business: Other,Marketing,,53703,41.4174,2.2122,mushroom,dog,No,early bird,Yes,One of my favorite songs is Pull me out of this by Fred Again
"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Computer Science,,,53703,35.6895,139.6917,mushroom,cat,Yes,night owl,Yes,Never gonna give you up -Rick Astley
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,37.4605,-122.1703,sausage,dog,No,no preference,Yes,saturday night
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Business: Information Systems,,Finance,53703,6.5244,3.3792,Other,cat,Yes,early bird,No,The Color Violet - Tory Lanez
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC003,20,Data Science,Comm Arts,no,53703,39.9042,116.4074,pineapple,dog,No,night owl,Maybe,For Tonight --- Giveon
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Industrial,,,53703,39.74,-104.98,mushroom,dog,Yes,night owl,No,"vienna, Billy Joel"
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Mechanical,,,53706,49.2764,-0.7056,sausage,dog,Yes,early bird,Maybe,Stairway to Heaven by Led Zeppelin
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Science: Other,economics,DS,53703,31.2304,121.4737,sausage,dog,No,night owl,Yes,“the greatest” Lana Del Rey
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53706,17.385,78.4867,pepperoni,dog,No,early bird,Maybe,Saint Pablo - Kanye West
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Science: Other,,,53703,44.424,-124.069,basil/spinach,dog,No,night owl,Yes,Waltz No. 2 by Dmitri Shostakovich
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Data Science,,,53715,42.3601,-71.0589,Other,dog,Yes,night owl,Maybe,All Your'n by Tyler Childers
COMP SCI 319:LEC003,LEC003,,Statistics,,,53715,24.18,102.98,pineapple,neither,Yes,no preference,No, Never gonna give you up
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Engineering: Industrial,,,53703,42.3601,-71.0589,mushroom,dog,No,no preference,Yes,"Heavy Eyes, Zach Bryan
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Science: Biology/Life,,,53703,35.6895,139.6917,none (just cheese),cat,No,night owl,No,Cake by the Ocean by DNCE
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,Economics,Political Science,53715,40.7128,74.006,sausage,dog,No,night owl,Yes,Stacey's Mom
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Data Science,,,53706,22.3312,103.838,pineapple,dog,Yes,no preference,Maybe,"""2 soon"" - keshi"
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Computer Science,,Intend to double major in Data Science,53706,41.8844,-87.6191,pineapple,dog,No,night owl,Yes,1998 by Monsune
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,Economics,Data Science Certificate ,53715,40.7128,-74.006,pepperoni,cat,No,night owl,Yes,"It’s all so incredibly loud, Glass Animals"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,No,no preference,Yes,Immortal by 21 Savage
"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Data Science,,,53706,41.0082,28.9784,none (just cheese),dog,No,night owl,Yes,Little Dark Age by MGMT
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Computer Science,,,53703,43.0731,-89.4012,pepperoni,dog,Yes,early bird,No,Romeo and Juliet by Peter McPoland
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Data Science,Information Systems,,53706,59.9139,10.7522,Other,dog,No,early bird,Yes,"Deep Down(ft. Never Dull) - Alok
Give it to Me - Timbaland"
COMP SCI 319:LEC002,LEC001,,Data Science,,,53593,55.9502,-3.1875,pineapple,neither,No,night owl,Maybe,I Will Survive by Gloria Gaynor
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Data Science,,Economics,53703,39.9042,116.4074,pineapple,cat,No,no preference,Yes,LMLY
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Other (please provide details below).,Biochemistry,,53706,51.5099,-0.1278,basil/spinach,dog,Yes,early bird,Yes,Burn Burn Burn by Zach Byran
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,41.8894,12.4924,sausage,dog,No,early bird,Yes,"Houstonfornication, Travis Scott"
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,,,53703,42.3249,-71.0706,sausage,dog,No,night owl,Maybe,Blood on my jeans - Juice Wrld
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Biomedical,,,53703,18.582,-68.4055,pepperoni,dog,Yes,night owl,No,Rod Wave - Call Your Friends
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Business: Finance,,,53715,41.3851,2.1734,sausage,dog,No,night owl,No,Closer By the Chainsmokers
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Science: Other,,,53706,42.3601,-71.0589,Other,dog,No,no preference,No,"Electric Feel, MGMT"
"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,40.7128,-74.006,none (just cheese),dog,No,night owl,Yes,I dont listen to music
"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Business: Actuarial,,Risk Management and Insurance,53703,42.3012,-71.3157,sausage,dog,Yes,night owl,No,Sunday by Earl Sweatshirt
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,22,Data Science,.,.,53706,37.5,127,mushroom,neither,No,early bird,No,snowman - seung hwan jeong
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,sausage,cat,No,night owl,Yes,
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,Economics,Data Science,53706,22.3964,114.1095,none (just cheese),dog,No,night owl,Yes,Black and White by Juice Wrld
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Actuarial,,"Statistics, Risk Management and Insurance, Certificate in Mathematics",53719,43.0731,-89.4012,pepperoni,dog,No,night owl,Yes,"Sovereign Light Cafe, Keane"
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC002,20,Computer Science,,,53705,31,-238,pepperoni,dog,No,night owl,Yes,Castle on the Hill - by Ed Sheeran
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53706,37.5665,126.978,pepperoni,neither,No,no preference,No,World to the wise. Matt Corman
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Engineering: Mechanical,N/A,N/A,53715,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Maybe,"STRINGS by MAX, featuring JVKE and Bazzi"
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53715,43.0389,-87.9065,sausage,dog,Yes,early bird,Maybe,paranoid- Rio da yung og
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,,,53726,41.8614,-87.6114,basil/spinach,dog,Yes,no preference,No,Wildfire by Periphery
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Economics, Data Science,53711,35.7101,139.8107,mushroom,dog,Yes,early bird,Yes,Lemon Tree by the Fools Garden
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC002,21,Engineering: Biomedical,,,53703,38.5385,-75.0617,basil/spinach,cat,Yes,early bird,Maybe,"Be young, be foolish, be happy by The Tams."
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Other (please provide details below).,"Still pretty undecided but I am between Computer Science, Data Science, and business. ",,68114,39.7392,-104.9903,pepperoni,dog,No,no preference,Maybe,All Star by Smash Mouth
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53703,35.5951,-82.5515,pepperoni,dog,Yes,night owl,Yes,Good Days - SZA
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,41.8781,-87.6298,pepperoni,cat,Yes,night owl,Yes,The Adults Are Talking - The Strokes
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,22.1565,-100.9855,pepperoni,dog,Yes,early bird,No,FE!N by Travis Scott
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53706,42.8886,88.0384,green pepper,dog,Yes,night owl,Yes,One of my favorite songs is '98 Braves by Morgan Wallen.
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Science: Biology/Life,,,53711,1.2062,103.7959,green pepper,cat,No,early bird,No,Golden Hour by Mark Lee
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,17,Other (please provide details below).,Economics,,53706,51.5074,-0.1278,pepperoni,cat,Yes,night owl,Maybe,A Sky Full Of Stars- Coldplay
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Business: Finance,,Information Systems,53715,42.3601,-71.0589,none (just cheese),dog,Yes,no preference,Maybe,December 1963 (What a Night)
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Science: Biology/Life,,,53706,36.1699,-115.1398,mushroom,dog,No,night owl,Yes,Drive By by Train.
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,44.9105,-93.3487,sausage,dog,No,early bird,No,"Center Point Road by Thomas Rhett, Kelsea Ballerini"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,,53706,37.778,-122.42,pepperoni,dog,No,night owl,No,Work Song by Hozier
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Other,Materials Science and Engineering,,53703,51.5074,-0.1278,mushroom,cat,No,early bird,Yes,Good Old-Fashioned Lover Boy - Queen
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Science: Other,Microbiology,,53705,41.8781,-87.6298,pepperoni,cat,No,early bird,No,"So Right, Shaun"
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Computer Science,,Mathematics,53703,38.707,-9.1356,none (just cheese),dog,No,no preference,Maybe,"Taylor Swift ""Paper Rings"""
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,40.7948,-73.9628,none (just cheese),dog,No,night owl,Yes,sk8er boi - arvil lavinge
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Data Science,Data Science ,Information Science,53706,44.37,-89.81,pepperoni,neither,No,night owl,Yes,How You Like That- Blackpink
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Computer Science,,,53715,43.0731,-89.4012,Other,cat,No,night owl,Yes,Feel Good Inc. by Gorillaz
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC003,20,Data Science,Data Science ,,53711,29.6548,91.1405,pepperoni,dog,No,night owl,Yes,608 by Salt
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Science: Other,Global Health,,53703,41.8781,87.6298,none (just cheese),dog,Yes,early bird,Maybe,Slide by Calvin Harris ft. Frank Ocean & Migos
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Other (please provide details below).,Information Science ,I have two minors; Data Science and Digital Studies ,53703,-87.6298,41.8781,green pepper,cat,No,early bird,Maybe,August by Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53703,39.9042,116.4074,none (just cheese),dog,No,early bird,No,If by Bread
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Languages,,,53703,39.74,-105,macaroni/pasta,cat,No,night owl,Yes,Water by Mother Falcon
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,144,-37,pepperoni,dog,No,no preference,Yes,[Excitable - Def Leppard] (https://www.youtube.com/watch?v=jqVfxWgfWhw)
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,41.3851,2.1734,sausage,dog,No,early bird,Yes,"Memories, by David Guetta."
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Engineering: Biomedical,,,53736,41.8781,-87.6298,pineapple,dog,No,night owl,Maybe,softly by clairo
"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Engineering: Mechanical,,,53715,59.9139,10.7522,mushroom,cat,Yes,early bird,No,"Perfect places
Artist: Lorde"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53715,47.0505,8.3053,sausage,dog,Yes,no preference,Yes,"Breathe Deeper, Tame Impala"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,,Information Systems (Business),53703,33.4725,-81.9644,pepperoni,dog,No,night owl,Yes,"Last Train Home, John Mayer."
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,24,Other (please provide details below).,Economics with Mathematical Emphasis ,"Data Science,",53703,42.7165,12.1116,pepperoni,dog,Yes,night owl,Yes,Tiny Dancer by Elton John
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,43.7696,11.2558,pepperoni,dog,No,early bird,No,Pride-Kendrick Lamar
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Business: Other,,,53703,35.6895,139.6917,pineapple,dog,Yes,night owl,Maybe,"Song: Cupid
Artist: FIFTY FIFTY"
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Engineering: Industrial,,,53703,41.8781,-87.6298,sausage,dog,No,early bird,No,passionfruit- drake
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53703,39.1031,-84.512,pepperoni,cat,No,early bird,Yes,Call Me Maybe - Carly Rae Jepsen
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Computer Science,,"Data Science
Game Design certificate",53702,28.7041,77.1025,pepperoni,dog,No,night owl,Yes,Better Now by Post Malone
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Science: Chemistry,,Biochemistry,20016,38.9072,-77.0369,pepperoni,dog,Yes,night owl,Yes,I would rather not answer
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Science: Other,Nutritional Sciences,,53703,41.8781,-87.6298,green pepper,cat,No,early bird,Yes,Sweet Virginia by The Rolling Stones
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53715,25.7575,-80.2515,pepperoni,dog,No,night owl,Yes,Touch the Sky - Kanye West
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Information science,Human development and family studies ,53726,45.4059,-86.9087,pepperoni,dog,No,night owl,Yes,Radio Lana Del Ray
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,Mathematics,53706,43.0731,-89.4012,pepperoni,dog,No,night owl,No,"*******************
Party Rock Anthem,
*******************
******
LMFAO
******"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,Pursuing certificate in Data Science. ,53711,35.0116,135.768,mushroom,dog,Yes,night owl,Yes,Nightcall- Kavinsky
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Business: Actuarial,,"Risk Management & Insurance, Finance",53703,37.4467,25.3289,none (just cheese),dog,No,early bird,Maybe,london boy by taylor swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Other (please provide details below).,Economics,Data Science Certificate,53711,40.7131,-74.0072,sausage,dog,Yes,no preference,No,https://www.youtube.com/watch?v=XjN8qEs_K7c&list=PLuVodMYS9xWblpzyNp9CwjERyndPTnCGV&index=6
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53706,44.9232,-93.4853,pepperoni,dog,No,night owl,Yes,Kodachrome- Paul Simon
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Data Science,,,53703,24.4539,54.3773,green pepper,neither,No,night owl,Yes,Kiss The Sky
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Engineering: Mechanical,n/a,n/a,53703,32.7157,-117.1611,pepperoni,dog,Yes,night owl,Maybe,Dancing With Myself by Billy Idol
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,17,Computer Science,,,53706,13.0827,80.2707,pepperoni,dog,No,night owl,No,Starships by Nicki Minaj
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,-,-,53715,44.1782,-88.4772,pepperoni,dog,Yes,night owl,Maybe,Just Wanna Rock - Lil Uzi Vert
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Other (please provide details below).,Economics,Marketing or Mathematics,53706,40,116,pineapple,dog,No,night owl,Maybe,Save Your Tears(Remix) --Ariana Grande& The Weekend
"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Science: Biology/Life,,"It's not a secondary major, but I'm completing a certificate in Computer Science.",53562,55.9515,-3.1895,basil/spinach,dog,No,night owl,Yes,"Second Child, Restless Child by The Oh Hellos"
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Data Science,,,53597,47.2144,14.7788,Other,cat,No,no preference,Yes,Black Summer - Red Hot Chili Peppers
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Engineering: Industrial,,,53706,24.9905,-77.3897,none (just cheese),dog,No,night owl,Yes,"East Side of Sorrow
Zach Bryan"
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Economics,,53703,42.3601,-71.0589,pepperoni,dog,Yes,night owl,Yes,Life i a Highway - Rascal Flatts
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Data Science,Double majoring in Data Science and Consumer Behavior and Marketplace Studies,Consumer Behavior and Marketplace Studies,53703,35.1796,129.0756,sausage,cat,Yes,night owl,Yes,The Kid Laroi - Always do
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Statistics,,,53706,37.5519,127.0246,pepperoni,dog,Yes,early bird,Yes,"I have few.
Madvillain : Great Day
Radiohead: Let down
The Strokes: Hard to Explain"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,basil/spinach,dog,No,night owl,Yes,Zach Bryan - I remember everything
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Engineering: Industrial,,,53726,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,Bohemian Rhapsody by Queen
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53706,43,87,pineapple,dog,Yes,no preference,Yes,Free Bird- Lynyrd Skynyrd
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,41.8781,-87.6298,basil/spinach,dog,Yes,early bird,Yes,"Blue World, Mac Miller "
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,Civil Engineering,,53715,44.513,88.013,pepperoni,dog,Yes,night owl,Yes,I Remember You- Skid Row
"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53726,43.0389,-87.9065,pepperoni,cat,No,night owl,Yes,Supercut by Lorde
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,,,53703,51.5986,-0.0752,sausage,dog,Yes,early bird,Maybe,Today is a Good Day - Ice Cube
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Engineering: Industrial,,,53706,21.593,-158.1034,none (just cheese),dog,No,early bird,Yes,Doses & Mimosas by Cherub
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Mathematics/AMEP,,Data science,53719,-27.4954,-64.8601,basil/spinach,cat,No,early bird,No,Andromeda by Weyes Blood
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Business: Finance,N/A,N/A,53703,41.87,-87.6657,pepperoni,dog,No,no preference,Maybe,The world is yours- Nas
"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53711,40.865,-73.4175,macaroni/pasta,dog,No,early bird,Maybe,Piano Man Billy Joel
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Science: Other,Psychology,,53706,22.5429,114.0596,none (just cheese),dog,Yes,no preference,Maybe,Ballad in G minor by Chopin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Mathematics/AMEP,,,53715,,40.7128,pineapple,cat,No,early bird,Maybe,a little bit yours by jp saxe
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Political Science,,53715,40.7094,-73.8049,pepperoni,dog,No,early bird,No,Deal by Jerry Garcia.
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,"I am a Mechanical Engineer interested in automotive engineering; car design, formula 1 etc.",,53706,45.677,-111.0429,sausage,dog,Yes,night owl,Maybe,"Oklahoma City, Zach Bryan"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,,,53703,42.6507,18.0944,pineapple,dog,No,night owl,Maybe,Sick Love by The Red Hot Chili Peppers
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Biomedical,,,53706,12.9716,77.5946,basil/spinach,dog,No,night owl,Yes,Right Round - Flo Rida
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Business: Information Systems,,,53715,43.0389,-87.9065,pepperoni,dog,No,night owl,Maybe,Juice World - Wasted
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Economics,,53703,-8.4095,115.1889,Other,dog,No,night owl,No,Sinônimos
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Engineering: Biomedical,,,53703,27.5268,-82.7363,pineapple,dog,No,no preference,Yes,The Last Great American Dynasty by Taylor Swift
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53726,43,-88,pepperoni,dog,No,night owl,Yes,Wonderful World by Sam Cooke
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Psychology ,Data Science Certificate,53703,40.7831,-73.9713,none (just cheese),dog,Yes,early bird,Yes,Doo Wop - Ms. Lauryn Hill
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,n/a,n/a,53703,41.9,-87.63,pepperoni,dog,Yes,early bird,No,Crocs & Wock - Babytron
"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Science: Biology/Life,,Psychology,53706,33.198,-96.615,sausage,cat,No,night owl,Maybe,Experience - Ludovico Einaudi
"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Statistics,,data science,53706,43.0759,89.3991,mushroom,dog,No,no preference,No,"running up that hill
Kate Bush"
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,63105,38.6418,-90.3342,pepperoni,dog,No,night owl,Yes,Ain't No Mountain High Enough by Marvin Gaye and Tammi Terrell.
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,20,Engineering: Mechanical,,,53703,46.0216,-90.135,sausage,dog,No,night owl,Maybe,"Kickstart my heart, Motley Crue"
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,22,Science: Chemistry,,,53129,10.7765,106.701,mushroom,cat,No,night owl,No,girls like me don't cry (remix) - thuy ft. MIN
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,25,Other (please provide details below).,Social Work,,53713,46.8537,-91.1071,tater tots,cat,No,no preference,Maybe,Mona Lisa by Dominic Fike
"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Data Science,,,53715,48.1934,-0.6643,pepperoni,dog,No,early bird,No,Renegade by Big Red Machine (ft. Taylor Swift)
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Global Health,,53715,13.2263,72.4973,mushroom,dog,Yes,no preference,Yes,Around me - Metro Boomin
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Computer Science,,,53726,41.813,-87.629,pepperoni,dog,No,night owl,Yes,Self Control by Frank Ocean
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Other (please provide details below).,Sociology!,,53703,43.0139,-83.5983,pepperoni,dog,Yes,night owl,Yes,Thneedville by John Powell and Cinco Paul
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,43.1117,-88.5011,pepperoni,dog,No,night owl,Yes,Bucket List by Mitchell Tenpenny
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,,Science: Other,Genetics and genomics ,,53711,42.78,-89.3,pepperoni,dog,No,night owl,Yes,Sunroof- Nicky Youre
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Other (please provide details below).,ECONOMIC,,53703,43,-80,none (just cheese),cat,No,night owl,Maybe,WOLVES (Hauzer)
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Pharmacology & Toxicology,Neurobiology,53706,35.0116,135.768,mushroom,cat,Yes,night owl,Maybe,All In My Head by Whethan
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,,Engineering: Industrial,,,53715,21.3069,-157.8583,tater tots,neither,Yes,early bird,No,Brian's Movie: peach pit
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Information Systems,,Supply Chain Management,53703,44.978,-93.2707,sausage,dog,No,night owl,Yes,"Upside Down, Jack Johnson"
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Computer Science,N/A,"Economics, Data Science",53706,33.749,84.388,pineapple,dog,No,no preference,Yes,Ctrl + Del by MegaGoneFree
"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Biomedical,,,53706,41.8781,-87.6298,sausage,dog,Yes,night owl,Maybe,Entropy by Daniel Caesar
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Engineering: Mechanical,,"electrical engineering
",53706,23.9314,120.5641,sausage,neither,Yes,early bird,Yes,"There is a light that never goes out, the Smiths"
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,Data Science,53715,45.4343,12.3388,pepperoni,cat,No,night owl,No,Teenagers by My Chemical Romance
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,57303,38.8339,-104.8214,pepperoni,dog,No,night owl,Yes,Run-Around by Blue Traveler
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Computer Science,,"Statistics, Data Science Certificate, Mathematics Certificate",53715,41.8781,-87.6298,Other,dog,Yes,early bird,Maybe,"FE!N
Travis Scott, Playboi Carti"
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Engineering: Industrial,,,53706,47.6062,-122.3321,sausage,dog,No,no preference,Maybe,Sunday Bloody Sunday - U2
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,21,Science: Biology/Life,,,53715,46.7867,92.1005,basil/spinach,dog,Yes,night owl,No,"Santeria, Sublime"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Data Science,,Economics,53715,34.0522,-118.2437,sausage,neither,Yes,no preference,Maybe,My favorite one will be The tale of 2 Citiez by J Cole
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Engineering: Other,,International Engineering,53703,40.4168,-3.7038,pepperoni,dog,No,night owl,No,"El Dorado - Zach Bryan
Scenes from an Italian restaurant - Billy Joel
Wouldve could’ve should’ve - Taylor swift"
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Mechanical,,,53715,48.1351,11.582,sausage,dog,No,no preference,Maybe,In Your Atmosphere (live) - John Mayer
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,42.3601,-71.0589,macaroni/pasta,cat,Yes,night owl,Yes,Colder weather- Zac brown band
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Data Science,no,Spanish,53706,45.4408,12.3155,pineapple,dog,No,early bird,No,August - Taylor Swift
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,Communication Arts,Sports Communication Certificate,53703,44.2947,90.8515,pineapple,dog,No,night owl,No,Simulation Swarm - Big Thief
"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Science: Physics,,Mathematics,53706,46.2044,6.1432,sausage,dog,Yes,early bird,Yes,The Color Violet - Tory Lanez
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,43.0731,-89.4012,none (just cheese),dog,Yes,no preference,Yes,Starboy - Weeknd
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Other,Chemical engineering,,53706,34.3416,108.9398,pepperoni,cat,No,night owl,Yes,You Belong With Me - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,18,Engineering: Mechanical,,,53706,43.0597,-88.0269,pineapple,dog,No,no preference,Yes,AA-Isaiah Rashad
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Mechanical,,,53715,41.8781,-87.6298,pepperoni,dog,No,no preference,Maybe,"Margaritaville, Jimmy Buffett"
"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Other (please provide details below).,Atmospheric and Oceanic science ,Does ROTC count?,53706,47.8864,106.9057,mushroom,dog,Yes,early bird,Yes,"I have a lot lol
Water no get enemy-Fela Kuti is probably my favorite
I also love 70s rock if you want to talk about bands from then, a little from the 80s "
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Data Science,,Personal Finance,53703,51.5074,-0.1278,sausage,dog,No,night owl,Yes,White Iverson - Post Malone
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53726,43,-89,pineapple,dog,No,early bird,No,Pretty much anything by Led Zeppelin
"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Business: Information Systems,N/A,N/A,53713,37.7749,-122.4194,sausage,dog,No,night owl,Yes,GEEKALEEK by OHGEESY
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,,,53703,40.788,-74.3921,sausage,dog,No,early bird,No,"i know you hate me, midwxst"
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Data Science,,Political science ,53715,40.7128,-74.006,basil/spinach,dog,Yes,early bird,No,Slide Away by Oasis
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Data Science,,,53706,41.9028,12.4964,pepperoni,dog,Yes,night owl,Yes,Headlines by Drake
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,43.7696,11.2558,macaroni/pasta,dog,No,no preference,Yes,I Remember Everything by Zach Bryan
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,computer science,53703,31,121,mushroom,dog,No,night owl,No,lemon tree
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Business: Finance,,,53703,43.4796,-110.7624,mushroom,dog,Yes,night owl,Yes,shout Pt. 1 and 2 - the isley brothers
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Mathematics/AMEP,,Data Science,53703,39.1031,-84.512,Other,dog,Yes,no preference,Maybe,
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Computer Science,,Data Science,53703,41.8781,-87.6298,pepperoni,dog,No,night owl,Maybe,Cupid by Fifty Fifty
COMP SCI 319:LEC002,LEC002,25,Business: Other,Business Analytics,None,53705,15.2993,74.124,tater tots,dog,No,early bird,No,Shake it off - By Taylor Swift
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,47.8112,13.055,macaroni/pasta,dog,Yes,night owl,Yes,Flashing Lights by Kanye West
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,22,Statistics,,,53703,37.535,126.99,mushroom,dog,Yes,no preference,Yes,Ghost of you by 5SOS
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Business: Other,,,53703,50.0755,14.4378,Other,dog,Yes,night owl,Yes,Dark Horse. Katy Perry
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Data Science,,,53703,40.6782,-73.9442,pepperoni,dog,Yes,night owl,No,Shiver - Coldplay
"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Engineering: Industrial,,,53706,41.9028,12.4964,basil/spinach,dog,No,night owl,Yes,Can't Tell Me Nothing by Kanye West
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Other (please provide details below).,Economics,,53703,41.8781,-87.6298,pepperoni,cat,No,early bird,No,Too many nights- Metro Boomin
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Econ BS,Certificates in DS & Consulting,53703,41.8781,-87.6298,basil/spinach,dog,No,night owl,Maybe,Shiver-Coldplay
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,21,Engineering: Biomedical,,,53726,45.17,-93.87,pepperoni,dog,No,night owl,Yes,Eye of the Tiger by Survivor
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53715,-33.8688,151.2093,pepperoni,dog,No,night owl,Maybe,Read My Mind by the Killers
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Biomedical,,Computer science or data science,53706,40.7128,-74.006,basil/spinach,dog,No,early bird,Yes,any taylor swift
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53703,37.5665,126.978,sausage,cat,Yes,night owl,Yes,
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Economics,,53703,34.4208,-119.6982,pepperoni,dog,No,early bird,No,Chicken Fried-Zac Brown Band
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Science: Biology/Life,biochemistry,certificate of data science,53711,31.23,121.47,sausage,dog,No,night owl,No,"
Taylor Swift
Love Story"
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Data Science,,Econ,53715,42.3601,-71.0589,sausage,dog,No,night owl,No,Let it Happen Tame Impala
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,21,Other (please provide details below).,Economics,Certificate in Data Science,53703,47.6062,122.3321,pepperoni,dog,No,no preference,Yes,Elton John- Funeral for a Friend/Love Lies Bleeding
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,21,Data Science,,,53715,43.215,-87.9955,Other,dog,Yes,night owl,Yes,
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Information Systems,,"Risk Management and Insurance, Legal Studies",53715,41.8781,-87.6298,mushroom,cat,No,night owl,Yes,"All too Well, Taylor Swift"
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Mathematics/AMEP,I'm a double-major in Math and Computer Science. ,I'm a double-major in Math and Computer Science. ,53706,43.073,-89.401,pepperoni,dog,Yes,no preference,Yes,Listen to the Music: The Doobie Brothers
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Engineering: Mechanical,,,53707,43.0779,-89.3902,pepperoni,dog,No,early bird,No,"Revival, Zach bryan "
"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Data Science,,Economics Major/ Data Science Minor,53703,41.2959,73.7933,none (just cheese),dog,Yes,night owl,Maybe,Sky Full of Stars- Coldplay
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Business: Information Systems,,Business: Finance,53715,39.7392,-104.9903,sausage,cat,No,night owl,Yes,Lose My Mind - Jai Wolf
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Finance,,Econ,53715,21.1619,-86.8515,pepperoni,cat,No,night owl,Maybe,Just the two of us - Washington Jr.
"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,45.1865,-87.1239,pepperoni,dog,No,no preference,No,Hey Driver- Zach Bryan
"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Computer Science,,,53706,36.2048,138.2529,pineapple,dog,Yes,night owl,Maybe,Pretender by OFFICIAL HIGE DANDISM
"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,20,Business: Information Systems,,,53598,43.0731,-89.4012,pepperoni,dog,Yes,night owl,Yes,Holiday - Green Day
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,22,Engineering: Other,NA,NA,53703,41.8781,-87.6298,mushroom,cat,Yes,night owl,Maybe,Dancing Queen by ABBA
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53715,43.7696,11.2558,pepperoni,dog,No,early bird,Maybe,Last Nite-Strokes
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Engineering: Industrial,,,53706,35.6895,139.6917,pepperoni,neither,Yes,early bird,Maybe,"It will Rain - Bruno Mars
Blank Space - Taylor Swift
Right There - Ariana Grande
Stuck with U - Ariana Grande & Justin Bieber "
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Business: Finance,,,53706,37.9753,23.7361,none (just cheese),dog,No,night owl,Maybe,"Homecoming, Kanye West"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,Economics with certificate in data science ,,53715,45.4408,12.3155,Other,dog,No,early bird,No,Chris Stapleton White Horse
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53703,42.4173,27.6964,sausage,cat,No,no preference,Yes,S91 by Karol G
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Industrial,,,53703,38.288,-85.67,none (just cheese),dog,Yes,night owl,Yes,"Waiting on the world to change, John Mayer"
"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Information Systems,-,Considering another business major as well as a language certificate,53706,44.3289,-88.5391,pepperoni,dog,No,night owl,Maybe,Surf - Mac Miller
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Engineering: Mechanical,,,53706,43.4782,-110.7627,sausage,dog,Yes,no preference,Yes,Something in the Orange - Zach Bryan
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,17,Data Science,,,53706,55.9533,3.1883,sausage,dog,Yes,early bird,Yes,Build Me Up Buttercup by The Foundations
"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,35.6528,139.8395,pepperoni,dog,No,night owl,Maybe,"For my hand, Burna Boy feat. Ed Sheeran "
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Other (please provide details below).,Economics,,53703,40.4406,-79.9959,sausage,dog,Yes,early bird,Maybe,Take Me Home Country Roads - John Denver
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,22,Science: Biology/Life,,"Data Science, Global Health ",53726,44.9765,-93.2652,pepperoni,dog,Yes,night owl,No,Where The Streets Have No Name - U2
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Other (please provide details below).,I intend to pursue a double major with Neurobiology and Data Science.,-,53706,25.1972,55.2744,mushroom,cat,No,no preference,Yes,Crazy by Aerosmith
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Business: Actuarial,,Data science,53706,40.7128,-74.006,basil/spinach,cat,No,early bird,No,Timeless by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Biology/Life,N/a,Certificate in Data Science,53715,43.0739,-89.3852,pineapple,dog,No,night owl,Yes,Hold on We're Going Home by Drake
"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Industrial,,,53703,41.3894,2.1588,macaroni/pasta,dog,Yes,no preference,No,"Brazil- Declan Mckenna
British Bombs- Declan McKenna"
COMP SCI 319:LEC001,LEC001,26,Science: Other,,,53560,55.8931,-3.0666,pepperoni,dog,No,night owl,No,I'm Gonna Be (500 Miles) by the Proclaimers
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,GIS/Cartography,"Political Science, Data Science",35715,-88.99,45.1686,pepperoni,dog,Yes,early bird,Yes,With Arms Wide Open - Creed
"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Other (please provide details below).,"My primary major is Economics.
",and my second major is Data Science.,53715,17.385,78.4867,mushroom,dog,No,no preference,Yes,"Say you won't let go- James Arthur
GASOLINA- Daddy Yankee"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,,53705,1.3521,103.8198,Other,cat,No,no preference,Yes,"Held Up in New York City - Mia Lailani, Devan Ibiza"
"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Business: Actuarial,,Risk management,53706,39.1333,117.1833,mushroom,cat,No,night owl,Yes,"One of my favorite songs is ""Maroon .45"" by ME3CH."
"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Other (please provide details below).,economics,statistics,53706,39.9042,116.4074,mushroom,neither,Yes,night owl,Yes,
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,22,Science: Biology/Life,,,53703,50.0755,14.4378,sausage,dog,Yes,early bird,No,Hundred by Khalid
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53706,37.5665,126.978,sausage,dog,No,early bird,Maybe,Don't look back in anger- Oasis
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Data Science,,Economics,53703,87.6298,41.8781,sausage,dog,No,early bird,Yes,"Franklins Tower, Dead and Company 7/14/2018"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pineapple,dog,Yes,night owl,Maybe,PRIDE. by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Data Science,,,53711,44.5133,-88.0158,sausage,dog,Yes,early bird,No,When the Levee Breaks - Led Zeppelin
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Computer Science,,,53703,43.771,11.2486,pepperoni,dog,Yes,early bird,Yes,Paranoid - Black Sabbath
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Business: Information Systems & Data Science Double Major,N/A,53706,44.5133,-88.0133,sausage,dog,No,early bird,Maybe,Another is Waiting - The Avett Brothers
"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Business: Finance,,,53703,41.8781,87.6298,pepperoni,dog,No,night owl,Maybe,rich spirit by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,,Computer Science,,,53705,55.6761,12.5683,pepperoni,dog,No,night owl,Yes,Drunk in the morning - Lukas Graham
"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Computer Science,,,53703,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Someday - The Strokes
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Science: Biology/Life,,,53706,32.22,-80.75,pepperoni,dog,Yes,no preference,Maybe,Homegrown by Zac Brown Band
"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,41.8781,87.6298,Other,dog,Yes,early bird,Yes,Constellations - Jack Johnson
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,34.0549,118.2426,sausage,dog,Yes,night owl,Yes,"Come On Eileen
By Dexys Midnight Runners "
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,40.7128,74.006,pepperoni,cat,Yes,early bird,Yes,Free Bird - Lynyrd Skynyrd
"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53703,40.416,-3.703,pepperoni,dog,Yes,no preference,Maybe,"come as you are, nirvana"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Clarity by Zedd
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics Major ,Data Science Certificate or Minor,53706,22.3964,114.1095,sausage,dog,Yes,night owl,Maybe,The Less I know The Better - Tame Impala
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Engineering: Mechanical,,,53715,44.9778,-93.265,pineapple,dog,Yes,early bird,No,Superposition Daniel Caesar
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Science: Chemistry,,,53706,41.3851,2.1734,basil/spinach,dog,Yes,early bird,No,Don't Stop Believing by Journey
"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,59.9115,10.7579,pepperoni,dog,Yes,no preference,Maybe,Apologize - OneRepublic
COMP SCI 319:LEC001,LEC001,23,Science: Other,,,53726,43.0389,-87.9065,sausage,dog,No,early bird,Yes,Homesick - Noah Kahan
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Science: Biology/Life,,,53706,46.7867,92.1005,pineapple,cat,Yes,early bird,Yes,Birdhouse In Your Soul (They Might Be Giants)
"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,44,-94,pineapple,dog,Yes,early bird,Maybe,Rick Astley- Never Gonna Give You Up
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Data Science,,,53705,65.6466,-21.643,macaroni/pasta,cat,Yes,no preference,No,Choose Life by Poorstacy
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Computer Science,,,53706,40.7128,-74.006,pineapple,cat,No,early bird,No,Love Story- Taylor Swift
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Mathematics/AMEP,,,53703,,,pepperoni,neither,No,night owl,Yes,"雪distance - Capper
"
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,17,Data Science,,,53706,51.7692,19.4018,basil/spinach,cat,Yes,night owl,Maybe,Eventually by Tame Impala
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,17,Data Science,,,53706,48.857,2.352,none (just cheese),dog,Yes,night owl,No,Clean by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,My primary major is economics and I will major in Business (Actuarial Science or Accounting).,"As a secondary major, I have an interest in Data Science.",53703,36,127.7,Other,dog,Yes,night owl,Yes,"Vancouver - BIG Naughty
"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,37.9598,-104.8202,mushroom,dog,Yes,night owl,Maybe,Hotel California by the Eagles
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,40.628,14.485,sausage,dog,No,night owl,Yes,No More by Jazzmeia Horn
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,43.4203,-88.1865,none (just cheese),dog,No,early bird,Yes,Style - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,21,Computer Science,,,53703,40.7128,-74.006,mushroom,cat,Yes,night owl,Maybe,"Welcome to New York, Taylor Swift"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,25.2048,55.2708,pineapple,cat,No,night owl,Yes,90210 - Travis Scott
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Science: Biology/Life,,,53706,39.6636,105.8792,basil/spinach,dog,Yes,early bird,No,We'll All Be Here Forever by Noah Kahan
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC001,18,Engineering: Mechanical,,,53706,44.5937,-93.4329,pepperoni,dog,No,no preference,Yes,One Beer - MF DOOM
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,"I'm a Dairy Science major, but am pursuing a Data Science certificate.",,53726,42.36,71.1,sausage,dog,No,night owl,Yes,Secrets by One Republic
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Business: Finance,,Information systems ,53706,3.139,101.6869,none (just cheese),cat,No,no preference,Yes,"Knocking on Heavens Door, Guns n roses"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53703,,,pepperoni,dog,No,early bird,Maybe,This Town's Been Too Good To Us by Dylan Scott
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Engineering: Other,,,53706,44.9608,-89.6302,none (just cheese),dog,Yes,night owl,No,Need a Favor - Jelly Roll
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,21,Engineering: Biomedical,,,53703,32.7765,-79.9311,pepperoni,cat,No,no preference,No,Revival - Zach Bryan
"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53706,38.9072,-77.0369,sausage,dog,No,night owl,Yes,White Lies- Max Frost
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Other (please provide details below).,Education Studies,,53703,30.5728,104.0668,mushroom,cat,No,no preference,Maybe,Hindenburg lover-Anson Seabra
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,21,Statistics,,,53715,30,20,pineapple,cat,No,night owl,Yes,hello from adele
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53706,44.3009,-90.9505,none (just cheese),cat,Yes,early bird,No,"All along the watchtower, Jimi Hendrix"
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC005,18,Engineering: Industrial,,,53706,30.3539,97.7702,sausage,cat,Yes,early bird,Maybe,Pink + White by Frank Ocean
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,40.4855,-106.8336,pineapple,neither,No,night owl,Maybe,"Viva La Vida - Coldplay
"
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,"Economics, English",53706,60.3913,5.3221,sausage,dog,Yes,no preference,Yes,Before the Sun - Greg alan isakov
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53703,40.7128,-74.006,basil/spinach,cat,No,early bird,Yes,"Moonlight on The River, Mac Demarco"
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Engineering: Biological Systems ,,53703,43.0731,-89.4012,pineapple,dog,Yes,early bird,No,Fast Car by Luke Combs
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,,53706,25.7617,-80.1918,pepperoni,dog,Yes,night owl,Yes,Favorite Song Toosii
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,32,Other (please provide details below).,Consumer Behavior and Marketplace Studies,"Digital Studies, Business Cert for non-business majors",53719,23.1136,-82.3666,Other,dog,No,no preference,Yes,Arctic Monkey’s - Do I wanna Know ( Dua Lipa Cover)
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC003,,Engineering: Industrial,,,53703,36.058,103.79,pineapple,cat,No,night owl,No,<<Love Story>>; Taylor Swift;
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,Spanish,53703,37.3891,-5.9845,basil/spinach,cat,Yes,early bird,No,Everybody wants to rule the world by Tears for fears
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53715,38.6973,-9.4218,pepperoni,dog,No,night owl,Yes,Go Your Own Way - Fleetwood Mac
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,n/a,n/a,53706,42.1491,-84.0202,sausage,dog,Yes,night owl,Yes,TNT by AC DC
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Biomedical,,,53703,35.6895,35.6895,mushroom,dog,No,night owl,Yes,Threat to Joy- Strokes
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,17,Data Science,,I am double majoring in data science and economics.,53706,41.7851,-88.2471,basil/spinach,dog,No,night owl,Yes,Back to December by Taylor Swift
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Science: Biology/Life,,,53706,44.98,93.27,sausage,cat,Yes,night owl,Yes,Fade Into You - Mazzy Star
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53590,47.9972,7.8538,pepperoni,dog,No,early bird,Maybe,Bohemian Rhapsody - Queen
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Engineering: Biomedical,,,53706,41.9,12.5,Other,neither,Yes,night owl,Maybe,Getaway car
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Engineering: Mechanical,,,53706,45.61,-94.21,basil/spinach,dog,Yes,no preference,No,Everybody Wants to Rule the World - Tears For Fears
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,,Engineering: Mechanical,,,53703,40.4168,3.7038,pepperoni,cat,No,early bird,No,One of then is Find Your Flame by SEGA
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,,53706,35.6895,139.6917,pepperoni,dog,Yes,night owl,Yes,Hotel California - Eagles
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Data Science,,Spanish,53706,46.7828,-92.1055,none (just cheese),dog,Yes,early bird,Yes,Stacy's Mom
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53703,40.7128,-74.006,mushroom,dog,Yes,early bird,No,All my love - Noah Kahan
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Engineering: Industrial,,,53706,32.8262,-117.2642,pineapple,dog,No,night owl,Maybe,"Down Low, Dombresky"
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Undecided ,,53706,64.1472,-21.9424,pepperoni,dog,Yes,no preference,Maybe,i by Kendrick Lamar
"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Economics w data science certificate,,53703,40.7306,-73.9352,pepperoni,dog,Yes,night owl,Yes,Schizo - Travis Scott & Young Thug
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Business: Other,Management & Human Resources,Data Science,53706,10.8231,106.6297,mushroom,dog,No,night owl,Maybe,Flowers - Miley Cyrus
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53534,43.0739,-89.3852,sausage,dog,No,no preference,Yes,All I wanna do-Jay Park
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,41.8781,-87.6298,Other,dog,Yes,no preference,Yes,surf - mac miller
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,23.7142,-166.205,pepperoni,dog,No,night owl,Maybe,Somthing in the Orange (Zack Bryan)
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,N/A,53706,40.5509,14.2429,pepperoni,cat,No,early bird,Yes,"Any Taylor Swift Song, one including Fearless"
"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Engineering: Mechanical,,,53562,19.0533,-104.3161,macaroni/pasta,dog,No,early bird,Yes,Escape (The Pina Colada Song) - Rupert Holmes
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pineapple,cat,Yes,night owl,Yes,Anything by Taylor Swift (must be Taylor's Version if the album is available)
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Industrial,,Data Science ,55424,21.1743,-86.8466,pineapple,dog,Yes,no preference,Maybe,Some nights - fun.
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Other (please provide details below).,I am a sociology major.,A few minors but no other majors at this point. ,53726,43,-88,green pepper,dog,Yes,night owl,Yes,Natural Mystic - Bob Marley
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Engineering: Industrial,,,53705,34.6819,112.4681,green pepper,neither,No,night owl,Yes,"Komm, süßer Tod (come on sweet death)"
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53706,-22.9068,43.1729,Other,dog,Yes,night owl,Yes,Red Red Wine by UB40
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Engineering: Mechanical,,,53711,44.9932,-93.5635,sausage,dog,Yes,night owl,Yes,Chan Chan; Bueno Vista Social Club
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,economics,political science,53715,41.9,12.5,basil/spinach,cat,No,early bird,No,sundress Asap Rocky
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Computer Science,,Mathematics,53703,,,pineapple,cat,No,night owl,Maybe,"Blinding Lights, The Weeknd "
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Science: Biology/Life,,,53706,23.0033,120.2588,none (just cheese),dog,No,no preference,Yes,It's a Kind of Magic - Queen
"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,20,Data Science,,,53706,34.4208,-119.6982,pineapple,dog,No,early bird,Yes,Cigarette Daydreams by Cage the Elephant
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,No,night owl,Yes,Can't Tell Me Nothing - Kanye West
"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Other (please provide details below).,Political Science,data science,53706,39.2783,-74.5755,sausage,dog,No,night owl,Yes,Goodmorning by bleachers
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC001,19,Other (please provide details below).,A double major in Data Science and Economics,,53706,39.0742,21.8243,sausage,dog,No,no preference,Yes,New Romantics - Taylor Swift
"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Engineering: Mechanical,,,53715,39.9527,-75.164,sausage,dog,Yes,early bird,Yes,Golden Hour- jVke
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,I am also planning to major in Business Management.,53706,35.6528,139.8395,pepperoni,dog,No,night owl,Maybe,"I do not really have a specific favorite song, but my all-time favorite genres are rocks with bands like Queens, The White Stripes, Linkin Park,...But mostly I listen to unlyrical songs like phonk and lofi depending on the mood. "
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,21,Science: Physics,,,53726,43.0731,-89.4012,green pepper,cat,No,night owl,No,Gymnopedie No. 1 - Eric Satie
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.6003,-105.9831,sausage,dog,No,night owl,Yes,Istanbul (Not Constantinople)
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Industrial,,,53715,19.7193,-156.0013,pepperoni,dog,No,night owl,Yes,Cuccurucucù by Franco Battiato
"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Other (please provide details below).,Economics,Possibly mathematics,53706,42.3601,-71.0589,macaroni/pasta,dog,No,night owl,Yes,Castle on the Hill by Ed Sheeran
"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Other (please provide details below).,Information Science ,Political Science,53715,41.8781,-87.6298,pepperoni,cat,Yes,early bird,No,Both - Tiesto & BIA
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Communication,,53715,45.0557,-92.8101,basil/spinach,dog,No,no preference,Maybe,"Meet me in the morning, Bob Dylan"
"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53706,35.6067,-220.2139,pepperoni,cat,No,night owl,Yes,24k magic- Bruno Mars
"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,,53703,-36.8485,174.7633,pepperoni,cat,No,night owl,Yes,Eastside Banny Blanco
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Business: Actuarial,,,53703,-33.8688,151.2093,pepperoni,dog,Yes,night owl,Yes,I Remember Everything by Zach Bryan
"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC005,18,Data Science,,,53703,40.7128,74.006,none (just cheese),dog,No,night owl,Yes,Revival by Zach Bryan
COMP SCI 319:LEC002,LEC002,30,Science: Other,Geoscience,,53703,-63.9755,-57.9712,basil/spinach,dog,Yes,early bird,Yes,Un Dia - Juana Molina
"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Engineering: Mechanical,na,na,53704,,,sausage,cat,No,early bird,Maybe,
"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pepperoni,cat,No,night owl,Yes,No Plan By Hozier
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,23,Computer Science,,,53705,30.2741,120.1551,macaroni/pasta,neither,Yes,no preference,No,soaring-TomLeevis
"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53726,18.15,-65.8,sausage,dog,Yes,night owl,Maybe,Its all coming back to me now by Celine Dion
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Biology/Life,,,53715,39.9042,116.4074,sausage,cat,No,night owl,Maybe,"[米津玄師 - アンビリーバーズ , Kenshi Yonezu - Unbelivers] (https://www.youtube.com/watch?v=naJcqMBbAn4)"
"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Statistics,,mathematics ,53706,35.86,104.2,sausage,cat,No,no preference,Maybe,Lemon Tree by Fools Garden
"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,Mathematics,53706,41.8781,-87.6298,pepperoni,cat,No,no preference,Yes,Kon Queso by MF DOOM
COMP SCI 319:LEC001,LEC001,22,Computer Science,,,53703,45.576,13.8475,pepperoni,dog,No,early bird,No,i dont know
"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,35.6895,139.6917,pepperoni,dog,Yes,early bird,Yes,Levels - Sidhu Moosewala
"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53703,29.6548,91.1405,green pepper,cat,Yes,early bird,No,Perfect by Ed Sheeran
"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics,,53715,64.1472,-21.9424,Other,cat,No,no preference,Maybe,
{
"msg": "Successfully got the latest messages!",
"page": 1,
"messages": [
{
"id": 393,
"poster": "q",
"title": "test2",
"content": "hello!",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-20T00:52:09.000Z"
},
{
"id": 391,
"poster": "q",
"title": "test1",
"content": "hello!",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-20T00:48:19.000Z"
},
{
"id": 375,
"poster": "newAnkit",
"title": "test",
"content": "test",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T22:19:52.000Z"
},
{
"id": 357,
"poster": "car",
"title": "Test",
"content": "vroom",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T21:32:50.000Z"
},
{
"id": 354,
"poster": "user",
"title": "test",
"content": "test",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T21:31:17.000Z"
},
{
"id": 350,
"poster": "user",
"title": "Test",
"content": "Test",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T21:17:04.000Z"
},
{
"id": 349,
"poster": "testaccmc1234",
"title": "Testing Testing 7 8 9",
"content": "Even MORE generic content",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T21:11:48.000Z"
},
{
"id": 348,
"poster": "testaccmc1234",
"title": "Testing Testing 4 5 6",
"content": "More generic posting content",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T21:08:56.000Z"
},
{
"id": 345,
"poster": "user",
"title": "I need this to be a generic title",
"content": "I need this to be generic content",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T20:19:33.000Z"
},
{
"id": 323,
"poster": "testtesttest1",
"title": "testtets",
"content": "tttt",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T18:17:04.000Z"
},
{
"id": 320,
"poster": "chase",
"title": "UI is cool",
"content": "i <3 react",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T18:04:36.000Z"
},
{
"id": 314,
"poster": "k.dot",
"title": "poem",
"content": "so I went running for answers",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T17:24:32.000Z"
},
{
"id": 313,
"poster": "k.dot",
"title": "poem",
"content": "The evils of lucy was all around me",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T17:24:22.000Z"
},
{
"id": 312,
"poster": "k.dot",
"title": "poem",
"content": "I didn't want to self destruct",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T17:24:03.000Z"
},
{
"id": 311,
"poster": "k.dot",
"title": "poem",
"content": "found myself screaming in a hotel room",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T17:23:51.000Z"
},
{
"id": 310,
"poster": "k.dot",
"title": "poem",
"content": "resentment that turned into a great depressions",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T17:22:17.000Z"
},
{
"id": 309,
"poster": "k.dot",
"title": "poem",
"content": "abusing my power full of resentment",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T17:22:01.000Z"
},
{
"id": 308,
"poster": "k.dot",
"title": "poem",
"content": "sometimes I did the same",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T17:21:43.000Z"
},
{
"id": 307,
"poster": "k.dot",
"title": "poem",
"content": "I remember you was conflicted misusing your influence",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T17:21:14.000Z"
},
{
"id": 302,
"poster": "g",
"title": "test",
"content": "r",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T17:11:47.000Z"
},
{
"id": 297,
"poster": "b",
"title": "Test",
"content": "Hello",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T16:10:44.000Z"
},
{
"id": 295,
"poster": "w",
"title": "hello",
"content": "hello",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T16:09:42.000Z"
},
{
"id": 271,
"poster": "krirk1",
"title": "Good luck everyone",
"content": "You got this!",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T07:09:12.000Z"
},
{
"id": 262,
"poster": "robert",
"title": "test again",
"content": "test again",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T06:32:45.000Z"
},
{
"id": 261,
"poster": "robert",
"title": "test",
"content": "test",
"chatroom": "Bascom Hill Chatters",
"created": "2023-10-19T06:31:59.000Z"
}
]
}
\ No newline at end of file