You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For this example, we worked with the `airway` dataset. To extend `tidyomics` with `omicslog`, it is only necessary to add the `log_start()` function before applying the different filtering criteria:
44
44
45
-
```{r}
45
+
```r
46
46
data(airway, package="airway")
47
47
48
48
result<-
@@ -60,7 +60,7 @@ result
60
60
```
61
61
62
62
:::{.smaller}
63
-
```{r}
63
+
```r
64
64
#> # A SummarizedExperiment-tibble abstraction: 1 × 22
65
65
#> # Features=1 | Samples=1 | Assays=counts
66
66
#> .feature .sample counts SampleName cell treat Run avgLength
@@ -85,7 +85,7 @@ As a result, the `metadata` shows a short description of the different modificat
85
85
86
86
Notwithstanding, `omicslog` can also work with base R commands by simply adding the dataset name to the `log_start()` function:
87
87
88
-
```{r}
88
+
```r
89
89
options(restore_SummarizedExperiment_show=TRUE)
90
90
91
91
result_base<- log_start(airway) # Starting the logging operations
0 commit comments