Learn R Programming

cacIRT (version 1.0)

irf: Item response function

Description

Modified from irtoys

Usage

irf(ip, x)

Arguments

ip
x

Value

    Examples

    Run this code
    ##---- Should be DIRECTLY executable !! ----
    ##-- ==>  Define data, use random,
    ##--	or do  help(data=index)  for the standard data sets.
    
    ## The function is currently defined as
    function(ip,x){
    	    ni = dim(ip)[1]
    	    f = (sapply(1:ni, function(i) {ip[i, 3] + (1 - ip[i, 3])/(1 + exp(-1.7*ip[i, 1] * (x-ip[i, 2])))}))
    	    r = list(x = x, f = f)
    	    return(r)}

    Run the code above in your browser using DataLab