This document details the calculations made in the R script GV measures.R. That script is based upon the Easy GV spreadsheet constructed by Dr. Nathan R. Hill of Oxford University. In many cases, Easy GV does not give results consistent with the formulas presented in the original manuscripts. In these cases, GV measures.R gives an option to calculate either the Easy GV version or the original manuscript option.

Throughout this document, let Xt be a glucose reading at time t. Let n be the total number of glucose readings. Time is assumed to be measured in minutes since the first recording in the data set. Glucose readings can be measured in either mg/dL or mmol/L. Note that 1 mmol of glucose is equal to 18 mg of glucose.

All functions require a vector x of glucose readings. This vector should be numeric and should not include any blank entries. Some functions additionally require a vector times of times. This vector should also be numeric and should not include any blank entries. Currently, the function read.CGM can take a Dexcom output file as input and return a data.frame which includes properly formatted x and times vectors.

The wrapper function GV returns all of the following metrics simultaneously.

Continuous overall net glycemic action (CONGA) (McDonell et al. 2005)

Parameters include

For a glucose measurement Xt at time t, let Dt be the difference between Xt and the mean of all glucose measurements made n hours prior to Xt, plus or minus s minutes. Let T be the set of times with a Dt value and let k be the number of such observations. Finally, let  = ∑Dt/k. Then, the original manuscript version is

\[ CONGA\_M(n) = \\sqrt{\\frac{\\sum\_T (D\_t - \\bar{D})^2}{k - 1}} \]

Furthermore, let * = ∑|Dt|/k. Then the Easy GV version is

\[ CONGA\_{GV}(n) = \\sqrt{\\frac{\\sum\_T (X\_t - \\bar{D}^\*)^2}{k - 1}} \]

Lability Index (LI) (Ryan et al. 2004)

Parameters include

For a glucose measurement Xt at time t, let Dt be the difference between Xt and the mean of all glucose measurements made k minutes prior to Xt, plus or minus s minutes. Let T be the set of times with a Dt value and let k be the number of such observations. Then

\[ LI = \\frac{1}{k} \\sum\_{t\\in T} (D\_t)^2 \]

J-index (Wojcicki 1995)

Parameters include

Let be the mean of all glucose values, and let *S**D(X*) be the standard deviation of all glucose values. If the units are mg/dL,

\[ J = \\frac{1}{1000}(\\bar{X} + SD(X))^2 \] and if the units are mmol/L,

\[ J = \\frac{18^2}{1000}(\\bar{X} + SD(X))^2 \]

Low / High Blood Glucose Index (LBGI, HBGI) (Kovatchev et al. 2003) and (Gaynanova, Urbanek, and Punjabi 2018)

Parameters include

If the units are mg/dL, let f(x) = 1.509(ln(x)1.084 − 5.381). If the units are mmol/L, let f(x) = 1.509(ln(18x)1.084 − 5.381). Let rl(x) = cf(x)2 when f(x) < 0 and rl(x) = 0 otherwise. Let rh(x) = cf(x)2 when f(x) > 0 and rh(x) = 0 otherwise. In the original manuscript, Kovatchev et al use c = 10. Gaynanova et al recommend c = 22.77. Both measures can be obtained from this code, by setting method to corrected or manuscript, respectively. Then, the original manuscript version is

\[ LBGI\_M = \\frac{\\sum rl(x\_t)}{n} \]

\[ HBGI\_M = \\frac{\\sum rh(x\_t)}{n} \]

where n is the total number of glucose readings.

The Easy GV version is

\[ LBGI\_{GV} = \\frac{\\sum rl(x\_t)}{\\sum I(rl(x\_t) &gt; 0)} \]

\[ HBGI\_{GV} = \\frac{\\sum rh(x\_t)}{\\sum I(rh(x\_t) &gt; 0)} \]

Glycemic Risk Assessment Diabetes Equation (GRADE) (Hill et al. 2007)

Parameters include

If the units are mg/dL, let

g(x) = min(425[log(log(x/18)) + C]2, 50) If the units are mmol/L, let

g(x) = min(425[log(log(x)) + C]2, 50)

Where the logarithm is base ten in both cases. Let C = 1.6 for the manuscript calculation and let C = 1.5554147 for the Easy GV calculation.

For the manuscript calculation, GRADEM is the mean of the g(xt). For the Easy GV calculation, GRADE*G**V is the median of the g(xt*).

We also calculate the contributions of hypoglycemia, euglycemia, and hyperglycemia to the GRADE score.

\[ \\text{Hypo percentage} = \\frac{\\sum\\limits\_{x\_t &lt; C\_1} g(x\_t)}{\\sum\\limits\_{\\text{all }x\_t} g(x\_t)} \]

\[ \\text{Eu percentage} = \\frac{\\sum\\limits\_{C\_1 &lt; x\_t &lt; C\_2} g(x\_t)}{\\sum\\limits\_{\\text{all }x\_t} g(x\_t)} \]

\[ \\text{Hyper percentage} = \\frac{\\sum\\limits\_{x\_t &gt; C\_2} g(x\_t)}{\\sum\\limits\_{\\text{all }x\_t} g(x\_t)} \]

If the units are mg/dL, the default values for C1 and C2 are 70.2 and 140.4$ If the units are mmol/L, the defaults are 3.9 and 7.8.

Mean of Daily Differences (MODD) (Molnar, Taylor, and Ho 1972)

Parameters include

For a glucose measurement Xt at time t, let Dt be the difference between Xt and the mean of all glucose measurements made 24 hours prior to Xt, plus or minus s minutes. Let T be the set of times with a Dt value and let k be the number of such observations.

Then, the original manuscript version is

\[ MODD\_M = \\frac{1}{k} \\sum\_T | D\_t | \]

Let T = T \ max(t ∈ T). Then, the Easy GV version is

\[ MODD\_{GV} = \\frac{1}{K-1} \\sum\_{T^-} | D\_t | \]

Mean Amplitude of Glycemic Excursions (MAGE) (Service et al. 1970)

Parameters include

Note that the original manuscript for MAGE is not very precise and does not lead to an obvious calculation of MAGE. While Easy GV does not appear to calculate MAGE in the same way as the original manuscript, the Easy GV version of MAGE is the only one we present here.

Let Dt = Xt − Xt − 1. Then let E be the set of all Dt whose absolute value exceeds the standard deviation of all glucose readings from the day that Dt occurred. Then let E+ be the set that contains the positive Dt values in E, with size #E+. Let E be the set that contains the negative Dt values in E, with size #E+. We then report separate positive and negative MAGE values and the averaged MAGE value:

\[ MAGE\_+ = \\frac{1}{\\\#E^+} \\sum\_{E^+} D\_t \]

\[ MAGE\_- = \\frac{1}{\\\#E^-} \\sum\_{E^-} D\_t \]

MAGE = (MAGE+ + *MAG**E*)/2

Average Daily Risk Range (ADRR) (Kovatchev et al. 2006)

Parameters include

If the units are mg/dL, let

f(x) = [1.509(ln(x)1.084 − 5.381)]

If the units are mmol/L, let

f(x) = [1.509(ln(18x)1.084 − 5.381)] Let rl(x) = 10f(x)2 when f(x) < 0 and rl(x) = 0 otherwise. Let rh(x) = 10f(x)2 when f(x) > 0 and rh(x) = 0 otherwise. Denote (x1d, …, xndd) as the nd glucose values on day d. Then let

LRd = max(rl(x1d), …, *r**l(xndd*))

and

HRd = max(rh(x1d), …, *r**h(xndd*))

for day d. Let D be the total number of days where glucose levels were measured. Then, the original manuscript version is

\[ ADRR\_M = \\frac{1}{D} \\sum\\limits\_{d=1}^D (LR^d + HR^d) \]

The Easy GV version gives high and low measures separately.

\[ ADRR\_{L} = \\frac{1}{D} \\sum\\limits\_{d=1}^D (LR^d) \]

\[ ADRR\_{H} = \\frac{1}{D} \\sum\\limits\_{d=1}^D (HR^d) \]

M-value (Schlichtkrull, Munck, and Jersild 1965)

Parameters include

After conversion of all glucose values to mg/dL, let \(M^\* = (10\\text{log}\\frac{x}{\\text{index}})^3\) and let W = (max(xi) − min(xi))/20. The log used in that equation is base 10.

Then, the original manuscript version is

\[ M\_M = \\frac{1}{N} \\sum\\limits\_{i=1}^N |M^\*| + W \]

The Easy GV version is

\[ M\_{GV} = \\frac{1}{N} \\sum\\limits\_{i=1}^N |M^\*|\]

Mean Absolute Glucose (MAG) (Hermanides et al. 2010)

Parameters include

\[ MAG = \\frac{\\sum\\limits\_{i=1}^{N-1} | x\_{i+1} - x\_i |}{(\\text{max}(t) - \\text{min}(t))/60} \]

where N is the total number of glucose values.

Coefficient of variation (CV)

Parameters include

CV = SD(X)/,

where X is a vector of glucose readings, potentially restricted to a particular time window.

Standard deviation (SD)

Parameters include

\[ SD = \\sqrt{\\frac{1}{N-1}\\sum\_{t \\in T} (x\_t - \\bar{x})^2}, \]

where T is a set of times (potentially restricted to a particular window) and N is the size of T.

Area Under the Curve (AUC)

Parameters include

If above == T,

\[ AUC\_+ = \\sum\_{i=1}^{N-1} I(x\_i \\geq \\nu) I(x\_{i+1} \\geq \\nu)\\Big(min(x\_i - \\nu,x\_{i+1}-\\nu)(t\_{i+1}-t\_i) + |x\_{i+1}-x\_i|(t\_{i+1}-t\_i)/2\\Big)\]

If above == F,

\[ AUC\_- = -\\sum\_{i=1}^{N-1} I(x\_i \\leq \\nu) I(x\_{i+1} \\leq \\nu)\\Big(min(x\_i - \\nu,x\_{i+1}-\\nu)(t\_{i+1}-t\_i) + |x\_{i+1}-x\_i|(t\_{i+1}-t\_i)/2\\Big)\]

where ν is the threshold value and N is the length of the glucose vector.

For each excursion beyond this threshold value, this calculation does not include the triangular area from the threshold to the first glucose value beyond the threshold, nor from the last glucose beyond the threshold back to the threshold. Hence a single glucose value beyond the threshold is not captured by the calculation.

Time spent in range (TIR) (Battelino and others 2019)

Parameters include

This function gives the percentage of glucose readings that fall in a given range (l, u).

\[ TIR = \\sum\_{i=1}^N I(l \\leq x\_i \\leq u) / N \] Battelino et al suggest five ranges: below 54 mg/dL, 55-70, 71-180, 181-250, above 250.

Glucose Management Indicator (GMI) (Bergenstal and others 2018)

Parameters include

Let be the mean of all glucose readings taken. If the units are mg/dL, then

GMI = 3.31 + 0.02392

If the units are mmol/L,

12.71 + 4.70587

Number of episodes per day

Parameters include

This function counts the number of “episodes” where glucose values remain below a certain threshold thresh for a period of at least len minutes. Then the number of episodes is divided by the amount of days that the sensor was active. This amount is calculated by taking the total time (the time between the first and last measurements), subtracting any gaps in time that are longer than gap+2 minutes and then adding back gap minutes for each of the gaps subtracted away.

Glycemic Variability Percentage (GVP) (Peyser et al. 2018)

Parameters include

Let Δxi = xi − xi − 1 and Δti = ti − ti − 1 for i = 2, …, n. Then let \(L = \\sum\_{i=2}^n \\sqrt{\\Delta x\_i^2 + \\Delta t\_i^2}\) and \(L\_0 = \\sum\_{i=2}^n \\Delta t\_i\). Then GVP = (L/L0 − 1) × 100.

Distance Travelled (Marling et al. 2011)

Parameters include

Let *Δ**xi = xi − xi − 1 for i = 2, …, n*. Then the distance travelled is equal to \(\\sum\_{i=2}^n |\\Delta x\_i |\).

Other functions

read.CGM

Parameters include

This function takes in data from a CGM and converts it into a data frame with one column of glucose readings and one column of times (in minutes). These two columns can then be used with any of the glucose variability functions.

plot.CGM

Parameters include

This function returns a plot of blood glucose over time.

plot.diff

Parameters include

This function returns a plot of the n-hour changes in glucose values over time.

plot.symm

Parameters include

This function returns a plot of the “symmetrized” glucose values used in calculating BGI and ADRR.

GV

Parameters include

This is a wrapper function that outputs a table with all 14 metrics, calculated for both manuscript and Easy GV methods, if applicable.

References

Battelino, Tadej, and others. 2019. “Clinical Targets for Continuous Glucose Monitoring Data Interpretation: Recommendations from the International Consensus on Time in Range.” Diabetes Care 42: 1593–1603.

Bergenstal, Richard M., and others. 2018. “Glucose Management Indicator (Gmi): A New Term for Estimating A1c from Continuous Glucose Monitoring.” Diabetes Care 41: 2275–80.

Gaynanova, Irina, Jacek Urbanek, and Naresh M. Punjabi. 2018. “Corrections of Equations on Glycemic Variability and Quality of Glycemic Control.” Diabetes Technology and Therapeutics 20 (4): 317.

Hermanides, Jeroen, Titia M. Vriesendorp, Robert J. Bosman, Durk F. Zandstra, Joost B. Hoekstra, and J. Han DeVries. 2010. “Glucose Variability Is Associated with Intensive Care Unit Mortality.” Critical Care Medicine 38 (3): 838–42.

Hill, N.R., P.C. Hindmarsh, R.J. Stevens, I.M. Stratton, J.C. Levy, and D.R. Matthews. 2007. “A Method for Assessing Quality of Control from Glucose Profiles.” Diabetic Medicine 24: 753–58.

Kovatchev, Boris P., Daniel Cox, Anand Kumar, Linda Gonder-Frederick, and William L. Clarke. 2003. “Algorithmic Evaluation of Metabolic Control and Risk of Severe Hypoglycemia in Type 1 and Type 2 Diabetes Using Self-Monitoring Blood Glucose Data.” Diabetes Technology and Therapeutics 5 (5): 817–28.

Kovatchev, Boris P., Erik Otto, Daniel Cox, Linda Gonder-Frederick, and William Clarke. 2006. “Evaluation of a New Measure of Blood Glucose Variability in Diabetes.” Diabetes Care 29 (11): 2433–8.

Marling, Cynthia R., Jay H. Shubrook, Stanley J. Vernier, Matthew T. Wiley, and Frank L. Schwartz. 2011. “Characterizing Blood Glucose Variability Using New Metrics with Continuous Glucose Monitoring Data.” Journal of Diabetes Science and Technology 5 (4): 871–78.

McDonell, C.M., S.M. Donath, S.I. Vidmar, G.A. Werhter, and F.J. Cameron. 2005. “A Novel Approach to Continuous Glucose Analysis Utilizing Glycemic Variation.” Diabetes Technology and Therapeutics 7 (2): 253–63.

Molnar, G.D., W.F. Taylor, and M.M. Ho. 1972. “Day-to-Day Variation of Continuously Monitored Glycaemia: A Further Measure of Diabetic Instability.” Diabetologia 8: 342–48.

Peyser, Thomas A., Andrew K. Balo, Bruce A. Buckingham, Irl B. Hirsch, and Arturo Garcia. 2018. “Glycemic Variability Percentage: A Novel Method for Assessing Glycemic Variability from Continuous Glucose Monitor Data.” Diabetes Technology and Therapeutics 20 (1): 6–16.

Ryan, Edmond A., Tami Shandro, Kristy Green, Breay W. Path, Peter A. Senior, David Bigam, A.M. James Shapiro, and Marie-Christine Vantyghem. 2004. “Assessment of the Severity of Hypoglycemia and Glycemic Lability in Type 1 Diabetic Subjects Undergoing Islet Transplantation.” Diabetes 53: 955–62.

Schlichtkrull, J., O. Munck, and M. Jersild. 1965. “The M-Value, an Index of Blood-Sugar Control in Diabetics.” Acta Medica Scandinavia 177 (1): 95–102.

Service, F. John, George D. Molnar, John W. Rosevear, Eugene Ackerman, Lael C. Gatewood, and William F. Taylor. 1970. “Mean Amplitude of Glycemic Excursions, a Measure of Diabetic Instability.” Diabetes 19 (9): 644–55.

Wojcicki, J.M. 1995. “J-Index. A New Proposition of the Assessment of Current Glucose Control in Diabetic Patients.” Hormone and Metabolic Research 27: 41–42.