Rename multiple lists items in for loop
I have multiple list with the same amount of items. I want to rename all lists items in loop. For example from lists items names "a, b, c", I want to rename them to "first, second, third": #create 3 lists with items names a, b, c list1 <- list(a=c(1:10), b=c(1:5), c=c(1:3)) list2 <- list(a="a", b="b",… Read More Rename multiple lists items in for loop