From 26e09a0b46a3de2291bc459d7cc3e68825f3859b Mon Sep 17 00:00:00 2001 From: Emily de la Rua Date: Wed, 14 Feb 2024 16:40:24 -0500 Subject: [PATCH] Update template --- quarto/figure-templates/template-fig_14.qmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quarto/figure-templates/template-fig_14.qmd b/quarto/figure-templates/template-fig_14.qmd index c1e31503..57f873d6 100644 --- a/quarto/figure-templates/template-fig_14.qmd +++ b/quarto/figure-templates/template-fig_14.qmd @@ -11,7 +11,7 @@ format: html ## ggplot2 Figure -```{r fig, message=FALSE, warning=FALSE} +```{r fig, message=FALSE, warning=FALSE, fig.height=7, fig.width=9} # Load Libraries & Data library(falcon) @@ -19,7 +19,7 @@ advs <- random.cdisc.data::cadvs make_fig_14( df = advs, - add_cond = expr("ONTRTFL == 'Y' | ABLFL == 'Y'"), + add_cond = bquote("ONTRTFL == 'Y' | ABLFL == 'Y'"), add_table = TRUE, yticks = c(135, 140, 145, 150, 155, 160) )