agg.accfile(object, by, x = NULL, y = NULL,
keep.error = FALSE)
Arguments
object
an object of class accfile.
by
epoch by which count and steps are aggregated. Note: it cannot be less that the accelerometer epoch (object$info$epoch).
x
optional argument. If NULL, this is set to counts (object$counts).
y
optional argument. If NULL, this is set to counts (object$steps).
keep.error
logical flag. Should errors be omitted?
Value
countsaggregated counts
stepsaggregated steps
ts_aggtime stamping
References
Geraci M, Rich C, Sera F, Cortina-Borja M, Griffiths LJ, and Dezateux C (2012). Technical report on accelerometry data processing in the Millennium Cohort Study. London, UK: University College London. Available at http://discovery.ucl.ac.uk/1361699
data(gt1m_sample)
# aggregate by 30-second epochsagg.accfile(gt1m_sample, by = 30)
# aggregate by 5-minute epochsagg.accfile(gt1m_sample, by = 300, keep.error = FALSE)