R/IRT.factor.scores.xxirt.R

Defines functions IRT.factor.scores.xxirt

Documented in IRT.factor.scores.xxirt

## File Name: IRT.factor.scores.xxirt.R
## File Version: 0.07


###########################################################
# object of class xxirt
IRT.factor.scores.xxirt <- function( object, type="EAP", ... )
{
    if ( ! ( type %in% c("EAP") ) ){
        stop("Requested type is not supported!\n")
    }
    # EAP
    if ( type=="EAP"){
        ll <- object$EAP
    }
    attr(ll,"type") <- type
    return(ll)
}
###########################################################
alexanderrobitzsch/sirt documentation built on March 18, 2024, 1:29 p.m.