Skip to content

Commit 538978d

Browse files
committed
updated type hinting for core and some various docstrings
1 parent 71b774a commit 538978d

7 files changed

+183
-110
lines changed

src/ethoscopy/analyse.py

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def max_velocity_detector(data: pd.DataFrame,
4141
return None
4242

4343
required_columns = ['t', 'x', 'y', 'w', 'h', 'phi', 'xy_dist_log10x1000']
44+
# optional columns is a legacy of the R version. All ethoscope data should have it now
4445
optional_columns = ['has_interacted']
4546

4647
# Prepare and bin the data

src/ethoscopy/behavpy_HMM_class.py

+12-6
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,20 @@
22

33
class behavpy_HMM(behavpy_core):
44
"""
5-
An inheritor class to aid with backwards compatability prior to version 2.0.0, so that old saved pickles of data can still be loaded
5+
A compatibility class that inherits from behavpy_core to support loading data from versions prior to 2.0.0.
6+
7+
This class allows loading of legacy pickled behavpy data files while maintaining core functionality.
8+
Note that plotting methods are not available in the initial loaded state.
69
7-
When old data is loaded it will only have the core functionalities no plotting methods. The user must re-intiated either a plotly or
8-
seaborn behavpy class with the data and metadata, i.e.
10+
To access plotting functionality, the data must be re-instantiated with either the plotly or
11+
seaborn canvas option.
912
10-
old_df = pd.read_pickle('path_to_data')
11-
new_df = etho.behavpy(old_df, old_df.meta, check = True, canvas = 'seaborn')
12-
13+
Both HMM and circadian classes have been folded into the one class as of 2.0.0.
14+
15+
Example
16+
-------
17+
>>> old_hmm_df = pd.read_pickle('path_to_data')
18+
>>> new_df = etho.behavpy(old_df, old_df.meta, check=True, canvas='seaborn')
1319
"""
1420
# set meta as permenant attribute
1521
_metadata = ['meta']

src/ethoscopy/behavpy_class.py

+10-6
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,18 @@
22

33
class behavpy(behavpy_core):
44
"""
5-
An inheritor class to aid with backwards compatability prior to version 2.0.0, so that old saved pickles of data can still be loaded
5+
A compatibility class that inherits from behavpy_core to support loading data from versions prior to 2.0.0.
6+
7+
This class allows loading of legacy pickled behavpy data files while maintaining core functionality.
8+
Note that plotting methods are not available in the initial loaded state.
69
7-
When old data is loaded it will only have the core functionalities no plotting methods. The user must re-intiated either a plotly or
8-
seaborn behavpy class with the data and metadata, i.e.
10+
To access plotting functionality, the data must be re-instantiated with either the plotly or
11+
seaborn canvas option.
912
10-
old_df = pd.read_pickle('path_to_data')
11-
new_df = etho.behavpy(old_df, old_df.meta, check = True, canvas = 'seaborn')
12-
13+
Example
14+
-------
15+
>>> old_df = pd.read_pickle('path_to_data')
16+
>>> new_df = etho.behavpy(old_df, old_df.meta, check=True, canvas='seaborn')
1317
"""
1418
# set meta as permenant attribute
1519
_metadata = ['meta']

src/ethoscopy/behavpy_core.py

+146-90
Large diffs are not rendered by default.

src/ethoscopy/behavpy_draw.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from ethoscopy.behavpy_core import behavpy_core
1717
from ethoscopy.misc.bootstrap_CI import bootstrap
1818
from ethoscopy.misc.general_functions import concat
19-
from ethoscopy.misc.hmm_functions import hmm_pct_transition, hmm_mean_length, hmm_pct_state
19+
from ethoscopy.misc.hmm_functions import hmm_pct_transition, hmm_mean_length #, hmm_pct_state
2020

2121
class behavpy_draw(behavpy_core):
2222
"""

src/ethoscopy/behavpy_periodogram_class.py

+12-6
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,20 @@
22

33
class behavpy_periodogram(behavpy_core):
44
"""
5-
An inheritor class to aid with backwards compatability prior to version 2.0.0, so that old saved pickles of data can still be loaded
5+
A compatibility class that inherits from behavpy_core to support loading data from versions prior to 2.0.0.
6+
7+
This class allows loading of legacy pickled behavpy data files while maintaining core functionality.
8+
Note that plotting methods are not available in the initial loaded state.
69
7-
When old data is loaded it will only have the core functionalities no plotting methods. The user must re-intiated either a plotly or
8-
seaborn behavpy class with the data and metadata, i.e.
10+
To access plotting functionality, the data must be re-instantiated with either the plotly or
11+
seaborn canvas option.
912
10-
old_df = pd.read_pickle('path_to_data')
11-
new_df = etho.behavpy(old_df, old_df.meta, check = True, canvas = 'seaborn')
12-
13+
Both HMM and circadian classes have been folded into the one class as of 2.0.0.
14+
15+
Example
16+
-------
17+
>>> old_hmm_df = pd.read_pickle('path_to_data')
18+
>>> new_df = etho.behavpy(old_df, old_df.meta, check=True, canvas='seaborn')
1319
"""
1420
# set meta as permenant attribute
1521
_metadata = ['meta']

src/ethoscopy/misc/validate_datetime.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def validate_datetime(data: pd.DataFrame) -> pd.DataFrame:
1818
ValueError: If date format cannot be converted to YYYY-MM-DD
1919
"""
2020
# Define supported date formats
21-
date_formats = ['%Y-%m-%d', '%d-%m-%Y', '%d/%m/%Y']
21+
date_formats = ['%Y-%m-%d', '%d-%m-%Y', '%d/%m/%Y', '%Y/%d/%m']
2222

2323
def convert_date(date_str, row_idx):
2424
for fmt in date_formats:

0 commit comments

Comments
 (0)