library("psych350lab")
data(superman, package = "psych350data")
result <- wg_anova_answers(superman,
dv1 = "rt_critics_score", dv2 = "rt_audience_score")
create_wg_anova_checker("RH1",
c("rt_critics_score", "rt_audience_score"), result,
condition_labels = c("Critics", "Audience"))Interactive Within-Groups ANOVA Homework Checker (2-Condition)
Description
Creates a tinytable::tt() table for checking a 2-condition WG ANOVA. Includes ANOVA type identification, F-test statistics, and condition descriptives.
Usage
create_wg_anova_checker(
rh_name,
vars,
anova_results_list,
condition_labels = NULL
)
Arguments
rh_name
|
Character. Research hypothesis label. |
vars
|
Character vector. Variable names (for reference). |
anova_results_list
|
Output from wg_anova_answers(). Must contain $ANOVA (with F, p_value, df_effect, df_error, mse) and $Descriptives.
|
condition_labels
|
Character vector of length 2 or NULL. Display labels for the two conditions.
|
Value
A tinytable object with embedded webexercise elements.