Title: | Central Limit Theorem 'shiny' Application |
---|---|
Description: | A 'shiny' application estimating the operating characteristics of the Student's t-test by Student (1908) <doi:10.1093/biomet/6.1.1>, Welch's t-test by Welch (1947) <doi:10.1093/biomet/34.1-2.28>, and Wilcoxon test by Wilcoxon (1945) <doi:10.2307/3001968> in one-sample or two-sample cases, in settings defined by the user (conditional distribution, sample size per group, location parameter per group, nuisance parameter per group), using Monte Carlo simulations Malvin H. Kalos, Paula A. Whitlock (2008) <doi:10.1002/9783527626212>. |
Authors: | Dominique-Laurent Couturier [aut, cre]
|
Maintainer: | Dominique-Laurent Couturier <[email protected]> |
License: | GPL-2 |
Version: | 0.9.4 |
Built: | 2025-02-27 13:51:11 UTC |
Source: | https://github.com/cran/shinyCLT |
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")
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 }
if(interactive()){ CLT() # Launch the CLT demonstration app }