Skip to content

Commit 55f8e27

Browse files
committed
0.4.2
1 parent 0333180 commit 55f8e27

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## Version 0.4.2 - March 18, 2022
4+
### Bugfixes
5+
- `biopsykit.stats.StatsPipeline`: Fixed bug of failing to generate significance brackets from within-subjects
6+
stats data
7+
- `biopsykit.protocols.plotting.saliva_plot`: Fixed wrong plot styling
8+
9+
### New Features
10+
- `biopsykit.plotting.feature_boxplot`: Added `legend_title` parameter
11+
- `biopsykit.classification.model_selection.nested_cv`: Train and test indices are now saved for each fold of the nested cv
12+
- `biopsykit.classification.model_selection.SklearnPipelinePermuter`:
13+
- Updated "scoring" and "refit" behavior
14+
- Added confusion matrix, true labels, predicted labels, train and test indices per fold and flattened
15+
16+
317
## Version 0.4.1 - January 24, 2022
418
### Bugfixes
519
- `biopsykit.signals.imu.static_moment_detection`: Now returning an empty dataframe with correct column names when

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "biopsykit"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
description = "A Python package for the analysis of biopsychological data."
55
authors = [
66
"Robert Richer <[email protected]>",
@@ -23,7 +23,7 @@ pandas = "^1.2.0"
2323
matplotlib = "^3"
2424
seaborn = "^0.11.1"
2525
neurokit2 = "^0.1.3"
26-
pingouin = "^0.5.0"
26+
pingouin = "^0.5.1"
2727
scipy = "^1.7.0"
2828
statannot = "^0.2.3"
2929
tqdm = "^4.62.0"
@@ -33,7 +33,7 @@ nilspodlib = "^3.2.2"
3333
openpyxl = "^3.0.7"
3434
XlsxWriter = "^1.4.5"
3535
xlrd = "^2.0.1"
36-
statsmodels = "^0.12.2"
36+
statsmodels = "^0.13"
3737
fau-colors = "^1.0.2"
3838
mne = {version = "^0.23.0", optional = true}
3939
IPython = {version = "^7.13.0", optional = true}

src/biopsykit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"utils",
3939
]
4040

41-
__version__ = "0.4.1"
41+
__version__ = "0.4.2"
4242

4343

4444
def version() -> None:

0 commit comments

Comments
 (0)