| anova_protti | R Documentation | 
Performs an ANOVA statistical test
anova_protti(data, grouping, condition, mean_ratio, sd, n)
| data | a data frame containing at least the input variables. | 
| grouping | a character column in the  | 
| condition | a character or numeric column in the  | 
| mean_ratio | a numeric column in the  | 
| sd | a numeric column in the  | 
| n | a numeric column in the  | 
a data frame that contains the within group error (ms_group) and the between
group error (ms_error), f statistic and p-values.
data <- data.frame(
  precursor = c("A", "A", "A", "B", "B", "B"),
  condition = c("C1", "C2", "C3", "C1", "C2", "C3"),
  mean = c(10, 12, 20, 11, 12, 8),
  sd = c(2, 1, 1.5, 1, 2, 4),
  n = c(4, 4, 4, 4, 4, 4)
)
anova_protti(
  data,
  grouping = precursor,
  condition = condition,
  mean = mean,
  sd = sd,
  n = n
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.