thpl: Three Parameter IRT 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 3pl IRT model.

Usage

1
  thpl(theta=NULL,beta=NULL,alpha=NULL,eta=NULL)

Arguments

theta

Vector of theta parameters

beta

Vector of beta parameters

alpha

Vector of alpha parameters

eta

Vector of eta parameters

Details

Three Parameter IRT Model Derived Probabilities

Value

Vector of probabilities of success, persons in columns, items in rows

Examples

1
2
3
4
5
theta <- c(-2:2)
beta <- rep(0,5)
alpha <- rep(1,5)
eta <- seq(from=0.2,by=0.2,to=1)
thpl(theta,beta,alpha,eta)

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