Calculate Step Counts via `stepcount`
acti_calculate_stepcount.RdUse the `stepcount` package to estimate steps from raw accelerometer data and summarize them to minute-level epochs (as opposed to 10s default)
Examples
if (FALSE) { # \dontrun{
reticulate::py_require("stepcount==3.11.0", python_version = "3.10", action = "add")
sc = reticulate::import("stepcount")
data = actiread::acti_read_gt3x(actiread::acti_example_gt3x())
steps = acti_calculate_stepcount(data, sample_rate = 100)
steps = acti_calculate_stepcount(data, model_type = "rf")
} # }