I know there is a function for this and have used it in the past but can't seem to remember or find it.
basically I'm trying to do the following:
data(mtcars)
missing_function(mtcars)
lm(mpg ~ cyl)
where "missing_function()" allows me to use the the variables in the mtcars dataset without having to use the "$". For example: "mpg" instead of "mtcars$mpg".
with
ortransform
– Andrie