View source: R/dimensional_intraclass.R
dim_icc | R Documentation |
Analyze intra- and inter-rater reliability of dimensional data using various intraclass correlation coefficients. These coefficients are implemented using a generalized approach that accommodates missing data and multiple trials.
dim_icc( .data, model = c("1A", "1B", "2", "2A", "3", "3A"), type = c("agreement", "consistency"), unit = c("single", "average", "custom"), object = Object, rater = Rater, score = Score, customk = NULL, trial = NULL, bootstrap = 2000, warnings = TRUE )
.data |
Required. A data frame containing variables identifying and quantifying each observation, in a "tall" format. |
model |
Optional. A string indicating which ICC model to use, according
to Gwet's (2014) typology. Options include "1A", "1B", "2", "2A", "3", and
"3A". (default = |
type |
Optional. A string indicating which ICC type to use, according to
McGraw & Wong's (1999) typology. Options include "agreement" and
"consistency". (default = |
unit |
Optional. A string indicating which unit of analysis to use.
Options include "single" for the reliability of a single randomly chosen
rater, "average" for the reliability of the average of all observed raters,
or "custom" for a specified number of raters. (default = |
object |
Optional. The name of the variable in |
rater |
Optional. The name of the variable in |
score |
Optional. The name of the variable in |
customk |
Optional. Either |
trial |
Optional. The name of the variable in |
bootstrap |
Optional. A non-negative integer indicating how many
bootstrap resamples to use in estimating confidence intervals. Set to
|
warnings |
Optional. A logical value indicating whether warnings should
be generated and displayed during this analysis. (default = |
A list object of class "agreement_icc" with the following elements:
Object |
The estimated object variance |
Rater |
The estimated rater variance |
Interaction |
The estimated object-by-variance interaction variance |
Residual |
The estimated residual variance |
Intra_ICC |
The estimated intra-rater reliability |
Inter_ICC |
The estimated inter-rater reliability |
boot_results |
The bootstrap results from the boot package |
formulation |
The model, type, and k arguments |
details |
A list containing counts and data from the analysis |
call |
The function call that produced this output |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.