Question: 6 . 1 1 LAB: Course grade statistics ( pandas ) Given the file name of a . tsv file read from user input containing
LAB: Course grade statistics pandas
Given the file name of a tsv file read from user input containing student names and the respective course assignment grades, complete a
program that performs the following tasks:
Read the input file as a pandas dataframe.
Output the students' names and grades in descending order of Finals scores.
Output each assignment's max score.
Output the median and average of each assignment's scores.
Output the standard deviation of each assignment's scores.
NOTES:
Steps through should only require one function for each step. Ex Finding the max of each assignment uses max
Append tostring to the end of the function call in order to silence an extraneous line that occurs at the end of the output.
For steps and the functions used will require the parameter numericon True to be passed to specify that only numbers
will be calculated as the input file contains strings for student names
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
