Hi, I have a dataset where by I have a single column with minute by minute data (time stamped) and in many cases the same minute is duplicated. For those instances, there is another column with different values. How do I find duplicated timestamp rows and pick the max. value between them e.g.
Initial Table
Time Flow
12:00 345
12:01 123
12:01 456
12:02 223
12:02 112
12:03 234
Final Table
Time Flow
12:00 345
12:01 456
12:02 223
12:03 234
Thank you. FYI - using JMP Pro 17 and I am an amateur (2hrs of experience).