👤

the cars dataset has three columns giving the quality, machining angle, and machining speed of 18 cars. write a program that performs the following tasks: load the data cars.csv into a data frame called cars df. subset the first usernum rows of the data frame into a new data frame. find and print the maximum values of each column in the subset. ex: if the input is: 5 the output is: quality 5 speed 4 angle 3 dtype: int64