-
Notifications
You must be signed in to change notification settings - Fork 3
/
2017-subintern.Rmd
88 lines (63 loc) Β· 1.69 KB
/
2017-subintern.Rmd
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
76
77
78
79
80
81
82
83
84
85
86
87
88
---
title: "How to use R markdown"
author: "AMC Subintern"
date: '2017-08-02'
output:
html_document:
toc: yes
word_document:
toc: yes
bibliography: references/myref.bib
---
# Introduction
μ΄κ²μ R λ§ν¬λ€μ΄μ
λλ€.
```{r}
# install.packages('tidyverse')
library(tidyverse)
```
# Materials and Methods
Theophμ μλΆλΆμ
λλ€.
```{r}
head(Theoph)
```
Theophμ λ·λΆλΆμ
λλ€.
```{r}
tail(Theoph)
```
# Results
κ·Έλ¦Όμ κ·Έλ €λ³ΌκΉμ
```{r}
plotTheoph <- Theoph %>%
ggplot(aes(x = Time, y = conc, group = Subject, color = Subject)) +
geom_point() +
geom_line()
plotTheoph
```
Let's draw individually.
```{r}
plotTheoph +
facet_wrap( ~ Subject, ncol = 4)
```
Theoph is used for treating asthma and the other allergic diseases. [@subintern1]
Omalizumab is also used for treating asthma [@maltby2017omalizumab]
# Discussion
Writing medical papers can be done by Rmarkdown as well as using [Endnote](http://endnote.com/), Mendeley <https://www.mendeley.com/>, refworks, and zotero.
| μ΄λ¦ | λ©λ΄ | κ°κ²© |
| :-- | :-- | --: |
| μ‘°νν | μΉ΄νλΌλΌ | 3500μ |
| νμ±ν | λ
Ήμ°¨λΌλΌ | 4000μ |
| λ°°κ· μ | μΌμ΄ν¬ | 14000μ |
| μνμ | μμ΄μ€μλ©λ¦¬μΉ΄λ
Έ | 3000μ |
| μ‘°μλ―Ό | μ½μΉ΄μ½λΌ | 1500μ |
So now we learned several things.
- R
- R packages - tidyverse, ggplot2
- Drawing figures by R
- Rmarkdown
Next time we will learn these
1. How to use basic NCA R package
1. How to use Phoenix WinNonLin software
1. How to become successful clinical investigator
[Online Figure](http://www.radiokorea.com/images/news/2017/02/17/251890/1.gif)
![Online Figure](http://www.radiokorea.com/images/news/2017/02/17/251890/1.gif)
# Reference