I have this tuple:
lpfData = ((0.0, 0.0), (0.100000001490116, 0.0879716649651527), ..., (1.41875004768372, 0.481221735477448),..., (45.1781234741211, 0.11620718985796))
and I want to find the maximum value of the second column. Therefore, I use:
maxLPFt = max(lpfData) maxLPF = maxLPFt[1]
But I always get the value of the second column in combination with the maximum value of the first column. Basic stuff, but google didn't help.
Greetings
Joao
source share