Skip to content

Commit 21476fe

Browse files
authored
Update Introduction.Rmd
1 parent 915c25b commit 21476fe

File tree

1 file changed

+4
-22
lines changed

1 file changed

+4
-22
lines changed

vignettes/Introduction.Rmd

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ find_figure <- function(names){
5757

5858
<!-- badges: end -->
5959

60-
**tidyprint** is an R package that provides multiple printing styles for `SummarizedExperiment` objects. You can choose among:
60+
**tidyprint** is an R package that provides a centralised tidy display strategy for biological data (e.g. SummarizedExperiment), and centralised messaging styles for the `tidyomics` packages. To facilitate the discussion about data display, we compare here four data diplay:
6161

62-
1. **SummarizedExperiment** (default): Standard R/SummarizedExperiment printing style.
62+
1. **SummarizedExperiment**: Standard R/SummarizedExperiment printing style.
6363

6464
2. **tidyprint_1**: Newly designed tibble abstraction, combines styles from **tidySummarizedExperiment** and **plyxp**
6565

@@ -76,13 +76,13 @@ Depending on your workflow and desired console output, `tidyprint` makes it easy
7676
You need the \`\` package to install from GitHub. If you don’t have it, install via:
7777

7878
```{r eval=FALSE}
79-
install.packages("devtools")
79+
install.packages("remotes")
8080
```
8181

8282
Then install **tidyprint** from GitHub:
8383

8484
```{r eval=FALSE}
85-
devtools::install_github("tidyomics/tidyprint")
85+
remotes::install_github("tidyomics/tidyprint")
8686
```
8787

8888
------------------------------------------------------------------------
@@ -137,16 +137,6 @@ se_airway %>% print(design = "tidyprint_1")
137137
138138
```
139139

140-
You can also limit the number of displayed rows by setting `n_print` (or a similar argument in your code):
141-
142-
```{r}
143-
144-
se_airway %>% print(design = "tidyprint_1", n_print = 5)
145-
146-
```
147-
148-
149-
150140
### 2.4 **tidySummarizedExperiment**
151141

152142
Use the “tidySummarizedExperiment” design to view your data in a **tidy-friendly tibble** format:
@@ -169,14 +159,6 @@ se_airway %>% print(design = "plyxp")
169159
170160
```
171161

172-
You can also limit the number of displayed rows by setting `n_print` (or a similar argument in your code):
173-
174-
```{r}
175-
176-
se_airway %>% print(design = "plyxp", n_print = 5)
177-
178-
```
179-
180162
## Session info
181163

182164
```{r}

0 commit comments

Comments
 (0)