Saturday, 21 May 2016

r - Use data.frame in custom function?



Often functions that work with data.frames have the ability to let the user provide a dataset, so that the user can use its columns in a straight forward way. E.g.:




lm(mpg~cyl+gear,data=mtcars)


Instead of using mtcars$cyl in the formula, we can simply use cyl. How can I implement such behavior in custom built functions?


Answer



There are several different techniques for this, described in Standard nonstandard valuation rules.


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...