I'm processing a TSV file with a hundred columns and I would like to pick some of them based on their last values (ie. the value on the last row).
For instance with the following data (and I let you imagine 96 more columns!):
Year An Ti Gi Na
2000 5 10 2 3
2010 3 2 5 7
2020 6 3 5 6
I would like to select all columns whose value on the last row is at least 5 (and, better, I would like to select all columns whose value on the last row is at least the value of the row Gi).
So in the end, I would like the following output (the column Ti is discarded because its value on the last row is 3 which is below our threshold).
Year An Gi Na
2000 5 2 3
2010 3 5 7
2020 6 5 6
Do you have any ideas?
Thanks!