Interactive k-Group ANOVA Omnibus Homework Checker

Description

Creates a tinytable::tt() table for checking omnibus F-test statistics and group descriptives for a k-group one way between-subjects ANOVA.

Usage

create_anova_omnibus_checker(rh_name, anova_results_list, group_labels = NULL)

Arguments

rh_name Character. Research hypothesis label.
anova_results_list Output from anova_kgroup_answers(). Must contain $ANOVA (with F, p_value, df_between, df_within, mse, total_n, k, mean_n) and $Descriptives (with group_label, mean, sd, n).
group_labels Character vector or NULL. Display labels for groups.

Value

A tinytable object with embedded webexercise elements.

Examples

library("psych350lab")

result <- anova_kgroup_answers(data, dv = "sentence",
  iv = "attract",
  group_labels = c("Beautiful", "Average", "Unattractive"))
create_anova_omnibus_checker("RH1", result)