def floatify(data):
    """
    Function to convert string to float in a list of tuples.

    Args:
        data (list): List of tuples containing target data.

    Returns:
        list: List of tuples with string values converted to floats.
    """
    return [(t[0], float(t[1]), t[2], t[3]) for t in data]