summary_glucose {cgmquantify} | R Documentation |
Compute Glucose Summary Statistics
Description
This function computes the mean, median, minimum, maximum, first quartile, and the third quartile of an indidividual's overall glucose levels
Usage
summary_glucose(df)
Arguments
df |
Data frame read through readfile |
Value
A dataframe containing the mean, median, minimum, maximum, quartile1, and quartile3 of glucose levels
Examples
mydatafile <- system.file("extdata", "my_data_file.csv", package = "cgmquantify")
mydata <- readfile(mydatafile)
summary_glucose(mydata)
[Package cgmquantify version 0.1.0 Index]