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, ...)
}

Try the analogue package in your browser

Any scripts or data that you put into this service are public.

analogue documentation built on June 21, 2021, 1:08 a.m.