stats: Models statistics

View source: R/stats.R

statsR Documentation

Models statistics

Description

The stats function calculates models statistics. Read more auc

Usage

stats(modelA, modelB = NULL)

Arguments

modelA

Model generated by model function

modelB

Model generated by model function

Value

modified model list contains additional statistics

Examples



model_data <- data.frame(a = c(1,2,3,4,5,6),
                         b = c(1,2,3,4,5,6),
                         s = c(1,2,3,4,5,6))

model_data <- prodata(model_data, status_colname = "s")

config <- config(formula = "a ~ b + s")

model <- model(model_data, config)

stats(model)




ai documentation built on Oct. 2, 2024, 5:07 p.m.

Related to stats in ai...