Hao Zhu | 36bc508 | 2017-07-03 11:49:00 -0400 | [diff] [blame] | 1 | --- |
| 2 | title: "test_doc" |
| 3 | author: "Jake Thompson" |
| 4 | date: "6/30/2017" |
| 5 | output: |
| 6 | bookdown::pdf_document2: |
| 7 | toc: false |
| 8 | --- |
| 9 | |
Hao Zhu | 680428f | 2017-07-21 13:50:33 -0400 | [diff] [blame^] | 10 | ```{r} |
Hao Zhu | 36bc508 | 2017-07-03 11:49:00 -0400 | [diff] [blame] | 11 | library(tidyverse) |
Hao Zhu | 443a71c | 2017-07-03 20:06:29 -0400 | [diff] [blame] | 12 | library(knitr) |
| 13 | library(kableExtra) |
Hao Zhu | 36bc508 | 2017-07-03 11:49:00 -0400 | [diff] [blame] | 14 | |
Hao Zhu | 680428f | 2017-07-21 13:50:33 -0400 | [diff] [blame^] | 15 | table1 <- tribble(~Term, ~Definition, |
| 16 | "Adverse event (AE)", " Any untoward medical occurrence in a subject to whom a medicinal product has been administered including occurrences which are not necessarily caused by or related to that product.", |
| 17 | "Adverse reaction (AR)", "Any untoward and unintended response in a subject to an investigational medicinal product, which is related to any dose administered to that subject.", |
| 18 | "Unexpected adverse reaction (UAR)", " An adverse reaction the nature and severity of which is not consistent with the information about the medicinal product in question set out in: The SPC for that product (for products with a marketing authorisation); The Investigator's Brochure (IB) relating to the trial in question (for any other investigational product)", |
| 19 | "Serious adverse event (SAE); Serious adverse reaction (SAR); Suspected unexpected serious adverse reaction (SUSAR)", "Respectively, any adverse event, adverse reaction or unexpected adverse reaction that: results in death; is life-threatening; requires hospitalisation or prolongation of existing hospitalisation; results in persistent or significant disability or incapacity; consists of a congenital anomaly or birth defect; other important medical event(s)" |
| 20 | ) |
Hao Zhu | 36bc508 | 2017-07-03 11:49:00 -0400 | [diff] [blame] | 21 | |
Hao Zhu | 680428f | 2017-07-21 13:50:33 -0400 | [diff] [blame^] | 22 | knitr::kable(table1, caption = "Terms and definitions for adverse events", booktabs=TRUE) %>% |
| 23 | kable_styling(full_width=F, latex_options = "scale_down") %>% |
| 24 | column_spec(column = 2, width = "30em") |
Hao Zhu | 36bc508 | 2017-07-03 11:49:00 -0400 | [diff] [blame] | 25 | ``` |