R/head.join.R

Defines functions `head.join`

## simple method to head each component of join
`head.join` <- function(x, ...) {
    if(inherits(x, "data.frame"))
        NextMethod("join")
    else
        lapply(x, head, ...)
}
gavinsimpson/analogue documentation built on June 17, 2021, 2:37 a.m.