StatisticTeach1 is an R package that provides an interactive Shiny application for teaching and learning basic concepts in statistics and probability.
# Install from CRAN
install.packages("StatisticTeach1")
# Or install the development version from GitHub
# install.packages("remotes")
remotes::install_github("JavierDeLaHoz/StatisticTeach1")library(StatisticTeach1)
# Launch the interactive app
runStatisticTeach1()
# Standalone frequency table functions
ST_freq_factor(iris, Species)
ST_freq_numeric(mtcars, mpg, bins = 5)GPL-3