Displaying 1 result from an estimated 1 matches for "tp1676236p1676552".
2010 Mar 20
2
Converting a character string into a data frame name and performing assignments to that data frame
Hi,
I would like to do the following operations:
variable.df is a character string that contains the name of the data
frame that I want to do the following operations on:
variable.df <- data.frame();
# I can do the above command using
assign( variable.df, data.frame() )
How can I perform the assignment statements below ?
colnames(variable.df) = colnames(some.other.df)
variable.df =