R/print_inf.R

Defines functions print_inf

Documented in print_inf

#' Print infinate values
#'
#' Wrapper for \code{print(n = Inf)}
#'
#' @param x Input to print
#'
#' @author Shona Wilde
#' 
#' @return Tibble
#' 
#' @export


print_inf <- function(x){
  
  x <- x %>% 
    as_tibble() %>% 
    print(n = Inf)
  
}
shonawilde/shonarrr documentation built on Jan. 29, 2025, 1:27 a.m.