R/print.R

Defines functions print.profile

Documented in print.profile

#' Print method
#'
#' @param x profile object
#' @param ... other parameters
#'
#' @return printed profile
#' @export
print.profile <- function(x, ...){

  print("Column Profile")
  print(paste("Schema:", x$schema))
  print(paste("Table:", x$table))
  print(paste("Start time:", x$starttime))
  print(paste("End time:", x$endtime))
  print(summary(x))
}

Try the datrProfile package in your browser

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

datrProfile documentation built on Aug. 2, 2019, 5:05 p.m.