# The MIT License (MIT)
# Copyright (c) 2018 Louise AC Millard, MRC Integrative Epidemiology Unit, University of Bristol
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
# documentation files (the "Software"), to deal in the Software without restriction, including without
# limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
# the Software, and to permit persons to whom the Software is furnished to do so, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or substantial portions
# of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
# TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
# CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
# Derive post-medication 1hr and 2hr SG levels - the average of the SG readings in the 15 minute period 1 and 2 hrs after each medication event, respectively.
# Returns the average of these statistics per day, and across all days overall.
medicationStatistics <- function(events, raw) {
# get rows indexes with medication events
idxMed = which(events$event == "MEDICATION")
meds = data.frame(time=c(), time_to_peak=c(), postprand_1hr=c(), postprand_2hr=c())
if (length(idxMed)==0) {
print("No medication")
return(methods::new("event", events = meds, meantimetopeak = NA_real_, meanpp1 = NA_real_, meanpp2 = NA_real_))
}
if (length(idxMed)>0) {
for (i in 1:length(idxMed)) {
idxThisMed = idxMed[i]
# 1-hr and 2-hr postprandial glucose
pp1 = postprandial(raw, events$time[idxThisMed], 1)
pp2 = postprandial(raw, events$time[idxThisMed], 2)
med_sum = data.frame(time=events$time[idxThisMed], time_to_peak = NA_real_, postprand_1hr=pp1, postprand_2hr=pp2)
meds = rbind(meds, med_sum)
}
}
# average values
pp1sMean = mean(meds$postprand_1hr, na.rm=TRUE)
pp2sMean = mean(meds$postprand_2hr, na.rm=TRUE)
events = methods::new("event", events = meds, meantimetopeak = NA_real_, meanpp1 = pp1sMean, meanpp2 = pp2sMean)
return(events)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.