My codes are creating so many tables but my question is do we have any solution to makes a list of tables created at the end of code
i have approx 500-1k tables with names (t1,t2,t3....t500)
df <- mtcars[1:10,]
t1 <- janitor::tabyl(df$disp)
t2 <- table(df$disp,df$wt,df$drat)
at the end i want to make a list list of tables like
tbls <- c(t1,t2,t3,t4.........t500)
do we have any solution for this ....??