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.
Visit the app hosted as static website Biostats. If you want to run it locally follow the guide below.
- Data Wrangling: Easily import, filter, transform, and clean your datasets.
- Correlation Tests: Explore relationships between variables with correlation tests.
- Assumption Tests: Assess the assumptions of normality, homogeneity of variances, and other assumptionsnecessary for statistical tests.
- Statistical Tests: Conduct a variety of statistical tests including t-tests, ANOVA, Kruskal-Wallis tests, andmore.
- Data Visualization: Visualize your data using ggplot2, including boxplots, point plots, line plots, andsmoothing with annotations.
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/Biostats", subdir = "comeln")
remotes::install_github("ComPlat/Biostats", subdir = "bs")
- Restart R/RStudio and start the app
Sys.setenv(RUN_MODE = "BROWSER")
app <- bs::app()
shiny::shinyApp(app$ui, app$server)