make_fxn | R Documentation |
utils::getParseData()
outputMake functions from utils::getParseData()
output
make_fxn(x)
make_fxns(x)
x |
for |
for make_fxn
a function as a character string;
for make_fxns
, a list of those
## Not run:
foo <- function(x) {
if (x == 1) x else 5
}
foo
f <- mutate_one(foo)
f
x = f
make_fxn(f)
bar <- function(w) {
if (w == 10) w else 5
}
g <- mutate_one(bar)
make_fxns(list(f, g))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.