I am currently analysing inter-rater reliability/agreement data for a single case with multiple raters. For that I am using Gwet's $AC_2$ (as described here) using the irrCAC package in R, written by Gwet himself.
Unfortunately, I am not able to obtain a variance, SE etc. for my point estimate, as the code for this calculation is branched of in an if statement, that is only triggered when n>=2 (n referring to the subjects to be rated). Otherwise, the dispersion metrics are only reported as NA.
In my case of only a single subject, it would therefore not be possible, to calculate an error for my point estimate. I would assume that this if statement is necessary, because the variance calculation for Gwet's estimate contains a $1/n-1$ (Bessel's correction), which would lead to a division by 0 (when $n=1$). This can also be seen in formula (1) on page 413 in the linked paper:
This lead me to further, more general thoughts on the nature of variance:
1: a) Can the population variance in case of a single case just assumed to be 0? or
b) Is it generally not possible to calculate a population variance with the Bessel correction of $1/n-1$ for a single case sample, i.e. is the NA in Gwet's code the correct representation (because it just cannot be calculated)?
2: Is there a special way of calculating the variance for a single case situation?
I was reading this question on implication for the mean in case of n=1 and tried to apply its concepts for my case, but did not manage to find a conclusive answer.
