Interactive Regression Model Summary Homework Checker

Description

Creates a tinytable::tt() table for checking regression model statistics including R, R-squared, F, df, and model significance.

Usage

create_regression_model_checker(reg_results_list)

Arguments

reg_results_list Output from linear_reg_answers().

Value

A tinytable object with embedded webexercise elements.

Examples

library("psych350lab")

result <- linear_reg_answers(data, criterion = "dv",
  quant_predictors = c("x1", "x2"),
  quant_labels = c("Pred 1", "Pred 2"),
  criterion_label = "Outcome")
create_regression_model_checker(result)