I have a tibble and want to create a list of specific values in that tibble based on lists I have made of row and column positions. For example I have a list of row positions; row = [1,4,6,2,5], and column positions; column = [2,3,7,3,6], and I want to make a list of the values of my tibble at [1,2],[4,3],[6,7],[2,5] and [5,6]. If I simply say my_list = my_tibble[row,column] I get a tibble as it takes every row position with every column position, instead of just the first with the first, second with second etc. This feels like it should be simple but I've been battling it for so long!