I want to get those tables with same name added numbers by combining two columns from different tables (only one column in each table). part of code is like this( I don't know how many tables in advance. So I have to use n input by users)
for(i in 1: n)
      { 
   data[i]<-data.frame(X=X[i],Y=Y[i])
}
I want to get like
data1  is (X1,Y1)
data2  is (X2,Y2)
....   is ....
In addition. after create those tables data1,data2...
then how to use a general expression to print them one by one?
I know it does not work. But How to do it ?
 
    