-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from PfizerRD/development
Update to version 0.2.0
- Loading branch information
Showing
62 changed files
with
5,481 additions
and
992 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[run] | ||
data_file = coverage/.coverage | ||
omit = | ||
# setup files | ||
*setup.py | ||
# init files | ||
*__init__.py | ||
# version file | ||
*version.py | ||
source = src/ | ||
|
||
[report] | ||
# regexes for lines to exclude from consideration | ||
exclude_lines = | ||
pragma: no cover | ||
def __repr__ | ||
def __str__ | ||
if version_info | ||
|
||
[html] | ||
directory = coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
.. _skimu api reference | ||
API Reference | ||
================ | ||
============= | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
skimu | ||
read | ||
features | ||
gait | ||
features | ||
sit2stand |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.. automodule:: skimu.read | ||
:ignore-module-all: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.. automodule:: skimu.sit2stand | ||
:ignore-module-all: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.. automodule:: skimu | ||
:ignore-module-all: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,35 @@ | ||
""" | ||
Scikit IMU (:mod:`skimu`) | ||
======================================= | ||
.. currentmodule:: skimu | ||
Pipeline Processing | ||
------------------- | ||
.. autosummary:: | ||
:toctree: generated/ | ||
Pipeline | ||
Utility Functions | ||
----------------- | ||
.. autosummary:: | ||
:toctree: generated/ | ||
utility.compute_window_samples | ||
utility.get_windowed_view | ||
""" | ||
from skimu.version import __version__ | ||
|
||
from skimu.pipeline import Pipeline | ||
from skimu import utility | ||
|
||
from skimu import gait | ||
from skimu import sit2stand | ||
from skimu import features | ||
from skimu import read | ||
|
||
__skimu_version__ = __version__ | ||
__all__ = ['gait', 'sit2stand', 'features', '__skimu_version__'] | ||
__all__ = ['Pipeline', 'gait', 'sit2stand', 'read', 'features', 'utility', '__skimu_version__'] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.