actibase is a baseline package for raw actigraphy and
activity workflows. It provides readers and core preprocessing helpers
that downstream packages can build on, such as step-count or
summarization overlays.
You can install actibase from GitHub with:
# install.packages("remotes")
remotes::install_github("jhuwit/actibase")library(actibase)
res = acti_standardize_data(acti_raw_data)
resampled = acti_resample(res, sample_rate = 30L)actibase keeps the primitives that other packages can
build on:
Higher-level summarization, step-count mapping, and downstream analysis should live in overlay packages.