Skip to content

Commit

Permalink
Update vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasWallrich committed Jun 14, 2024
1 parent a66624b commit 0f3a3bb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions vignettes/getting_started.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ app_data <- prepare_data(app_data,
sample_size = "ni",
variance = "vi",
filters = c("Publication Year" = "pub_year", "Continent" = "continent", "Teacher Sample" = "teachers"),
es_type = "SMD"
es_type = "SMD",
arrange_filters = "leave",
keep_missing_level = TRUE
)
```

Expand All @@ -79,7 +81,8 @@ Now you are ready to launch a first version of the app. This is useful to see wh
```{r eval = FALSE}
generate_shiny(app_data,
dataset_name = "Barroso et al 2021 - Maths Anxiety",
eff_size_type_label = "Fisher's Z scores")
eff_size_type_label = "Fisher's Z scores",
options = list(shiny_theme = "sandstone", selection_list_threshold = 3))
```

## Save the app
Expand All @@ -97,7 +100,7 @@ generate_shiny(app_data,
contact = "l.wallrich@bbk.ac.uk")
```

When you run this, the app will be saved to a new folder, in this case `my_app_folder`. You can open `app.R` in that folder to run the Shiny app.
When you run this, the app will be saved to a new folder, in this case `my_app_folder`. You can run `shiny::shinyAppDir(my_app_folder)` (specifying your folder) to run the Shiny app.

To further customize the app, consider editing:

Expand Down

0 comments on commit 0f3a3bb

Please sign in to comment.