Skip to contents

Get a glimpse of your metadata.

Usage

# S3 method for rbiom
glimpse(biom, width = NULL, ...)

Arguments

biom

An rbiom object, such as from as_rbiom(). Any value accepted by as_rbiom() can also be given here.

width

Width of output. See pillar::glimpse() documentation. Default: NULL

...

Unused, for extensibility.

Value

The original biom, invisibly.

See also

Other metadata: bdply()

Examples

    library(rbiom)
    
    glimpse(hmp50)
#> Rows: 50
#> Columns: 5
#> $ .sample     <chr> "HMP01", "HMP02", "HMP03", "HMP04", "HMP05", "HMP06", "HMP…
#> $ Age         <dbl> 22, 24, 28, 25, 27, 32, 26, 27, 33, 22, 24, 35, 24, 32, 25…
#> $ BMI         <dbl> 20, 23, 26, 23, 24, 25, 22, 26, 32, 20, 23, 26, 21, 26, 21…
#> $ `Body Site` <fct> Buccal mucosa, Buccal mucosa, Saliva, Saliva, Buccal mucos…
#> $ Sex         <fct> Female, Male, Male, Male, Female, Male, Male, Female, Male…