show: Print basic information to the console

Description Usage Arguments Value Examples

Description

Print basic information to the console

Usage

1
2
3
4
5
6
7
8
## S4 method for signature 'ondisc_matrix'
show(object)

## S4 method for signature 'metadata_ondisc_matrix'
show(object)

## S4 method for signature 'multimodal_ondisc_matrix'
show(object)

Arguments

object

an object of class ondisc_matrix, covaraite_ondisc_matrix, or multimodal_ondisc_matrix

Value

NULL; called for printing

Examples

1
2
3
4
5
6
7
8
9
# NOTE: You must create the HDF5 file "expressions.h5" to run this example.
# Navigate to the help file of "create_ondisc_matrix_from_mtx"
# (via ?create_ondisc_matrix_from_mtx), and execute the code in the first code block.

h5_fp <- paste0(tempdir(), "/expressions.h5")
if (file.exists(h5_fp)) {
odm <- ondisc_matrix(h5_file = h5_fp)
show(odm)
}

ondisc documentation built on March 5, 2021, 5:07 p.m.