multifactor_aov_varexp_table: Multifactor ANOVA variability explained table

Description Usage Arguments Value Examples

View source: R/univariate.R

Description

Gets the variability explained table from the multifactor ANOVA results.

Usage

1
2
multifactor_aov_varexp_table(multifactor.aov.results, 
write.file = FALSE, file.out = "multi-anova-varexp.csv")

Arguments

multifactor.aov.results

multifactor anova results.

write.file

boolean value to indicate if a file is written.

file.out

name of the file.

Value

Returns a data.frame with the variability explained.

Examples

1
2
3
4
5
6
7
  ## Example of multifactor ANOVA variability explained table
  library(specmine.datasets)
  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.varepx = multifactor_aov_varexp_table(m.aov.results)

specmine documentation built on Sept. 21, 2021, 5:06 p.m.