R/show_all.R

Defines functions show_all

Documented in show_all

#' Show all rows in a tibble
#'
#' Takes a data frame or tibble input and outputs a tibble that shows all rows.
#'
#' @param df a dataframe or tibble
#' @export

show_all <- function(df){
  dplyr::as_tibble(df) %>% print(n=nrow(df))
}
galacticpolymath/GPpub documentation built on April 5, 2025, 6:04 p.m.