Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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
Expand Down
9 changes: 2 additions & 7 deletions vignettes/Introduction.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down
Loading