-
Notifications
You must be signed in to change notification settings - Fork 755
Function operators
The final functional programming technique we will discuss in this book is function operators: functions that take (at least) one function as input and return a function as output. Function operators allow you to add extra functionality to an existing function, or combine multiple existing functions. They have two main uses:
-
developing specialised languages for solving wide classes of problems
-
eliminating function parameters by encapsulating common variations as function transformations. The advantage is that you don't limit uses to functionality that you've thought up - as long as the modify the function in the right way, they can add all sorts of extra functioanlity. And you don't need a different argument for every possible option; end up with smaller, simpler pieces that you combine together.
Functionals abstract away common looping operations. Function operators abstract over common anonymous functions operations. Like functionals, there's nothing you can't do without them; but they can make your code more readable and expressive by communicating higher level intent.
If you're familiar with Python, decorates are function operators. : http://stackoverflow.com/questions/739654/understanding-python-decorators
Like creating an algebra, in the sense that we define atoms and how to combine them together. Closed.
In this chapter, we'll explore four classes of function operators:
- change the output of the function:
- change the input to the function:
- leave the function unchanged, but add additional useful behaviour
- combine multiple functions togeher:
The focus is on giving you some ideas for what you can use function operators for, and for alternative means of describing tasks in R: as combinations of functions, not combinations of arguments.
Most function operators follow a similar pattern:
funop <- function(f, otherargs) {
function(...) {
# do something
f(...)
}
}
The disadvantage of this technique is that when you print the function you won't get informative arguments. One way around this is to write a function that replaces ...
with the concrete arguments from a specified function using computing on the language.
It's often useful to be able to pass in either the name of a function, or a function. match.fun()
. Also useful because it forces the evaluation of the argument: this is good because it raises an error right away (not later when the function is called), and makes it possible to use with lapply
.
Caveat: http://stackoverflow.com/questions/14183766
Also need the opposite: to get the name of the function. There are two basic cases: the user has supplied the name of the function, or they've supplied the function itself. We cover this in more detail on computing in the language. But unfortunately it's difficult to
fname <- function(f) {
if (is.character(f)) {
fname <- f
f <- match.fun(f)
} else if (is.function(f)) {
fname <- as.character(match.call()$f)
}
list(f, fname)
}
f <- function(f) {
fname(f)
}
f("mean")
f(mean)
fname <- function(call) {
f <- eval(call, parent.frame())
if (is.character(f)) {
fname <- f
f <- match.fun(f)
} else if (is.function(f)) {
fname <- if (is.symbol(call)) as.character(call) else "<anonymous>"
}
list(f, fname)
}
f <- function(f) {
fname(substitute(f))
}
f("mean")
f(mean)
f(function(x) mean(x))
- log to disk everytime a function is run
- automatically print how long it took to run: timing
- add a delay to avoid swamping a server
- print to console every n invocations (useful if you want to check on a long running process)
- save time by caching previous function results (
memoise::memoise
)
time_it <- function(f) {
function(...) {
start <- proc.time()
res <- f(...)
end <- proc.time()
print(end - start)
out
}
}
delay_by <- function(delay, f) {
function(...) {
Sys.sleep(delay)
f(...)
}
}
log_to <- function(path, message, f) {
stopifnot(file.exists(path))
function(...) {
cat(Sys.time(), ": ", message, sep = "", file = path,
append = TRUE)
f(...)
}
}
dot_every <- function(n, f) {
i <- 1
function(...) {
if (i %% n == 0) cat(".")
i <<- i + 1
f(...)
}
}
Notice that I've made the function the last argument. That's because we're more likely to vary the function for a given problem than the other parameters so it makes them a little easier to use with lapply
(if we have a list of functions), and it reads a little better when we compose multiple function operators. For example, if we had a long list of urls we wanted to download, without hammering the server too hard, and printing a dot every 10 urls, we can write:
download <- dot_every(10, delay_by(1, download.file))
But if the function was the first argument, we'd write
download <- dot_every(delay_by(download.file, 1), 10)
which I think is a little harder to follow because the argument to dot_every
is far away from the function call.
Or taken one of the examples from the functional programming chapter:
timers <- lapply(compute_mean, time_it)
lapply(timers, call_fun, x)
-
What does the following function do? What would be a good name for it?
f <- function(g) { g <- match.fun(g) result <- NULL function(...) { if (is.null(result)) { result <<- g(...) } result } } runif2 <- f(runif) runif2(10)
- modify an existing function by changing the default arguments (
pryr::curry
) - convert a function that works with a data frame to a function that works with a matrix (
plyr::colwise
) - convert a function of multiple parameters to a function of a single list parameter (
plyr::splat
) - vectorise a scalar function (
base::Vectorise
)
splat <- function (f) {
f <- match.fun(f)
function(args) {
do.call(f, args)
}
}
A common task is making a variant of a function that has certain arguments "filled in" already. Instead of doing:
x <- function(a) y(a, b = 1)
x <- curry(y, b = 1)
compact <- function(x) Filter(Negate(is.null), x)
compact <- curry(Filter, Negate(is.null))
This type of programming is called point-free (sometimes derogatorily known as pointless) because it you don't explicitly refer to variables (which are called points in some areas of computer science.)
One way to implement curry
is as follows:
curry <- function(FUN, ...) {
.orig <- list(...)
function(...) {
do.call(FUN, c(.orig, list(...)))
}
}
But implementing it like this prevents arguments from being lazily evaluated, so pryr::curry()
has a more complicated implementation that works by creating the same anonymous function that you'd created by hand, using techniques from the computing on the language chapter.
Alternative to providing ...
to user supplied functions.
Map(function(x, y) f(x, y, zs), xs, ys)
Map(Curry(f, zs = zs), xs, ys)
Vectorize
takes a non-vectorised function and vectorises with respect to the arguments given in the vectorise.args
parameter. This doesn't give you any magical performance improvements, but it is useful if you want a quick and dirty way of making a vectorised function.
An mildly useful extension of sample
would be to vectorize it with respect to size: this would allow you to generate multiple samples in one call.
sample2 <- Vectorize(sample, "size", SIMPLIFY = FALSE)
sample2(1:10, rep(5, 4))
sample2(1:10, 2:5)
In this example we have used SIMPLIFY = FALSE
to ensure that our newly vectorised function always returns a list. This is usually a good idea. Vectorize
does not work with primitive functions.
- negate the result of a predicate function (
base::Negate
) - return a default value if the function throws an error (
fail_with
) - convert a function that prints output to a function that returns output
Negate <- function(f) {
f <- match.fun(f)
function(...) !f(...)
}
capture_it <- function(f) {
function(...) {
capture.output(f(...))
}
}
str_out <- capture_it(str)
str(1:10)
str_out(1:10)
failwith <- function(default = NULL, f, quiet = FALSE) {
f <- match.fun(f)
function(...) {
out <- default
try(f(...), silent = quiet)
out
}
}
log("a")
failwith(NA, log)("a")
failwith(NA, log, quiet = TRUE)("a")
Negate
takes a function that returns a logical vector, and returns the negation of that function. This can be a useful shortcut when the function you have returns the opposite of what you need.
Negate <- function(f) {
f <- match.fun(f)
function(...) !f(...)
}
(Negate(is.null))(NULL)
One function I find handy based on this is compact
: it removes all non-null elements from a list:
compact <- function(x) Filter(Negate(is.null), x)
- The
evaluate
package makes it easy to capture all the outputs (results, text, messages, warnings, errors and plots) from an expression.
- combine two functions together (
pryr::compose
) - combine the results of two vectorised functions into a matrix (
plyr::each
)
"%.%" <- compose <- function(f, g) {
f <- match.fun(f)
g <- match.fun(g)
function(...) f(g(...))
}
compose(sqrt, "+")(1, 8)
(sqrt %.% `+`)(1, 8)
Then we could implement Negate
as
Negate <- curry(compose, `!`)
-
What does the following function do? What would be a good name for it?
g <- function(f1, f2) { function(...) f1(...) || f2(...) } Filter(g(is.character, is.factor), mtcars)
Can you extend the function to take any number of functions as input? You'll probably need a loop.
-
Write a function
and
that takes two function as input and returns a single function as an output that ands together the results of the two functions. Write a functionor
that combines the results withor
. Add anot
function and you now have a complete set of boolean operators for predicate functions.
We will explore function operators in the context of avoiding a common R programming problem: supplying the wrong type of input to a function.
We want to develop a flexible way of specifying what a function needs, using a minimum amount of typing. To do that we'll define some simple building blocks, and then work our way up by developing tools that combine simple pieces to create more complicated structures.
Particularly powerful in conjunction with some S3 and S4 methods for operators (like +
, |
, etc.).
and <- function(f1, f2) {
function(...) {
f1(...) && f2(...)
}
}
or <- function(f1, f2) {
function(...) {
f1(...) || f2(...)
}
}
not <- function(f1) {
function(...) {
!f1(...)
}
}
has_length <- function(n) {
function(x) length(x) == n
}
or(and(is.character, has_length(4)), is.null)
It would be cool if we could rewrite to be:
(is.character & has_length(4)) | is.null
but due to limitations of S3 it's not possible. The closest we could get is:
"%|%" <- function(e1, e2) function(...) e1(...) || e2(...)
"%&%" <- function(e1, e2) function(...) e1(...) && e2(...)
(is.character %&% has_length(4)) %|% is.null
Another approach would be do something like:
Function <- function(x) structure(x, class = "function")
Ops.function <- function(e1, e2) {
f <- function(y) {
if (is.function(e1)) e1 <- e1(y)
if (is.function(e2)) e2 <- e2(y)
match.fun(.Generic)(e1, e2)
}
Function(f)
}
length <- Function(length)
length > 5
length * length + 3 > 5
is.character <- Function(is.character)
is.numeric <- Function(is.numeric)
is.null <- Function(is.null)
is.null | (is.character & length > 5)
It's not terribly useful for
-
Something with
Negate
-
Extend
and
,or
andnot
to deal with any number of input functions. Can you keep them lazy? -
Implement a corresponding
xor
function. Why can't you give it the most natural name? What might you call it instead? Should you renameand
,or
andnot
to match your new naming scheme? -
Once you have read the S3 chapter, replace
and
,or
andnot
with appropriate methods of&
,|
and!
. Doesxor
work?