This application provides a user-friendly interface for conducting basic data wrangling, correlation tests, assumption tests (Shapiro-Wilk, Levene's test, QQ plots, etc.), various statistical tests (t-test, ANOVA, Kruskal-Wallis test, Tukey HSD, etc.), and visualizing data using ggplot2.
- Data Wrangling: Import, filter, transform, and clean datasets.
- Correlation Tests: Evaluate relationships between variables.
- Assumption Tests: Run Shapiro-Wilk, Levene's test, QQ plots, etc.
- Statistical Tests: t-test, ANOVA, Kruskal-Wallis, Tukey HSD, and more.
- Visualization: Create boxplots, scatterplots, line plots, smoothers, and annotated plots using
ggplot2
.
sudo apt update
sudo apt install -y r-base
Verify installation:
R --version
- Download R from CRAN.
- Follow the installer instructions.
- Download RStudio Desktop (free version) from RStudio's website.
- Install it by following the installation steps for your operating system.
- Open R or RStudio.
- Install the
remotes
package:
install.packages("remotes")
- Load the
remotes
library:
library(remotes)
- Use the
install_github
function to install the package "COMELN".
remotes::install_github("ComPlat/OpenStats", subdir = "comeln")
remotes::install_github("ComPlat/OpenStats", subdir = "OpenStats")
- Restart R/RStudio and start the app
OpenStats::open_stats()