Skip to content
Merged

update #1049

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion vignettes/guided_intermediate.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,33 @@ output:
toc_float: true
vignette: >
%\VignetteIndexEntry{A Guided Tour of rtables - Intermediate}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
%\VignetteEngine{knitr::rmarkdown}
editor_options:
markdown:
wrap: 72
chunk_output_type: console
---

```{r, include = FALSE}
suggested_dependent_pkgs <- c("dplyr")
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
eval = all(vapply(
suggested_dependent_pkgs,
requireNamespace,
logical(1),
quietly = TRUE
))
)
```

```{r, echo=FALSE}
knitr::opts_chunk$set(comment = "#")
```


# Scope and Audience

Now that we have an understanding of how the `rtables` framework
Expand Down
21 changes: 20 additions & 1 deletion vignettes/guided_intermediate_afun_reqs.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,33 @@ output:
code_folding: show
vignette: >
%\VignetteIndexEntry{Intermediate rtables - Identifying Required Analysis Behavior}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
%\VignetteEngine{knitr::rmarkdown}
editor_options:
markdown:
wrap: 72
chunk_output_type: console
---

```{r, include = FALSE}
suggested_dependent_pkgs <- c("dplyr")
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
eval = all(vapply(
suggested_dependent_pkgs,
requireNamespace,
logical(1),
quietly = TRUE
))
)
```

```{r, echo=FALSE}
knitr::opts_chunk$set(comment = "#")
```


# Introduction

```{r init, echo = FALSE, results = "hidden"}
Expand Down
16 changes: 15 additions & 1 deletion vignettes/guided_intermediate_split_reqs.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,28 @@ output:
code_folding: show
vignette: >
%\VignetteIndexEntry{Intermediate rtables - Identifying Required Faceting Behavior}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
%\VignetteEngine{knitr::rmarkdown}
editor_options:
markdown:
wrap: 72
chunk_output_type: console
---

```{r, include = FALSE}
suggested_dependent_pkgs <- c("dplyr")
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
eval = all(vapply(
suggested_dependent_pkgs,
requireNamespace,
logical(1),
quietly = TRUE
))
)
```

# Introduction

```{r init, echo = FALSE, results = "hidden"}
Expand Down
25 changes: 22 additions & 3 deletions vignettes/guided_intermediate_translating_shells.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,33 @@ output:
toc_float: true
vignette: >
%\VignetteIndexEntry{Intermediate rtables - Translating Shells To Layouts}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
%\VignetteEngine{knitr::rmarkdown}
editor_options:
markdown:
wrap: 72
chunk_output_type: console
---

```{r, include = FALSE}
suggested_dependent_pkgs <- c("dplyr")
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
eval = all(vapply(
suggested_dependent_pkgs,
requireNamespace,
logical(1),
quietly = TRUE
))
)
```

```{r, echo=FALSE}
knitr::opts_chunk$set(comment = "#")
```


# Introduction

The first - and often largest - hurdle to creating a table via
Expand Down Expand Up @@ -56,7 +75,7 @@ knitr::opts_chunk$set(comment = "")
```


```{r, eval = TRUE, echo = FALSE, result = "asis"}
```{r, echo = FALSE, result = "asis"}
adsl <- ex_adsl %>%
filter(SEX %in% c("M", "F") & RACE %in% c("ASIAN", "BLACK OR AFRICAN AMERICAN", "WHITE")) %>%
mutate(
Expand Down Expand Up @@ -142,7 +161,7 @@ table.

Our shell gives us the following to indicate column structure:

```{r, eval = TRUE, echo = FALSE, result="asis"}
```{r, echo = FALSE, result="asis"}
fixed_shell(result[0, ])
```

Expand Down
Loading