Applies aov() on a vector of protein abundances using the design derived from the sample names (simple aov wrapper)
Source:R/anova_analysis.R
OWAnova.Rd
Applies aov() on a vector of protein abundances using the design derived from the sample names (simple aov wrapper)
Examples
protein_abundance <- rep(rnorm(3, mean= 18, sd=2), each=3) + rnorm(9)
groups <- c(rep("group1",3),rep("group2",3),rep("group3",3))
OWAnova(protein_abundance,groups)
#> Call:
#> aov(formula = intensities ~ conditions, data = NULL)
#>
#> Terms:
#> conditions Residuals
#> Sum of Squares 14.141637 4.778459
#> Deg. of Freedom 2 6
#>
#> Residual standard error: 0.8924179
#> Estimated effects may be unbalanced