I want to rename an existing data frame to the name in a variable. Any ideas are appreciated.
rtbl <- load("clarktestjunk.RData")
datasetname = "specialdata" # passed in by the user
rename(rtbl,datasetname) # this is not the correct command
specialdata # this is how I want to reference the data set down stream.