Company: Sigmoid_9dec
Difficulty: medium
Problem Description You are working on a project to analyze the amount of tension that exists among a group of individuals. You are provided with a dataset accessible via a URL pointing to a CSV file. The CSV file contains a header row and the following three columns: Age (Numeric) Category (Categorical: 'A' or 'B') Tension (Categorical: 'H', 'L', or 'M') Your task is to write a Python function that processes this CSV dataset to calculate the following: The mean Age for each Tension level in the exact order: 'H' , 'L' , and 'M' . Round each mean to two decimal places and store them in a list. The mean Age for each Category value in the exact order: 'A' , and 'B' . Round each mean to two decimal places and store them in a list. You must return a Result object initialized with 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 lev