From a5c6873bb9dbee0391a8f0ddfa153797f7814c0a Mon Sep 17 00:00:00 2001 From: shamsuddeen Date: Tue, 23 Mar 2021 07:35:04 +0000 Subject: [PATCH 1/3] typo section 6.2 --- action-layout.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action-layout.Rmd b/action-layout.Rmd index cca38165..fc66f13b 100644 --- a/action-layout.Rmd +++ b/action-layout.Rmd @@ -53,7 +53,7 @@ fluidPage( ) ``` -Even though you haven't these functions yet, you can guess what's going on by reading their names. +Even though you haven't learned these functions yet, you can guess what's going on by reading their names. You might imagine that this code will generate a classic app design: a title bar at top, followed by a sidebar (containing a slider) and main panel (containing a plot). The ability to easily see hierarchy through indentation is one of the reasons it's a good idea to use a consistent style. From 1720436efac8cbb597df641bbd2cebe23bd6de8e Mon Sep 17 00:00:00 2001 From: shamsuddeen Date: Tue, 23 Mar 2021 08:23:57 +0000 Subject: [PATCH 2/3] fix typo --- action-workflow.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action-workflow.Rmd b/action-workflow.Rmd index e26ed0fb..2c09340b 100644 --- a/action-workflow.Rmd +++ b/action-workflow.Rmd @@ -346,7 +346,7 @@ server <- function(input, output, session) { I thought, *it's an eight line app, what could possibly go wrong?* Well, when I opened the app up I saw a **lot** of missing values, no matter what territory I selected. The code most likely to be the source of the problem was the reactive that selected the data to show: `sales[sales$TERRITORY == input$territory, ]`. -So stopped the app, and quickly verified that subsetting worked the way I thought it did: +So I stopped the app, and quickly verified that subsetting worked the way I thought it did: ```{r} sales[sales$TERRITORY == "EMEA", ] From a768145fecc84a1239848ec6b12c51e90a8644e4 Mon Sep 17 00:00:00 2001 From: shamsuddeen Date: Tue, 23 Mar 2021 12:50:25 +0000 Subject: [PATCH 3/3] fix typo --- action-layout.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action-layout.Rmd b/action-layout.Rmd index fc66f13b..c0b1c05c 100644 --- a/action-layout.Rmd +++ b/action-layout.Rmd @@ -512,7 +512,7 @@ ui <- fluidPage( ) ``` -If you're a HTML/CSS expert, you might be interested to know that can skip `fluidPage()` altogether and supply raw HTML. +If you're a HTML/CSS expert, you might be interested to know that you can skip `fluidPage()` altogether and supply raw HTML. See "[Build your entire UI with HTML](https://shiny.rstudio.com/articles/html-ui.html)" for more details. Alternatively, you can use of the HTML helper that Shiny provides.