powered by
Returns the index of the maximum value in list x.
x
which_max_list(x, equal_is_random = TRUE)
vector of values
boolean
If there is a tie and equal_is_random is TRUE, the index of one of the tied maxima is returned at random.
equal_is_random
TRUE
If equal_is_random is FALSE, the maximum with the lowest index number is returned.
FALSE
# NOT RUN { theta = list(par_one = list(1,2,3), par_two = list(2,3,4)) which_max_list(theta$par_one) # }
Run the code above in your browser using DataLab