Final answer:
To complete the program, read the input file as a pandas dataframe, sort the dataframe by the 'finals scores' column in descending order, find the max score, median, average, and standard deviation of each assignment's scores, and output the results.
Step-by-step explanation:
To complete the program tasks, you can follow these steps:
- Read the input file using pandas and store it as a dataframe.
- Sort the dataframe by the 'finals scores' column in descending order.
- Find the max score for each assignment using the 'max()' function.
- Calculate the median and average of each assignment's scores using the 'median()' and 'mean()' functions respectively.
- Calculate the standard deviation of each assignment's scores using the 'std()' function.
- Output the results for each of the above calculations using the 'to_string()' function.
Remember to pass numeric_only=True as a parameter to the functions used in steps 3 through 5 to specify that only numbers will be calculated.
Here's an example code snippet to help you:
import pandas as pd
file_name = input()
df = pd.read_csv(file_name, sep=' ')
df.sort_values('finals scores', ascending=False, inplace=True)
max_scores = df.max(numeric_only=True).to_string()
median_scores = df.median(numeric_only=True).to_string()
average_scores = df.mean(numeric_only=True).to_string()
std_deviation_scores = df.std(numeric_only=True).to_string()
print('Max scores:', max_scores)
print('Median scores:', median_scores)
print('Average scores:', average_scores)
print('Standard deviation scores:', std_deviation_scores)