I wish to rename an entire data-frame on r (Eg. rename df1 to df 2). So far I always do this by...
df2 <- df1
df1 <- NULL
But when handling massive datasets this results in memory issues. All of my search on SO and google have only showed results to rename the column names of dataframes (rename() function in package 'reshape' or assign() function, but it doesn't work on entire dataframe). Is there a way to do this without creating a new dataframe?