Displaying 1 result from an estimated 1 matches for "fred4".
Did you mean:
fred
2009 Mar 21
2
Creating dataframe names on the fly?
I am aware that it is easily possible to create var names on the fly. e.g.
assign(paste("m",i,sep=""),j)
but is it possible to assign dataframes to variables created on the fly?
e.g.
If I have a dataframe called master and I wanted to subset parts of those
data into separate dataframes, I could do:
m1=subset(master,master$SAMPLE=='1')