Update app.R
Browse files
app.R
CHANGED
@@ -19,10 +19,10 @@ ui <- page_fillable(theme = bs_theme(bootswatch = "minty"),
|
|
19 |
checkboxInput("by_species", "Show species", TRUE),
|
20 |
checkboxInput("show_margins", "Show marginal plots", TRUE),
|
21 |
checkboxInput("smooth", "Add smoother"),
|
22 |
-
)
|
23 |
mainPanel(
|
24 |
plotOutput("scatter")
|
25 |
-
)
|
26 |
)
|
27 |
|
28 |
server <- function(input, output, session) {
|
|
|
19 |
checkboxInput("by_species", "Show species", TRUE),
|
20 |
checkboxInput("show_margins", "Show marginal plots", TRUE),
|
21 |
checkboxInput("smooth", "Add smoother"),
|
22 |
+
),
|
23 |
mainPanel(
|
24 |
plotOutput("scatter")
|
25 |
+
))
|
26 |
)
|
27 |
|
28 |
server <- function(input, output, session) {
|