I'm trying to find a common route (most visited) or path from a list of visited areas by many participants in order format. Here is a toy data set looks like: In this dataset the values times are in seconds and the smallest time means first visit of that Area and so on for each participant(participantID).
ParticipantsID Area1 Area2 Area3 Area4 Area5 Area6 Area7 Area8
part1 3.940697 5.901064 2.820492 0.00003 NA NA 1.890461 0.00001
part2 NA 8.191393 5.510936 NA NA NA NA NA
part3 NA NA 2.890461 0.00000 11.030156 2.460417 51.030156 2.460417
part4 NA NA NA NA 0.460417 1.560417 2.460417 0.000714
part5 118.807669 40.256034 26.493948 14.99225 NA NA 4.22576 3.78940
part6 61.030156 2.460417 NA NA 118.807669 40.256034 58.807669 30.256034
In my original data set has 60 participants and 12 Areas to visit. I'm not sure which statistical method is best suited for this type of analysis. Is there any R package available to use such algorithm to find a overall ordered list of areas (most visited routes in order) by analyzing all individual visits.
I would be thankful if anybody could share any idea here.