-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
58 lines (38 loc) · 1.6 KB
/
README.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
---
output: github_document
---
<!-- badges: start -->
[![R-CMD-check](https://github.com/shug0131/eudract_pkg/workflows/R-CMD-check/badge.svg)](https://github.com/shug0131/eudract_pkg/actions)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/shug0131/eudract_pkg?branch=master&svg=true)](https://ci.appveyor.com/project/shug0131/eudract_pkg)
[![Codecov eudract_pkg](https://codecov.io/gh/shug0131/eudract_pkg/branch/master/graph/badge.svg)](https://app.codecov.io/gh/shug0131/eudract_pkg?branch=master)
<!-- badges: end -->
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
out.width = "100%",
fig.path = "man/figures/README-"
)
```
# eudract
The goal of eudract is to provide tools to easily produce summaries of safety data from clinical trials that can easily be uploaded into eudraCT or ClinTrials.gov .
An additional feature produces commonly used tables and figures that feature in statistical reports and papers for clinical trials.
## Installation
You can install from CRAN directly with
```r
install.packages("eudract")
```
You can install the very latest version on github with:
``` r
install.packages("devtools")
devtools::install_github("shug0131/eudract_pkg")
```
## Documentation
https://shug0131.github.io/eudraCT/ provides full documentation
Go and read the help pages within R `?eudract::safety_summary`
```{r example, file="example/canonical.R", eval=FALSE}
```
And for produce standard reporting outputs
```{r report_example, file="example/reporting.R"}
```