ICCrestricted {ShinyItemAnalysis} | R Documentation |
Range-restricted reliability with intra-class correlation
Description
Function estimating reliability with intra-class correlation for the complete or for the range-restricted sample.
Usage
ICCrestricted(
Data,
case,
var,
rank = NULL,
dir = "top",
sel = 1,
nsim = 100,
ci = 0.95,
seed = NULL
)
Arguments
Data |
|
case |
character: name of the variable in |
var |
character: name of the variable in |
rank |
numeric: vector of ranks of ratees. If not provided, rank of
ratee is calculated based on average rating based on |
dir |
character: direction of range-restriction, available options are
|
sel |
numeric: selected number (given > 1) or percentage (given <= 1) of ratees. Default value is 1 (complete dataset). |
nsim |
numeric: number of simulations for bootstrap confidence interval. Default value is 100. |
ci |
numeric: confidence interval. Default value is 0.95. |
seed |
seed for simulations. Default value is |
Value
A data.frame
with the following columns:
n_sel |
number of ratees selected/subsetted. |
prop_sel |
proportion of ratees selected. |
dir |
direction of range-restriction. |
VarID |
variance due to ratee, "true variance", between-group variance. |
VarResid |
residual variance. |
VarTotal |
total variance. |
ICC1 |
single-rater inter-rater reliability. |
ICC1_LCI |
lower bound of the confidence
interval for |
ICC1_UCI |
upper bound of the confidence
interval for |
ICC3 |
multiple-rater inter-rater reliability. |
ICC3_LCI |
lower bound of the confidence interval for
|
ICC3_UCI |
upper bound of the confidence interval for
|
Author(s)
Patricia Martinkova
Institute of Computer Science of the Czech Academy of Sciences
martinkova@cs.cas.cz
Jan Netik
Institute of Computer Science of the Czech Academy of Sciences
netik@cs.cas.cz
References
Erosheva, E., Martinkova, P., & Lee, C. (2021a). When zero may not be zero: A cautionary note on the use of inter-rater reliability in evaluating grant peer review. Journal of the Royal Statistical Society - Series A. Accepted.
Erosheva, E., Martinkova, P., & Lee, C. (2021b). Supplementary material for When zero may not be zero: A cautionary note on the use of inter-rater reliability in evaluating grant peer review.
Examples
# ICC for the whole sample
ICCrestricted(Data = AIBS, case = "ID", var = "Score", rank = "ScoreRankAdj")
# ICC for the range-restricted sample considering 80% of top ratees
ICCrestricted(
Data = AIBS, case = "ID", var = "Score", rank = "ScoreRankAdj",
sel = 0.8
)