From 5f2e3590f2edee2df6e25cff23cfb2f9970404ff Mon Sep 17 00:00:00 2001 From: Stefano Mangiola Date: Wed, 12 Mar 2025 17:45:25 +1030 Subject: [PATCH 1/2] Update README.md --- README.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 874cd25..3ef8051 100644 --- a/README.md +++ b/README.md @@ -79,13 +79,12 @@ se_airway ### 2.2 **SummarizedExperiment** (Default) -By default, `print()` on a `SummarizedExperiment` displays the standard -SummarizedExperiment info: +The standard SummarizedExperiment display: ``` r # The default style: -se_airway %>% print() +se_airway %>% print(design = "SummarizedExperiment") #> class: SummarizedExperiment #> dim: 38694 8 #> metadata(0): @@ -97,11 +96,6 @@ se_airway %>% print() #> colData names(3): dex celltype geo_id ``` -``` r -# or equivalently: -se_airway %>% print(design = "SummarizedExperiment") -``` - ### 2.3 **tidyprint_1** For a more compact view (top and bottom rows), similar to a From d1e723a307168d4268cee02d23cbe66a91d49be6 Mon Sep 17 00:00:00 2001 From: Stefano Mangiola Date: Wed, 12 Mar 2025 17:46:41 +1030 Subject: [PATCH 2/2] Update Introduction.Rmd --- vignettes/Introduction.Rmd | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/vignettes/Introduction.Rmd b/vignettes/Introduction.Rmd index 9c4decf..0e75a34 100644 --- a/vignettes/Introduction.Rmd +++ b/vignettes/Introduction.Rmd @@ -113,18 +113,13 @@ se_airway ### 2.2 **SummarizedExperiment** (Default) -By default, `print()` on a `SummarizedExperiment` displays the standard SummarizedExperiment info: +The standard SummarizedExperiment display: ```{r} # The default style: -se_airway %>% print() - -``` - -```{r eval=FALSE} -# or equivalently: se_airway %>% print(design = "SummarizedExperiment") + ``` ### 2.3 **tidyprint_1**