For loop for counting the number of rows per table in a list
Advertisements I need to count the number of rows per table in a list containing several tables. I have written a loop but it cannot do what I desire: Here is my dummy data: obj1 <- list(bodyPart = c("leg", "arm", "knee"),side = c("LEFT", "RIGHT", "LEFT"), device = c("LLI", "LSM", "GHT"), id = c("AA", "BB", "CC"))… Read More For loop for counting the number of rows per table in a list