Occasionally researchers would like to compare the variations between two conditions or groups rather than the mean. Two commonly used are the natural logarithms of variability ratio (\(lnVR\)) and the coefficient of variance ratio (\(lnCVR\)). The latter of these can be useful when there may be a mean-variance relationship present (i.e., variances tend to increase with mean values) in order to account for this. An lnVR or lnCVR of zero therefore would indicate no difference in variation between the two groups, an lnVR or lnCVR of >0 would indicate larger variance in group 1, and an lnVR or lnCVR of <0 would indicate larger variance in group 2. There are both independent and dependent versions of these effect sizes (see Senior, Viechtbauer, and Nakagawa 2020). To obtain confidence intervals of a the lnVR or lnCVR then we, for example 95% confidence intervals, we merely multiply the standard error for the parameter by 1.96 similarly to other effect size statistics,
\(lnCVR_\text{ind}\) - Natural Logarithm of coefficient variation ratio for independent groups
Used to compare the variation between two groups. More useful than a variability ratio (\(lnVR_\text{ind}\)) when there is a relationship between the mean and variance.
\(lnCVR_\text{dep}\) - Natural Logarithm of coefficient variation ratio for dependent groups
Used to compare the variation between paired groups (i.e., repeated measures). More useful than a variability ratio (\(lnVR_\text{dep}\)) when there is a relationship between the mean and variance.
11.1.1 Natural Logarithm of Variability Ratio for Independent Groups (\(lnVR_\text{ind}\))
The variability ratio for independent groups can be calculated by taking the natural logarithm of the standard deviation within one group divided by the standard deviation in another group,
A \(lnVR\) of zero therefore would indicate no difference in variation between the two groups, a \(lnVR\) of >0 would indicate larger variance in group 1, and \(lnVR\) of <0 would indicate larger variance in group 2. The standard error of the VR can be calculated as,
From the example, we obtain a natural log variability ratio of \(lnVR_\text{ind}\) = 0.25 [-0.03, 0.53].
11.1.2 Natural Logarithm of Variability Ratio for Dependent Groups (\(lnVR_\text{dep}\))
The variability ratio for dependent groups can similarly be calculated by taking the natural logarithm of the standard deviation within one group divided by the standard deviation in another group,
In R, we can simply use the metafor packages escalc() function as follows:
# Example:# Group 1: standard deviation = 4.5# Group 2: standard deviation = 3.5# Sample size = 50# Correlation = 0.4library(metafor)# prepare the dataSD1 <-4.5SD2 <-3.5n <-50r <-0.4# use escalc to compute lnVRdeplnVRdep <-escalc(measure ="VRC",sd1i = SD1,sd2i = SD2,ni = n1,ri = r)lnVRdep$SE <-sqrt(lnVRdep$vi)# calculate confidence intervallnVRdep_low <- lnVRdep$yi -1.96*lnVRdep$SElnVRdep_high <- lnVRdep$yi +1.96*lnVRdep$SE# print the VR value and confidence intervalsdata.frame(lnVRdep = MOTE::apa(lnVRdep$yi),lnVRdep_low = MOTE::apa(lnVRdep_low),v_high = MOTE::apa(lnVRdep_high))
lnVRdep lnVRdep_low v_high
1 0.251 -0.005 0.508
11.2 Coefficient of Variation Ratios
11.2.1 Natural Logarithm of Coefficient of Variation Ratio for independent groups (lnCVR_)
The coefficient of variation ratio for independent groups can be calculated by taking the natural logarithm of the coefficient of variation within one group divided by the coefficient of variation in another group,
Where \(CV_T =S_T / M_T\), \(CV_C =S_C / M_C\), and \(M\) indicates the mean of the respective group. The correction factor, \(CF\), is a small sample size bias correction factor that combines that from the lnRR (presented earlier) and the lnVR calculated as,
\[
CF=\frac{1}{2(n_T-1)}-\frac{1}{2(n_C-1)} + \frac{S_T^2}{2(n_TM_T^2)} + \frac{S_C^2}{2(n_CM_C^2)}
\tag{11.8}\] In R, we can simply use the escalc() function from the metafor package as follows:
# Example:# Group 1: mean = 22.4, standard deviation = 4.5, sample size = 50# Group 2: mean = 20.1, standard deviation = 3.5, sample size = 50library(metafor)# prepare the dataM1 <-22.4M2 <-20.1SD1 <-4.5SD2 <-3.5n1 <- n2 <-50lnCVRind <-escalc(measure ="CVR",m1i = M1,m2i = M2,sd1i = SD1,sd2i = SD2,n1i = n1,n2i = n2)lnCVRind$SE <-sqrt(lnCVRind$vi) # calculate confidence intervallnCVRind_low <- lnCVRind$yi -1.96*lnCVRind$SElnCVRind_high <- lnCVRind$yi +1.96*lnCVRind$SE# print the VR value and confidence intervalsdata.frame(lnCVRind = MOTE::apa(lnCVRind$yi),lnCVRind_low = MOTE::apa(lnCVRind_low),lnCVRind_high = MOTE::apa(lnCVRind_high))
11.2.2 Natural Logarithm of Coefficient of Variation Ratio for independent groups (\(lnCVR_\text{dep}\))
The coefficient of variation ratio for dependent groups can be similarly calculated by taking the natural logarithm of the coefficient of variation within one group divided by the coefficient of variation in another group,
Where \(CV_T =S_T / M_T\), \(CV_C =S_C / M_C\) and CF is a small sample size bias correction factor that combines that from the \(lnVR\) (presented earlier) and the \(lnVR\) (note again for dependent cases this is zero and so omitted) calculated as,
Senior, Alistair M., Wolfgang Viechtbauer, and Shinichi Nakagawa. 2020. “Revisiting and Expanding the Meta-Analysis of Variation: The Log Coefficient of Variation Ratio.”Research Synthesis Methods 11 (4): 553–67. https://doi.org/10.1002/jrsm.1423.
Viechtbauer, Wolfgang. 2010. “Conducting Meta-Analyses in R with the metafor Package.”Journal of Statistical Software 36 (3): 1–48. https://doi.org/10.18637/jss.v036.i03.