Skip to content

Commit b95ce39

Browse files
committed
citation for threshold values for mims.
1 parent a65f83f commit b95ce39

1 file changed

Lines changed: 15 additions & 3 deletions

File tree

src/wristpy/core/orchestrator.py

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def run(
5151
path should end in the save file name in either .csv or .parquet formats.
5252
thresholds: The cut points for the light, moderate, and vigorous thresholds,
5353
given in that order. Values must be asscending, unique, and greater than 0.
54-
Default values are optimized for subjects ages 7-11 [1].
54+
Default values are optimized for subjects ages 7-11 [1][3].
5555
calibrator: The calibrator to be used on the input data.
5656
epoch_length: The temporal resolution in seconds, the data will be down sampled
5757
to. It must be > 0.0.
@@ -79,6 +79,10 @@ def run(
7979
Going S, Norman JE, Pate R. Defining accelerometer thresholds for activity
8080
intensities in adolescent girls. Med Sci Sports Exerc. 2004 Jul;36(7):1259-66.
8181
PMID: 15235335; PMCID: PMC2423321.
82+
[3] Karas M, Muschelli J, Leroux A, Urbanek J, Wanigatunga A, Bai J,
83+
Crainiceanu C, Schrack J Comparison of Accelerometry-Based Measures of Physical
84+
Activity: Retrospective Observational Data Analysis Study JMIR Mhealth Uhealth
85+
2022;10(7):e38077 URL: https://mhealth.jmir.org/2022/7/e38077 DOI: 10.2196/38077
8286
"""
8387
logger.setLevel(verbosity)
8488

@@ -159,7 +163,7 @@ def _run_directory(
159163
output: Path to directory data will be saved to.
160164
thresholds: The cut points for the light, moderate, and vigorous thresholds,
161165
given in that order. Values must be asscending, unique, and greater than 0.
162-
Default values are optimized for subjects ages 7-11 [1].
166+
Default values are optimized for subjects ages 7-11 [1][2].
163167
calibrator: The calibrator to be used on the input data.
164168
epoch_length: The temporal resolution in seconds, the data will be down sampled
165169
to. It must be > 0.0.
@@ -181,6 +185,10 @@ def _run_directory(
181185
[1] Hildebrand, M., et al. (2014). Age group comparability of raw accelerometer
182186
output from wrist- and hip-worn monitors. Medicine and Science in Sports and
183187
Exercise, 46(9), 1816-1824.
188+
[2] Karas M, Muschelli J, Leroux A, Urbanek J, Wanigatunga A, Bai J,
189+
Crainiceanu C, Schrack J Comparison of Accelerometry-Based Measures of Physical
190+
Activity: Retrospective Observational Data Analysis Study JMIR Mhealth Uhealth
191+
2022;10(7):e38077 URL: https://mhealth.jmir.org/2022/7/e38077 DOI: 10.2196/38077
184192
"""
185193
if output is None and output_filetype is not None:
186194
raise ValueError("If no output is given, output_filetype must be None.")
@@ -259,7 +267,7 @@ def _run_file(
259267
either .csv or .parquet formats.
260268
thresholds: The cut points for the light, moderate, and vigorous thresholds,
261269
given in that order. Values must be ascending, unique, and greater than 0.
262-
Default values are optimized for subjects ages 7-11 [1].
270+
Default values are optimized for subjects ages 7-11 [1][3].
263271
calibrator: The calibrator to be used on the input data.
264272
epoch_length: The temporal resolution in seconds, the data will be down sampled
265273
to. It must be > 0.0.
@@ -283,6 +291,10 @@ def _run_file(
283291
calculated from raw acceleration data: a novel method for classifying the
284292
intensity of adolescents' physical activity irrespective of accelerometer brand.
285293
BMC Sports Sci Med Rehabil 7, 18 (2015). https://doi.org/10.1186/s13102-015-0010-0.
294+
[3] Karas M, Muschelli J, Leroux A, Urbanek J, Wanigatunga A, Bai J,
295+
Crainiceanu C, Schrack J Comparison of Accelerometry-Based Measures of Physical
296+
Activity: Retrospective Observational Data Analysis Study JMIR Mhealth Uhealth
297+
2022;10(7):e38077 URL: https://mhealth.jmir.org/2022/7/e38077 DOI: 10.2196/38077
286298
"""
287299
logger.setLevel(verbosity)
288300
if output is not None:

0 commit comments

Comments
 (0)