1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
#' Representation of data.table objects
#'
#' @param obj The list to create a representation for
#' @param ... ignored
#'
#' @name repr_*.data.table
#' @export
repr_html.data.table <- function(obj, ...) {
if (data.table::shouldPrint(obj))
NextMethod()
}
#' @name repr_*.data.table
#' @export
repr_text.data.table <- function(obj, ...) {
if (data.table::shouldPrint(obj))
NextMethod()
}
#' @name repr_*.data.table
#' @export
repr_latex.data.table <- function(obj, ...) {
if (data.table::shouldPrint(obj))
NextMethod()
}
|