R/tail.join.R

Defines functions `tail.join`

## show the last few lines of each joined data set
`tail.join` <- function(x, ...) {
    if(inherits(x, "data.frame"))
        NextMethod("join")
    else
        lapply(x, tail, ...)
}
gavinsimpson/analogue documentation built on June 17, 2021, 2:37 a.m.