Hello,
I have a protocol using the GT3x+ Actigraph where devices were programed, sent to participants with instruction to wear the device for 3 consecutive day and then sent back to our lab. For example I have a participant that completed the protocol after 7 days vs another participant who completed the protocol after 30+ days.
The devices were initialized to collect data for up to 3+ months so that participants would have enough time to wear the device, and then mail it back. Is there a way in GGIR to correct for this, and take into account only the 3 days of measurement that would be valid?
My initial thoughts were to solve this issue in part to by setting strategy = 3 and then ndayswindow Numeric (default = 4), but am not sure if that is the best approach. My end goal is to get accurate estimations of mean ENMO based on the 3 day measurement protocol.
#-------------------------------
# Part 1 parameters:
#-------------------------------
windowsizes = c(5,900,3600),
do.cal=TRUE,
do.enmo = TRUE,
do.anglez=TRUE,
chunksize=1,
printsummary=TRUE,
#-------------------------------
# Part 2 parameters:
#-------------------------------
strategy = 3,
ndayswindow=4,
hrs.del.start = 1,
hrs.del.end = 1,
maxdur = 9,
includedaycrit = 16,
L5M5window = c(0,24),
M5L5res = 10,
winhr = c(5,10),
qlevels = c(c(1380/1440),c(1410/1440)),
qwindow=c(0,24),
ilevels = c(seq(0,400,by=50),8000),
mvpathreshold =c(100,200,300,400,500)
#-------------------------------