def calculate_max_value(data):
    """
    Calculate the maximum value from a list of tuples.

    Args:
        data (list): A list of tuples containing values to compare.

    Returns:
        tuple: The tuple with the maximum value.
    """
    return max(data, key=lambda x: x[1])