jtrecenti commited on
Commit
242bfc3
1 Parent(s): 9bb4312

Update app.R

Browse files
Files changed (1) hide show
  1. app.R +2 -2
app.R CHANGED
@@ -10,8 +10,8 @@ df_num <- df |> select(where(is.numeric), -Year)
10
  ui <- page_fillable(theme = bs_theme(bootswatch = "minty"),
11
  layout_sidebar(fillable = TRUE,
12
  sidebar(
13
- varSelectInput("xvar", "X variable", df_num, selected = "Bill Length (mm)"),
14
- varSelectInput("yvar", "Y variable", df_num, selected = "Bill Depth (mm)"),
15
  checkboxGroupInput("species", "Filter by species",
16
  choices = unique(df$Species), selected = unique(df$Species)
17
  ),
 
10
  ui <- page_fillable(theme = bs_theme(bootswatch = "minty"),
11
  layout_sidebar(fillable = TRUE,
12
  sidebar(
13
+ varSelectInput("xvar", "X variables", df_num, selected = "Bill Length (mm)"),
14
+ varSelectInput("yvar", "Y variables", df_num, selected = "Bill Depth (mm)"),
15
  checkboxGroupInput("species", "Filter by species",
16
  choices = unique(df$Species), selected = unique(df$Species)
17
  ),