Example tbl_df
object (a tibble).
Usage
data(tibble)
Examples
if (requireNamespace("tibble", quietly = TRUE)) {
data(tibble)
class(tibble)
tibble::is_tibble(tibble)
print(tibble)
}
#> # A tibble: 4 × 3
#> rowname genotype treatment
#> <chr> <fct> <fct>
#> 1 sample1 wildtype control
#> 2 sample2 knockout control
#> 3 sample3 wildtype treated
#> 4 sample4 knockout treated