powered by
Creates a function that evaluates expressions in a future data.frame. Is like with(), but the data argument is passed at a later step.
with()
delayed_with(...)
Expressions that will be evaluated.
A function that takes a data.frame and returns the expressions in ... evaluated in an environment constructed from it.
data.frame
...
Each expression in ... must return numeric values. They can be named or return named vectors.
Other helper functions: densify, draw_data, mean_dist_to, mean_self_proximity, moments_n
densify
draw_data
mean_dist_to
mean_self_proximity
moments_n
# NOT RUN { some_stats <- delayed_with(mean_x = mean(x), mean(y), sd(x), coef(lm(x ~ y))) data <- data.frame(x = rnorm(20) , y = rnorm(20)) some_stats(data) # }
Run the code above in your browser using DataLab