Company: Sigmoid_9dec
Difficulty: medium
Problem Description You have been asked to measure how much friction exists within a group of people. A dataset is supplied through a URL pointing to a CSV file, which has a header row and three columns: Age (Numeric) Category (Categorical: 'A' or 'B') Tension (Categorical: 'H', 'L', or 'M') Write a Python function that reads this CSV data and computes the following: The average Age broken down by Tension level, listed in the exact order 'H' , 'L' , 'M' . Round each average to two decimal places and place them into a list. The average Age broken down by Category value, listed in the exact order 'A' , 'B' . Round each average to two decimal places and place them into a list. Return a Result object built from these two lists. Input url (string): A string representing the URL of the CSV dataset. Output Return an instance of the Result class containing: output1 : A list of floats representing the mean ages for Tension levels 'H', 'L', and 'M'. output2 : A list of floats representing the me