R/print-tibble.r

Defines functions pmore pinf

Documented in pinf pmore

#' Print all rows
#'
#' Print all rows of a tibble
#'
#' @param tbl Input tibble
#' @export
pinf <- function(tbl){
  print(tbl,n=Inf)
}

#' Print more rows
#'
#' Print 200 rows of a tibble
#'
#' @param tbl Input tibble
#' @export
pmore <- function(tbl){
  print(tbl,n=200)
}
kraaijenbrink/pkrf documentation built on July 4, 2023, 10:16 p.m.