Learn R Programming

TAM (version 1.6-0)

IRT.drawPV: Function for Drawing Plausible Values

Description

This function draws plausible values of a continuous latent variable based on a fitted object for which the IRT.posterior (CDM) method is defined.

Usage

IRT.drawPV(object,NPV=5)

Arguments

object
Object for which the method IRT.posterior (CDM) does exist.
NPV
Number of plausible values to be drawn.

Value

  • Matrix with plausible values

Examples

Run this code
#############################################################################
# EXAMPLE 1: Plausible value imputation for Rasch model in sirt
#############################################################################

library(sirt)
data(data.read,package="sirt")
dat <- data.read

# fit Rasch model
mod <- rasch.mml2(dat)
# draw 10 plausible values
pv1 <- IRT.drawPV(mod, NPV=10)

Run the code above in your browser using DataLab