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))
}
avitaliano/datrProfile documentation built on Aug. 1, 2019, 12:15 a.m.