From 7e24cee5d6150787f2c2b3e654d1c2ec5c47283d Mon Sep 17 00:00:00 2001 From: Dony Unardi Date: Tue, 5 Nov 2024 16:36:35 -0800 Subject: [PATCH] Update vignettes/creating-custom-modules.Rmd Co-authored-by: Nina Qi Signed-off-by: Dony Unardi --- vignettes/creating-custom-modules.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/creating-custom-modules.Rmd b/vignettes/creating-custom-modules.Rmd index 2ba7c82370..7e752e9d44 100644 --- a/vignettes/creating-custom-modules.Rmd +++ b/vignettes/creating-custom-modules.Rmd @@ -15,7 +15,7 @@ vignette: > The `teal` framework provides a large catalog of plug-in-ready analysis modules to be incorporated into `teal` applications. However, it is also possible to create your own modules using the `module` function. -In this guide, we will convert a simple histogram formula into a robust `teal` module: +In this guide, we will use the simple histogram below as an example, and demonstrate how to convert this histogram function into a robust `teal` module step-by-step: ```r hist(dataset[, selected], las = 1) ```