-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.R
45 lines (38 loc) · 1.3 KB
/
index.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
## ----install, eval = FALSE---------------------------------------------------------------------------------------------------------
## ## Para instalar paquetes
## if (!requireNamespace("remotes", quietly = TRUE)) {
## install.packages("remotes")
## }
##
## ## Sección plotly
## remotes::install_cran("palmerpenguins")
## remotes::install_cran("ggplot2")
## remotes::install_cran("plotly")
##
## ## Sección iSEE
## remotes::install_cran("BiocManager")
## BiocManager::version)()
## # El anterior comando debe mostrar que estás usando la versión 3.12
## BiocManager::install("iSEE")
## BiocManager::install("scRNAseq")
## BiocManager::install("scater")
## BiocManager::install("Rtsne")
## BiocManager::install("recount3")
## ----session_packages, eval = TRUE, message = FALSE--------------------------------------------------------------------------------
## Load the package at the top of your script
library("sessioninfo")
## plotly
library("palmerpenguins")
library("ggplot2")
library("plotly")
## iSEE
library("iSEE")
library("scRNAseq")
library("scater")
library("Rtsne")
library("recount3")
## ----session_info------------------------------------------------------------------------------------------------------------------
## Reproducibility information
options(width = 120)
session_info()
proc.time()