getVRR {Qval} | R Documentation |
Caculate vector recovery ratio (VRR)
Description
Caculate vector recovery ratio (VRR)
Usage
getVRR(Q.true, Q.sug)
Arguments
Q.true |
The true Q-matrix. |
Q.sug |
A The Q-matrix that has being validated. |
Details
The VRR shows the ability of the validation method to recover q-vectors, and is determined by
where denotes the
-vector of item
i
in the true Q-matrix (Q.true
),
denotes the
-vector of item
i
in the suggested Q-matrix(Q.sug
),
and is the indicator function.
Value
A numeric (VRR index).
Examples
library(Qval)
set.seed(123)
example.Q1 <- sim.Q(5, 30)
example.Q2 <- sim.MQ(example.Q1, 0.1)
VRR <- getVRR(example.Q1, example.Q2)
print(VRR)
[Package Qval version 0.1.7 Index]