search for: table10

Displaying 1 result from an estimated 1 matches for "table10".

Did you mean: table1
2009 Sep 19
4
Processing strings
Hi, I am unable to do something fairly simple. I have matrices called Table1,..., Table10. I want to be able to print them using a loop. So I wrote: ################## for (i in 1:10){ disp<-paste("Table", i, sep="") eval(parse(text=disp)) } ################## but this produces no output. Any ideas?