Description Usage Arguments Examples
View source: R/ez.stat.diff.test.R
Calculate two sample or pairwise comparisons with corrections.
| 1 2 3 | 
| data | response vector. | 
| type | select test type whether parametric or non-parametric. | 
| paired | a logical indicating whether you want a paired test. | 
| adjust.method | method for adjusting p-values. | 
| plot | a logical indicating whether you want a plot graph. | 
| group.name | a name for the group (default: "group") | 
| value.name | a name for the value (default: "value") | 
| 1 2 3 4 5 6 7 | {
A <- c(1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2)
B <- c(3, 3, 4, 3, 1, 2, 3, 1, 1, 5, 4)
data <- data.frame(A,B)
ez.stat.diff.test(data, "parametric", paired=TRUE, adjust.method = "holm")
}
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.