Skip to main content

Sit-to-stand detection using a single lumbar-mounted accelerometer.

Project description

Sit2StandPy

Sit2StandPy is an open source Python package that uses novel algorithms to first detect Sit-to-Stand transitions from lumbar-mounted accelerometer data, and then provide quantitative metrics assessing the performance of the transitions. A modular framework is employed that would allow for easy modification of parts of the algorithm to suit other specific requirements, while still keeping core elements of the algorithm intact. As gyroscopes impose a significant detriment to battery life due to power consumption, Sit2StandPy's use of acceleration only allows for a single sensor to collect days worth of analyzable data.

Documentation

Full documentation is available, containing API references, installation instructions, and usage examples.

Requirements

  • Python >= 3.7
  • Numpy
  • pandas
  • Scipy
  • pywavelets
  • udatetime

To run the tests, additionally the following are needed

  • pytest
  • h5py

Installation

Run in the command line/terminal:

pip install sit2standpy

pip will automatically collect and install the required packages by default. If you do not want this behavior, run

pip install sit2standpy --no-deps

Testing

Automated tests can be run with pytest through the terminal:

pytest --pyargs sit2standpy.tests -v

To run the v2 interface tests:

pytest --pyargs sit2standpy.v2.tests -v

V2 Interface

Starting with version 1.1.0 a new "v2" interface is available alongside the old interface. Following a sequential pipeline layout, a basic usage example is:

import sit2standpy as s2s

# transform the data into the appropriate format for H5 or dictionary
# note that "data_transform_function" is your own function to achieve the appropriate format
# if you are looking for a quick example data loader function, you can use the one at
# https://gist.github.com/LukasAdamowicz/b8481ef32e4beeb77c80f29f34c8045e
data = <data_transform/loader_function>(acceleration_data)

sequence = s2s.v2.Sequential()
sequence.add(s2s.v2.WindowDays(hours=[8, 20]))  # window the data into days using only the hours from 8:00 to 20:00
sequence.add(s2s.v2.AccelerationFilter())  # Do the initial filtering and processing required
sequence.add(s2s.v2.Detector(stillness_constraint=True))  # Detect the transitions using the stillness constraint

sequence.predict(data)  # predict and save the results into data

s2s.v2.tabulate_results(data, path_to_csv_output, method='stillness')  # tabulate the results to a csv for easy reading

Old Usage

Basic use is accomplished through the Sit2Stand object:

import sit2standpy as s2s
import numpy as np  # importing sample data
from sys import version_info
if version_info < (3, 7):
    from pkg_resources import resource_filename
else:
    from importlib import resources

# locate the sample data and load it (depending on python version)
if version_info < (3, 7):
    file_path = resource_filename('sit2standpy', 'data/sample.csv')
    data = np.loadtxt(file_path, delimiter=',')
else:
    with resources.path('sit2standpy.data', 'sample.csv') as file_path:
        data = np.loadtxt(file_path, delimiter=',')

# separate the stored sample data
time = data[:, 0]
accel = data[:, 1:]

# initialize the framework for detection
ths = {'stand displacement': 0.125, 'transition velocity': 0.3, 'accel moving avg': 0.15,
                   'accel moving std': 0.1, 'jerk moving avg': 2.5, 'jerk moving std': 3}
sts = s2s.Sit2Stand(method='stillness', gravity=9.84, thresholds=ths, long_still=0.3, still_window=0.3,
                    duration_factor=4, displacement_factor=0.6, lmin_kwargs={'height': -9.5}, power_band=[0, 0.5],
                    power_peak_kwargs={'distance': 128}, power_stdev_height=True)

# run the sit-to-stand detection
SiSt = sts.apply(accel, time, time_units='us')

# print the list of Transition objects, stored as a dictionary with the time they occurred
print(SiSt)

sit_to_stands is then a dictionary of Transition objects containing information about each of the transitions detected

Contributing

Contributions are welcome. Please see the contributions document for more information

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sit2standpy-1.1.2.tar.gz (1.6 MB view details)

Uploaded Source

Built Distribution

sit2standpy-1.1.2-py3-none-any.whl (2.2 MB view details)

Uploaded Python 3

File details

Details for the file sit2standpy-1.1.2.tar.gz.

File metadata

  • Download URL: sit2standpy-1.1.2.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.0.0.post20200311 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.6

File hashes

Hashes for sit2standpy-1.1.2.tar.gz
Algorithm Hash digest
SHA256 c66aa8335a754b16f53c9df3b0a0b12bbac6b290d8804c7aa1bdb9650348b04f
MD5 5d4c97ee4ae5b9d1ae737733c363183a
BLAKE2b-256 40ef2455447dead3bf5381c1948723cb262c44e25573f7efc96ce5e8321c12d9

See more details on using hashes here.

File details

Details for the file sit2standpy-1.1.2-py3-none-any.whl.

File metadata

  • Download URL: sit2standpy-1.1.2-py3-none-any.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.0.0.post20200311 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.6

File hashes

Hashes for sit2standpy-1.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c9536b7ed45561b773b82cb87f38e8a3044a14889a714b6675cac5989a07cfde
MD5 8c7c43a003730eb31b24f4a0b6124ee6
BLAKE2b-256 c36f358fa519e6f195132171c2204ebc2d6351fdd929bd5bd899aaa532262a94

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page