Skip to content

Instantly share code, notes, and snippets.

@ivan-krukov
Created March 30, 2016 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivan-krukov/ab7c7999007ebb98b86f83a1381463b0 to your computer and use it in GitHub Desktop.
Save ivan-krukov/ab7c7999007ebb98b86f83a1381463b0 to your computer and use it in GitHub Desktop.
Use dots instead of dollar signs in R
# Use dots (.) instead of ($)
R_ify <- function(expr) eval(parse(text=
gsub("\\.","$",substitute(expr))))
R_ify(mtcars.mpg)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment