Skip to contents

Example data.table object.

Usage

data(data.table)

Format

An object of class data.table (inherits from data.frame) with 4 rows and 3 columns.

Value

data.table.

Note

Updated 2021-10-14.

Examples

if (requireNamespace("data.table", quietly = TRUE)) {
    data(data.table)
    class(data.table)
    print(data.table)
}
#>         rn genotype treatment
#> 1: sample1 wildtype   control
#> 2: sample2 knockout   control
#> 3: sample3 wildtype   treated
#> 4: sample4 knockout   treated