forked from DaniloPecorino/DIY_ANOVA
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.txt
22 lines (12 loc) · 828 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
DIY ANOVA is a Shiny app that guides the user through the process of checking assumptions for ANOVA and performing the actual analysis, plus checking pairwise differences by means of a section dedicated to post hoc tests.
It was developed by Danilo Pecorino (danilo.pecorino@gmail.com), who would love to receive feedbacks and comments on how to improve and make it more and more user friendly.
---
You can run this app locally by running R. Then type the following
library(shiny)
runApp("path to the DIY_ANOVA directory")
---
Requirements
DIY_ANOVA requires the following R libraries
shiny, shinyWidgets, shinydashboard, DT, GAD, multcompView, lsmeans
They can be installed by typing the following at the R console
install.packages(c("shiny", "shinyWidgets", "shinydashboard", "DT", "GAD", "multcompView", "lsmeans"))