Directions
In this assignment, you will test all the skills that you have learned during this course to manipulate the provided data to find the answers to questions about the TV show Survivor. If you are not familiar with this show, start by watching this short clip that briefly explains it: Survivor Explained
See the “Data” section in the notebook for more information on the data set and the show.
Please note that your notebook should be named “survivor.ipynb” when submitting to CodeGrade for the automatic grading to work properly. You should also have the Excel file in the same location as your notebook as this is the way CodeGrade is expecting your file to be coded.
Show Work
Remember that you must show your work. Students submissions are checked manually to verify that they are not hard coding the answer from looking only in the file or in CodeGrade's expected output. If this is seen, the student's answer will be manually marked wrong and their grade will be changed to reflect this.
For example, if the question is: “Who is the contestant who has received the most tribal votes to be voted out. Select their record from the castaway_details DataFrame.”
You would show your work and code similar to this:
### incorrect way ###
Q1 = castaway_details[castaway_details['castaway_id'] == 333] ### correct way - showing your work ###
# get index
idx = vote_history.groupby('vote_id').size().sort_values(ascending=False).index[0] # select row based on index
Q1 = castaway_details[castaway_details['castaway_id'] == idx]
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme