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-baseVerify 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
remotespackage:
install.packages("remotes")- Load the
remoteslibrary:
library(remotes)- Use the
install_githubfunction to install the package.
remotes::install_github("ComPlat/OpenStats", subdir = "OpenStats")
# Optionally if you want to use OpenStats in combination with ChemotionELN
remotes::install_github("ComPlat/OpenStats", subdir = "comeln")- Restart R/RStudio and start the app
OpenStats::open_stats()