-
Notifications
You must be signed in to change notification settings - Fork 0
/
prez_R.Rpres
75 lines (60 loc) · 1.7 KB
/
prez_R.Rpres
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
========================================================
author: ALeksandra Dąbrowska, Alicja Gosiewska
date:
width: 1400
height: 900
css: custom.css
Grupa MI^2 i MI^2 DataLab
========================================================
```{r, echo=FALSE}
knitr::include_graphics("img/MI2a.PNG")
```
NCN Opus grant 2016/21/B/ST6/02176
========================================================
======================================================
```{r, echo=FALSE}
knitr::include_graphics("prezentacje_biala_fioletowa/Slajd8.PNG")
```
======================================================
```{r, echo=FALSE}
knitr::include_graphics("prezentacje_biala_fioletowa/Slajd9.PNG")
```
======================================================
```{r, echo=FALSE}
knitr::include_graphics("prezentacje_biala_fioletowa/Slajd10.PNG")
```
======================================================
```{r, echo=FALSE}
knitr::include_graphics("prezentacje_biala_fioletowa/Slajd11.PNG")
```
======================================================
```{r, echo=FALSE}
knitr::include_graphics("prezentacje_biala_fioletowa/Slajd12.PNG")
```
Podstawowe pojęcia
======================================================
- Gen
- Sonda CpG
- Ekspresja genu
- Metylacja DNA
```{r, echo = FALSE}
knitr::include_graphics("img/DNA3.PNG")
```
Ekspresja
======================================================
```{r, echo = FALSE}
library(MLExpResso)
library(MLExpRessoData)
```
```{r, echo=FALSE}
head(BRCA_exp)[1:5,1:5]
```
```{r, echo=FALSE}
condition_exp <- ifelse(BRCA_exp$SUBTYPE == "LumA", "LumA", "other")
res_exp <- calculate_test(
data = BRCA_exp[,!(colnames(BRCA_exp) == "SUBTYPE")],
condition = condition_exp,
test = "lrt"
)
head(res_exp)
```