E-Learn is a comprehensive online platform providing step-by-step statistical calculators. The application is designed to help users perform a wide range of statistical tests and analyses with ease.
This repository contains the source code for the public part of the application, including the user interface and server logic for the Shiny app.
- Standard t-test
- One-sample t-test
- Paired sample t-test
- Independent sample t-test
- T confidence interval
- T-test for Pearson correlation
- T-test for regression coefficient
- Z-test (Coming Soon)
- F-test (Coming Soon)
- Proportion test (Coming Soon)
- Correlation and Regression (Coming Soon)
- Summary Statistics (Coming Soon)
- Distribution Calculators (Coming Soon)
- Other Calculators (Coming Soon)
This is a work in progress and some calculators are still under development. Therefore, this is an early version of the application. The engine files are kept private during development but can be provided on request.
The calculator is available at https://statisticsguru1.shinyapps.io/e-learn/.
- R
- Shiny
- shiny.router for routing pages
E-Learn/
├── server
├── ui
├── www
├── t_calculators
│ ├── app_pages
│ └── engine (private)
└── README.md
To run the application locally, you need to have R and Shiny installed. Clone this repository and run the following commands in R:
library(shiny)
runApp("path/to/your/app")