I have a list of tables:
a <- c(1:10)
b <- c(11:20)
c <- c(31:40)
df1 <- data.frame(a,b,c,id="A")
df2 <- data.frame(a,b,c,id="B")
df3 <- data.frame(a,b,c,id="C")
List1 <- list(df1,df2,df3)
List1
How can I select out a table from the list which has id=="C"
Thank you for your help.