CLT | R Documentation |
This function starts a Shiny application that demonstrates examples of the Central Limit Theorem. The app is stored internally within the package and showcases various statistical principles through interactive visualizations. Check more details at vignette("shinyCLT")
CLT(n.cores = NULL, mode = "app", user_plan = "cluster")
n.cores |
Number of cores to use for calculations. Default value is NULL, which means that half of the cores will be used with the ceiling rounding rule. |
mode |
Change application behaviour when web browser tab or IDE preview is closed. By default this will end the running function and stop the local shinyApp. Switching to "server" mode will keep the shiny application running in a background even if all with application is closed. |
user_plan |
Specifies the parallelization strategy to use. Acceptable values are "cluster" (default), "multicore", or "multisession". |
Runs shinyApp
if(interactive()){
CLT() # Launch the CLT demonstration app
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.