params {BKT}R 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)


[Package BKT version 0.1.0 Index]