pcm: 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 Partial Credit Model.

Usage

1
  pcm(theta=NULL, delta=NULL, n=NULL)

Arguments

theta

Theta 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.

Value

Vector of probabilities of success

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# Example from The Theory and Practice of Item Response Theory
# By Rafael Jaime De Ayala
# p.204
theta <- 0
n <- 3
d <- c(-1,1)

pcm(theta,d,n)

#0.2119416 0.5761169 0.2119416

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