-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.Rmd
More file actions
executable file
·40 lines (26 loc) · 1.15 KB
/
about.Rmd
File metadata and controls
executable file
·40 lines (26 loc) · 1.15 KB
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
---
title: "About This Website"
---
This is an [R Markdown website](http://rmarkdown.rstudio.com/rmarkdown_websites.html), created by [Julia Wrobel](http://juliawrobel.com) for a multiplex single-cell imaging data workshop at the University of Michigan Department of Biostatistics.
In the short course, we'll actively use several packages which are listed below. Code to install the packages follows, and version information about each of these packages and their dependencies is at the bottom of this page.
Installing packages from CRAN
```{r, eval=FALSE}
# main packages
install.packages(c("tidyverse", "spatstat", "spatialTIME", "mxnorm","refund",
"refund.shiny", "tiff", "survival"))
# additional packages used for visualization
install.packages(c("viridis", "patchwork"))
```
Installing packages from Bioconductor
```{r, eval = FALSE}
# install Bioconductor
BiocManager::install(version = "3.16")
# VectraPolarisData
BiocManager::install("VectraPolarisData")
# EBImage
BiocManager::install("EBImage")
```
Versions of key packages:
```{r}
devtools::session_info(c("tidyverse", "VectraPolarisData", "spatstat", "spatialTIME", "refund"))
```