#'genApp
#'
#'Opens the graphic user interface for the fitAci subroutines
#'@name genApp
#'@export
genApp <- function(){
ui <- generateUi()
serv <- generateServer()
if(interactive()){
shiny::runApp(shiny::shinyApp(ui,serv))
} else{
shiny::runApp(shiny::shinyApp(ui,serv),launch.browser = T)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.