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
data = data_transform_function(acceleration_data)

sequence = s2s.v2.Sequential()
sequence.add(WindowDays(hours=[8, 20]))  # window the data into days using only the hours from 8:00 to 20:00
sequence.add(AccelerationFilter())  # Do the initial filtering and processing required
sequence.add(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', '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.1.post4.tar.gz (1.6 MB view details)

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

Details for the file sit2standpy-1.1.1.post4.tar.gz.

File metadata

  • Download URL: sit2standpy-1.1.1.post4.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.5

File hashes

Hashes for sit2standpy-1.1.1.post4.tar.gz
Algorithm Hash digest
SHA256 77d0c91be059850ab1a2034c5c9002ffca921ae9dce7817eba6513ce41e13811
MD5 88a47ba77eeb6e2981d6535b7a689c0f
BLAKE2b-256 95f0a3feefeb370c81faf14657bb608d73c2972ff10db0fd5e4f2f72005055ac

See more details on using hashes here.

File details

Details for the file sit2standpy-1.1.1.post4-py3-none-any.whl.

File metadata

  • Download URL: sit2standpy-1.1.1.post4-py3-none-any.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3.post20200330 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.5

File hashes

Hashes for sit2standpy-1.1.1.post4-py3-none-any.whl
Algorithm Hash digest
SHA256 8d6fe138495f2a5e9ed3cc444ec33e4eae1f8c96a3c081506c1519f549059a90
MD5 bef414769d8fb6ba1d8fd2fcc26b32ba
BLAKE2b-256 e44ad56f0fca9410ab733e5c6e96f743eef04af6faceca4439d760c5c3577aba

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