Skip to content

Commit

Permalink
Update ARD printing
Browse files Browse the repository at this point in the history
  • Loading branch information
edelarua committed Nov 11, 2024
1 parent 8904b37 commit 13464d8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 14 deletions.
13 changes: 6 additions & 7 deletions quarto/table-templates/template-table_11.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@
title: FDA Table 11
subtitle: Patients with FDA Medical Query (Narrow) Leading to Treatment Discontinuation, Safety Population, Pooled Analyses
format: html
knitr:
opts_chunk:
R.options:
max.print: 999
width: 999
---

```{r setup, echo=FALSE}
```

::: panel-tabset
## Spec. Screenshot

Expand Down Expand Up @@ -76,7 +74,7 @@ Source code for this function is available [here](https://github.com/pharmaverse

<details>
<summary>ARD Setup</summary>
```{r tbl1, eval=FALSE, echo=TRUE}
```{r tbl1, echo=TRUE, message=FALSE, warning=FALSE, results='hide'}
# Load Libraries & Data
library(cardinal)
Expand All @@ -102,7 +100,8 @@ result$ard
```
</details>

```{r tbl1, message=FALSE, warning=FALSE, eval=TRUE}
```{r tbl1-print, echo=FALSE}
print(result$ard, columns = "all", n = Inf)
```

## rtables Table
Expand Down
10 changes: 3 additions & 7 deletions quarto/table-templates/template-table_12.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@
title: FDA Table 12
subtitle: Patients With Adverse Events Leading to Treatment Discontinuation by System Organ Class and Preferred Term, Safety Population, Pooled Analyses
format: html
knitr:
opts_chunk:
R.options:
max.print: 999
width: 999
---

::: panel-tabset
Expand Down Expand Up @@ -68,7 +63,7 @@ Source code for this function is available [here](https://github.com/pharmaverse

<details>
<summary>ARD Setup</summary>
```{r tbl1, eval=FALSE, echo=TRUE}
```{r tbl1, echo=TRUE, message=FALSE, warning=FALSE, results='hide'}
# Load Libraries & Data
library(cardinal)
Expand All @@ -89,7 +84,8 @@ result$ard
```
</details>

```{r tbl1, message=FALSE, warning=FALSE, eval=TRUE}
```{r tbl1-print, echo=FALSE}
print(result$ard, columns = "all", n = Inf)
```

## rtables Table
Expand Down

0 comments on commit 13464d8

Please sign in to comment.