lp: Print dataframe with all rows shown

View source: R/lp.R

lpR Documentation

Print dataframe with all rows shown

Description

*L*ong *p*rint to override standard data.frame() and tibble() printing behavior.

Usage

lp(x)

Arguments

x

data.frame() or tibble()

Details

Functionally, an alternative to View.

Examples


x <- do.call(rbind, replicate(20, as.matrix(mtcars), simplify = FALSE))

x <- as.data.frame(x)

print(x)
lp(x)

x <- tibble::as_tibble(x)

print(x)
lp(x)


wepelham3/sack2 documentation built on Aug. 5, 2023, 5:53 a.m.