Question: 6 . 1 1 LAB: Course grade statistics ( pandas ) Given the file name of a . tsv file read from user input containing

6.11 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 3 through 5 should only require one function for each step. Ex. Finding the max of each assignment uses max ()
Append . to_string () to the end of the function call in order to silence an extraneous line that occurs at the end of the output.
For steps 3,4, and 5, the functions used will require the parameter numeric_on 1y= True to be passed to specify that only numbers
will be calculated (as the input file contains strings for student names).
 6.11 LAB: Course grade statistics (pandas) Given the file name of

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!