(This article was first published on johnramey » r, and kindly contributed to R-bloggers)
Recently, I had a professor ask me how to take a string and convert it to an R variable name on-the-fly. One possible way is:
x <- 42 eval(parse(text = "x")) [1] 42 |
Now, suppose we want to go the other way. The trick is just as simple:
x <- 42 deparse(substitute(x)) [1] "x" |
To leave a comment for the author, please follow the link and comment on his blog: johnramey » r.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series,ecdf, trading) and more...

Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).