gpcm: Generalised Partial Credit Model Derived Probabilities

Description Usage Arguments Details Value Examples

View source: R/prob_functions.R

Description

Calculate vector of probabilities of success from person and item parameters under the Generalised Partial Credit Model.

Usage

1
  gpcm(theta=NULL,alpha=NULL,delta=NULL,n=NULL)

Arguments

theta

Theta parameter

alpha

Alpha parameter

delta

Vector of delta parameters

n

Number of item categories

Details

The delta parameters are the intersection points of adjacent category information functions. There should be one less delta parameter than categories. Assumes that the location parameter is zero

Value

Vector of probabilities of success

Examples

1
2
3
4
5
6
7
## Generalized Partial Credit Model
## Item parameters from Embretson & Reise (2000, p. 112) item 5
theta <- 1
alpha <- .683
delta <- c(-3.513,-.041,.182)
n <- 4
gpcm(theta,alpha,delta,n)

classify documentation built on May 29, 2017, 7:49 p.m.