I have a list of arrays, like this:
data = [([-1.01201792, 2.5, 0.68665077]), ([-2.5, 0.5, 2.68189991]), ([-2.5, 3.5, 5.92202221]), ([-2.5, 5.5, 10.19026759]), ([-2.5, 6.5, 15.30091085])]
I am trying to get the absolute maximum value of each array without considering the second value in the array. For example, in the first array: ([-1.01201792, 2.5, 0.68665077]), without considering 2.5, the absolute maximum is 1.01201792.
I hope the outcome looks like this:
result = [1.01201792, 2.68189991, 5.92202221, 10.19026759, 15.30091085]
How can I achieve this?