I have a data frame called 'whole_time' that looks something like this:
1 2 3 4 5 6
F1 20 60 65 80 100 600
F2. 40 57 88 120 130 550
F3. 67 88 92 134 220 350
F4 92 98 99 170 345 650
Basically I want to create a new column in 'whole_time' called 'MIN' that contains all the minimum values for each row, so an output of something like this:
1 2 3 4 5 6. MIN
F1 20 60 65 80 100 600. 20
F2. 40 57 88 120 130 550. 40
F3. 67 88 92 134 220 350 67
F4 92 98 99 170 345 650. 92
Then, from there I would like to find the MAX value from the 'MIN' column.