mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 04:27:30 +02:00
version bump - regression - data overview
This commit is contained in:
parent
f73af16ae1
commit
f249aaa9ab
29 changed files with 2888 additions and 1239 deletions
21
examples/regression_module_demo.R
Normal file
21
examples/regression_module_demo.R
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#' Regression module
|
||||
#'
|
||||
#' @returns
|
||||
#' @export
|
||||
#'
|
||||
#' @examples
|
||||
#' \dontrun{
|
||||
#' regression_demo_app()
|
||||
#' }
|
||||
regression_demo_app <- function() {
|
||||
ui <- bslib::page_fixed(
|
||||
do.call(
|
||||
bslib::navset_bar,
|
||||
regression_ui("regression")
|
||||
)
|
||||
)
|
||||
server <- function(input, output, session) {
|
||||
regression_server("regression", data = default_parsing(mtcars[1:3]))
|
||||
}
|
||||
shiny::shinyApp(ui, server)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue