below_percent: Calculate percentage below targeted values

View source: R/below_percent.R

below_percentR Documentation

Calculate percentage below targeted values

Description

The function below_percent produces a tibble object with values equal to the percentage of glucose measurements below target values. The output columns correspond to the subject id followed by the target values and the output rows correspond to the subjects. The values will be between 0 (no measurements) and 100 (all measurements).

Usage

below_percent(data, targets_below = c(54, 70))

Arguments

data

DataFrame with column names ("id", "time", and "gl"), or numeric vector of glucose values.

targets_below

Numeric vector of glucose thresholds. Glucose values from data argument will be compared to each value in the targets_below vector. Default list is (54, 70).

Details

A tibble object with 1 row for each subject, a column for subject id and column for each target value is returned. NA's will be omitted from the glucose values in calculation of percent.

Value

If a data.frame object is passed, then a tibble object with a column for subject id and then a column for each target value is returned. If a vector of glucose values is passed, then a tibble object without the subject id is returned. as.numeric() can be wrapped around the latter to output a numeric vector.

References

Rodbard (2009) Interpretation of continuous glucose monitoring data: glycemic variability and quality of glycemic control, Diabetes Technology and Therapeutics 11 .55-67, \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1089/dia.2008.0132")}.

See Also

plot_ranges()

Examples


data(example_data_1_subject)

below_percent(example_data_1_subject)
below_percent(example_data_1_subject, targets_below = c(50, 100, 180))

data(example_data_5_subject)

below_percent(example_data_5_subject)
below_percent(example_data_5_subject, targets_below = c(80, 180))


iglu documentation built on Oct. 20, 2023, 5:07 p.m.