-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.R
24 lines (22 loc) · 793 Bytes
/
app.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Launch the ShinyApp (Do not remove this comment)
# To deploy, run: rsconnect::deployApp()
# Or use the blue button on top of this file
pkgload::load_all(export_all = FALSE, helpers = FALSE, attach_testthat = FALSE)
options('golem.app.prod' = TRUE)
kpi_spec <- system.file('insurance_kpi_spec.csv', package="lucidum")
feature_spec <- system.file('insurance_feature_spec.csv', package="lucidum")
filter_spec <- system.file('insurance_filter_spec.csv', package="lucidum")
lucidum::lucidum(
data = insurance,
BoostaR_models = NULL,
GlimmaR_models = NULL,
show_DevelopaR = TRUE,
show_MappaR = TRUE,
starting_response = 'price',
starting_tab = 'DataR',
kpi_spec = kpi_spec,
feature_spec = feature_spec,
filter_spec = filter_spec,
sidebar_width = 250,
num_threads = 1
)