i am doing performance analysis, so i have to do some calculation from log file. i want to count average value per minute from log file.
my log file is like this:
i can calculate column 2 average value from average of all that values, my problem is i need to calculate average value per minute from this log.Code:22:47:30.751 3 22:47:30.754 2 22:47:30.776 1 22:47:31.756 8 22:47:31.752 4 22:47:32.752 9 22:47:32.755 6 22:47:32.751 3 22:47:33.898 2 22:47:33.751 10
so the output will be like this:
i can only calculate the average of all these values but i am having a problem to calculate it per minute value.Code:22:47:30 3 # (3+2+1)/3 22:47:31 2 22:47:32 6 22:47:33 6
need help, thank you.

