scoreMethodConfig {RSCAT}R Documentation

Creates a scoring method configuration for CAT simulation

Description

This is a gneric function to create a scoring method configuration from a speicfic estimation algorithm configuration.

Usage

scoreMethodConfig(object)

## S4 method for signature 'EAPConfig'
scoreMethodConfig(object)

Arguments

object

an S4 object for the estimation algorithm configuration

Value

the object of scoring method configuration which is an instance of org/act/rscat/cat/ScoringMethodConfig

Examples

if(interactive()){
eapConfig <- EAPConfig(numQuad = 6L, minQuad = -2, maxQuad = 2, 
  priorDistType = "Normal", distParams = c(0,1))
scoreMethodConfig <- scoreMethodConfig(eapConfig)  
}

[Package RSCAT version 1.1.3 Index]