File: sim.2pl.R

package info (click to toggle)
r-cran-erm 1.0-1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,152 kB
  • sloc: f90: 400; ansic: 103; makefile: 8
file content (54 lines) | stat: -rwxr-xr-x 1,399 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
sim.2pl <- function(persons, items, discrim = 0.25, seed = NULL, cutpoint = "randomized")
{

# simulation of Birnbaum's 2-PL (non-parallel ICCs)
# violation is steered by the standard deviation sdlog.
# meanlog in rlnorm is 0 which implies that the random numbers lie asymmetrically around 1. If sdlog = 0 the data are Rasch homogeneous.
# For IRT applications, values up to 0.5 should be considered. 

if (length(items) == 1) {
  if (!is.null(seed)) set.seed(seed)
  schwierig <- rnorm(items)      #standard normal distributed
  n.items <- items
} else {
  schwierig <- items
  n.items <- length(items)
}

if (length(persons) == 1) {
  if (!is.null(seed)) set.seed(seed)
  faehig <- rnorm(persons)
  n.persons <- persons
} else {
  faehig <- persons
  n.persons <- length(persons)
}


if (length(discrim) > 1) {
 alpha <- discrim 
} else {
 if (!is.null(seed)) set.seed(seed) 
 alpha <- rlnorm(n.items, 0, sdlog = discrim)         #discrimination parameter
}

psolve <- matrix(0, n.persons, n.items)

for (i in 1:n.persons)
	for (j in 1:n.items)
	psolve[i,j]<-exp(alpha[j]*(faehig[i]-schwierig[j]))/(1+exp(alpha[j]*(faehig[i]-schwierig[j])))

if (cutpoint == "randomized") {
  if (!is.null(seed)) set.seed(seed)
    R <-(matrix(runif(n.items*n.persons),n.persons,n.items) < psolve)*1
} else {
    R <- (cutpoint < psolve)*1
}




return(R)
}