R/print_methods.R
print.SummarizedExperiment.RdProvides a compact tibble-like display for a SummarizedExperiment object that preserves assay values and key covariates with a separator band when the table is truncated.
# S3 method for class 'SummarizedExperiment'
print(x, n = 10, ...)x is returned invisibly after printing.
This method constructs a tibble abstraction for SummarizedExperiment data with
columns: .feature, .sample, assay columns, a vertical separator "|",
followed by selected colData and rowData fields. When the output
is truncated, an adaptive dash-only separator row is inserted after the first
half block of rows. Additional indication of colData is provided as well.
By default, this method uses the standard SummarizedExperiment print format.
To enable the tidy print format, use tidy_print_on. To check
the current status, use tidy_print_enabled.