as_tibble {tidySummarizedExperiment}R Documentation

Coerce lists, matrices, and more to data frames

Description

[Maturing]

as_tibble() turns a SummarizedExperiment existing object into a so-called tibble, a data frame with class tbl_df.

Arguments

x

A SummarizedExperiment

...

This parameter includes .subset that can be set to any tidyselect expression. For example .subset = c(sample, type), or .subset = contains("PC").

Value

A tibble

Examples


tidySummarizedExperiment::pasilla %>%
    as_tibble()
    
tidySummarizedExperiment::pasilla %>%
    as_tibble(.subset = -c(condition, type))     
    
    
    

[Package tidySummarizedExperiment version 1.2.0 Index]