Gets the p-values table from the multifactor ANOVA results.
multifactor_aov_pvalues_table(multifactor.aov.results,
write.file = FALSE, file.out = "multi-anova-pvalues.csv")
multifactor anova results.
boolean value to indicate if a file is written.
name of the file.
Returns a data.frame with the p-values.
# NOT RUN {
## Example of multifactor ANOVA p-values table
data(propolis)
propolis = missingvalues_imputation(propolis, "value", value = 0.00005)
m.aov.results = multifactor_aov_all_vars(propolis,
c("seasons","agroregions"), "seasons*agroregions")
m.aov.pvalues = multifactor_aov_pvalues_table(m.aov.results)
# }
Run the code above in your browser using DataLab