blob: cb7a3316c789399990022f213356094f36c288fe [file] [log] [blame]
Hao Zhu36bc5082017-07-03 11:49:00 -04001---
2title: "test_doc"
3author: "Jake Thompson"
4date: "6/30/2017"
5output:
6 bookdown::pdf_document2:
7 toc: false
8---
9
Hao Zhu680428f2017-07-21 13:50:33 -040010```{r}
Hao Zhu36bc5082017-07-03 11:49:00 -040011library(tidyverse)
Hao Zhu443a71c2017-07-03 20:06:29 -040012library(knitr)
13library(kableExtra)
Hao Zhu36bc5082017-07-03 11:49:00 -040014
Hao Zhu680428f2017-07-21 13:50:33 -040015table1 <- 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 Zhu36bc5082017-07-03 11:49:00 -040021
Hao Zhu680428f2017-07-21 13:50:33 -040022knitr::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 Zhu36bc5082017-07-03 11:49:00 -040025```