R/tamaan.3pl.trait.R

Defines functions tamaan.3pl.trait

## File Name: tamaan.3pl.trait.R
## File Version: 9.09


#######################################################################
# tamaan 3PL trait module
tamaan.3pl.trait <- function( res0, anal.list, con, ... )
{
    gammaslope <- NULL
    notA <- res0$notA
    if (is.null(notA) ){ notA <- FALSE }
    delta.inits <- res0$delta.inits
    A <- res0$A
    xsi.fixed <- res0$xsi.fixed

    res <- tam.mml.3pl(resp=res0$resp,
                        E=res0$E,
                        skillspace=res0$skillspace,
                        theta.k=res0$theta.k,
                        gammaslope=gammaslope,
                        gammaslope.fixed=res0$gammaslope.fixed,
                        gammaslope.des=res0$gammaslope.des,
                        variance.fixed=res0$variance.fixed,
                        guess=res0$guess,
                        est.guess=res0$est.guess,
                        guess.prior=res0$guess.prior,
                        Q=res0$Q, Q.fixed=res0$Q.fixed,
                        notA=notA,
                        xsi.fixed=xsi.fixed,
                        A=A,
                        delta.inits=delta.inits,
                        control=con,
                        ... )
    res$tamaan.method <- "tam.mml.3pl"
    return(res)
}
#######################################################################

Try the TAM package in your browser

Any scripts or data that you put into this service are public.

TAM documentation built on Aug. 29, 2022, 1:05 a.m.