From 2f35f85707e25b630bfbbb8590149b4abaafa1e3 Mon Sep 17 00:00:00 2001 From: Edgar Manukyan <71098506+armenic@users.noreply.github.com> Date: Fri, 18 Oct 2024 13:36:13 -0400 Subject: [PATCH] fix typo of inputSelect into selectInput (#482) --- scaling-modules.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scaling-modules.Rmd b/scaling-modules.Rmd index 19ade228..a6a6dfa8 100644 --- a/scaling-modules.Rmd +++ b/scaling-modules.Rmd @@ -659,7 +659,7 @@ histogramApp <- function() { ### Exercises 1. Rewrite `selectVarServer()` so that both `data` and `filter` are reactive. - Then use it with an app function that lets the user pick the dataset with the `dataset` module and filtering function using `inputSelect()`. + Then use it with an app function that lets the user pick the dataset with the `dataset` module and filtering function using `selectInput()`. Give the user the ability to filter numeric, character, or factor variables. 2. The following code defines output and server components of a module that takes a numeric input and produces a bulleted list of three summary statistics.