A package to extract meaningful health information from large accelerometer datasets e.g. how much time individuals spend in sleep, sedentary behaviour, walking and moderate intensity physical activity
Project description
A tool to extract meaningful health information from large accelerometer datasets. The software generates time-series and summary metrics useful for answering key questions such as how much time is spent in sleep, sedentary behaviour, or doing physical activity.
Install
Minimum requirements: Python>=3.7, Java 8 (1.8)
The following instructions make use of Anaconda to meet the minimum requirements:
- Download & install Miniconda (light-weight version of Anaconda).
- (Windows) Once installed, launch the Anaconda Prompt.
- Create a virtual environment:
$ conda create -n accelerometer python=3.9 openjdk pip
This creates a virtual environment calledaccelerometer
with Python version 3.9, OpenJDK, and Pip. - Activate the environment:
$ conda activate accelerometer
You should now see(accelerometer)
written in front of your prompt. - Install
accelerometer
:$ pip install accelerometer
You are all set! The next time that you want to use accelerometer
, open the Anaconda Prompt and activate the environment (step 4). If you see (accelerometer)
in front of your prompt, you are ready to go!
Usage
To extract summary movement statistics from an Axivity file (.cwa):
$ accProcess data/sample.cwa.gz
<output written to data/sample-outputSummary.json>
<time series output written to data/sample-timeSeries.csv.gz>
Movement statistics will be stored in a JSON file:
{
"file-name": "sample.cwa.gz",
"file-startTime": "2014-05-07 13:29:50",
"file-endTime": "2014-05-13 09:49:50",
"acc-overall-avg(mg)": 32.78149,
"wearTime-overall(days)": 5.8,
"nonWearTime-overall(days)": 0.04,
"quality-goodWearTime": 1
}
See Data Dictionary for the list of output variables.
Actigraph and GENEActiv files are also supported, as well as custom CSV files. See Usage for more details.
To plot the activity profile:
$ accPlot data/sample-timeSeries.csv.gz
<output plot written to data/sample-timeSeries-plot.png>
Troubleshooting
Some systems may face issues with Java when running the script. If this is your case, try fixing OpenJDK to version 8:
$ conda install -n accelerometer openjdk=8
Under the hood
Interpreted levels of physical activity can vary, as many approaches can be taken to extract summary physical activity information from raw accelerometer data. To minimise error and bias, our tool uses published methods to calibrate, resample, and summarise the accelerometer data.
See Methods for more details.
Citing our work
When using this tool, please consider the works listed in CITATION.md.
Licence
See LICENSE.md.
Acknowledgements
We would like to thank all our code contributors and manuscript co-authors.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file accelerometer-7.2.0.tar.gz
.
File metadata
- Download URL: accelerometer-7.2.0.tar.gz
- Upload date:
- Size: 1.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65f87afa880e5bb13a49e4c8543e6fb9eea52cbb601ad83040e449626c74d95b |
|
MD5 | 3599c041794d2bb833c5ae4c7bb86f9a |
|
BLAKE2b-256 | d451552137865818255bed6f3cb707349192c9613d9ba9c0b1024026b83bdca7 |
File details
Details for the file accelerometer-7.2.0-py3-none-any.whl
.
File metadata
- Download URL: accelerometer-7.2.0-py3-none-any.whl
- Upload date:
- Size: 1.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73bde6321aa4c95be7da717eebd26d0e9de17a863b660d5a4cbfae07545797da |
|
MD5 | f29b90d8443a1e805ab5616dd9c201ae |
|
BLAKE2b-256 | efc192432dc50ae355920799bb0db4dbe2b3b9982b53bbad671b5fa174d8dd8d |