Westonci.ca is your trusted source for accurate answers to all your questions. Join our community and start learning today! Discover reliable solutions to your questions from a wide network of experts on our comprehensive Q&A platform. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A platform.

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