visualize_aov: Visualize AOV Outcomes

View source: R/aov.R

visualize_aovR Documentation

Visualize AOV Outcomes

Description

Renders the outcomes of an Analysis of Variance (AOV) through bar plots, allowing a comprehensive display of both total sums and specific effects.

Usage

visualize_aov(
  aov_results,
  show_main = TRUE,
  num_plots = 8,
  horizontal = TRUE,
  axis_label_style = 1,
  ...
)

Arguments

aov_results

A list containing the AOV results.

show_main

logical indicating if the main effects and total sums of squares should be included in the visualization. Default is TRUE.

num_plots

numeric specifying the count of effects to be showcased in the display.

horizontal

logical determining if the bar plots should be oriented horizontally. Default is TRUE.

axis_label_style

numeric designating the label styling for the plot's axes. Default is 1.

...

Additional arguments affecting the bar plot's aesthetics.

Value

A data.frame containing proportions derived from the sum of squares.

Examples

tree <- dexisensitivity::masc2
subtree <- create_sub_tree(tree, "Dimension sociale")
AOV_out <- aov_tree(subtree)
visualize_aov(AOV_out)


dexisensitivity documentation built on Oct. 30, 2024, 1:08 a.m.