params: Extract Parameters from BKT model

View source: R/models-Model.R

paramsR Documentation

Extract Parameters from BKT model

Description

Extract fitted parameters from a BKT model. This function retrieves the parameters from a fitted BKT model object. The parameters include model-specific values such as "learns", "guesses", "slips", and "forgets". These parameters are returned in a format that is easy to print or manipulate for further analysis.

Usage

params(object)

Arguments

object

A fitted BKT model object. The model should have been previously fitted using the fit() function, otherwise no parameters will be available.

Value

A data frame containing the fitted model parameters. The data frame will typically include columns such as 'learns', 'guesses', 'slips', and other model-specific values.

Examples


model <- bkt(seed = 42, parallel = TRUE, num_fits = 5)
result <- fit(model, data_path = "data.csv", skills = "skill name")
params_df <- params(result)
print(params_df)


BKT documentation built on April 4, 2025, 12:20 a.m.

Related to params in BKT...