Skip to content

Commit 8f148c1

Browse files
authored
[MERGE] v.0.6.0
See changelog.md
2 parents 2a5ebe1 + ff5ef39 commit 8f148c1

36 files changed

Lines changed: 3104 additions & 2779 deletions

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ on:
1212
jobs:
1313
build:
1414

15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-20.04
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: [3.6, 3.7, 3.8, 3.9, '3.10']
19+
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', 3.11]
2020

2121
steps:
2222
- uses: actions/checkout@v3

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ __pycache__
33
build
44
dist
55

6+
statannot.egg-info/
67
statannot.egg-info/dependency_links.txt
78
statannot.egg-info/PKG-INFO
89
statannot.egg-info/requires.txt
910
statannot.egg-info/SOURCES.txt
1011
statannot.egg-info/top_level.txt
12+
13+
# IDE files
14+
.idea/

CHANGELOG.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
1-
## v0.5
2-
### v0.5.0
1+
## v0.6
2+
### v0.6.0
3+
#### Features
4+
- Add option to skip annotation of non-significant results
5+
(PR [#95](https://github.com/trevismd/statannotations/pull/95) by
6+
[sepro](https://github.com/sepro))
7+
8+
#### Fixes
9+
- Fix keeping annotation with reduced ylim (
10+
PR [#116](https://github.com/trevismd/statannotations/issues/116) by
11+
[amkorb](https://github.com/amkorb))
12+
- Fix pvalue legend (usually for NS range)
13+
14+
#### Additional testing and documentation:
15+
- PR [#84](https://github.com/trevismd/statannotations/pull/84) by
16+
[JasonMendoza2008 ](https://github.com/JasonMendoza2008)
17+
- PR [#86](https://github.com/trevismd/statannotations/pull/86) by
18+
[mbhall88](https://github.com/mbhall88)
19+
- PR [#117](https://github.com/trevismd/statannotations/pull/117) by
20+
[tathey1](https://github.com/tathey1)
21+
22+
## v0.5.0
323
- Add scipy's Brunner-Munzel test
424
- Fix applying statannotations for non-string group labels (Issue
525
[#65](https://github.com/trevismd/statannotations/issues/65))

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,15 @@ corresponding branch).
6262
- Optionally, custom p-values can be given as input.
6363
In this case, no statistical test is performed, but **corrections for
6464
multiple testing can be applied.**
65+
- It is also possible to hide non statistically significant annotations
6566
- Any text can be used as annotation
6667
- And various fixes (see
6768
[CHANGELOG.md](https://github.com/trevismd/statannotations/blob/master/CHANGELOG.md)).
6869

6970
## Installation
7071

7172
From version 0.3.0 on, the package is distributed on PyPi.
72-
The latest stable release (v0.5.0) can be downloaded and installed with:
73+
The latest stable release (v0.6.0) can be downloaded and installed with:
7374
```bash
7475
pip install statannotations
7576
```
@@ -90,9 +91,9 @@ pip install -r requirements.txt .
9091

9192
## Important note
9293

93-
**! Seaborn ≥ v0.12 is not officially supported, we know there are at least
94-
some bugs. Issues can still be reported (and upvoted) in order to plan further
95-
development to support these versions. Also see
94+
**! Seaborn ≥ v0.12 and pandas 2 are not officially supported, we know there are
95+
at least some bugs. Issues can still be reported (and upvoted) in order to plan
96+
further development to support these versions. Also see
9697
[discussion](https://github.com/trevismd/statannotations/discussions/81)**.
9798

9899
## Usage
@@ -142,7 +143,7 @@ annotator.apply_and_annotate()
142143
+ numpy >= 1.12.1
143144
+ seaborn >= 0.9,<0.12
144145
+ matplotlib >= 2.2.2
145-
+ pandas >= 0.23.0
146+
+ pandas >= 0.23.0,<2.0.0
146147
+ scipy >= 1.1.0
147148
+ statsmodels (optional, for multiple testing corrections)
148149

@@ -171,7 +172,7 @@ Bibtex
171172
month = oct,
172173
year = 2022,
173174
publisher = {Zenodo},
174-
version = {v0.5},
175+
version = {v0.6},
175176
doi = {10.5281/zenodo.7213391},
176177
url = {https://doi.org/10.5281/zenodo.7213391}
177178
}
@@ -181,7 +182,7 @@ Example
181182
Florian Charlier, Marc Weber, Dariusz Izak, Emerson Harkin, Marcin Magnus,
182183
Joseph Lalli, Louison Fresnais, Matt Chan, Nikolay Markov, Oren Amsalem,
183184
Sebastian Proost, Agamemnon Krasoulis, getzze, & Stefan Repplinger. (2022).
184-
Statannotations (v0.5). Zenodo. https://doi.org/10.5281/zenodo.7213391
185+
Statannotations (v0.6). Zenodo. https://doi.org/10.5281/zenodo.7213391
185186
```
186187

187188
## Contributing
21 Bytes
Binary file not shown.
2.42 KB
Binary file not shown.
1.54 KB
Binary file not shown.

docs/build/html/_sources/modules.rst.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ statannotations
55
:maxdepth: 4
66

77
statannotations
8+
custom-test

docs/build/html/_sources/statannotations.rst.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ statannotations.Annotation module
2020
:undoc-members:
2121
:show-inheritance:
2222

23+
.. _Annotator_module:
24+
2325
statannotations.Annotator module
2426
--------------------------------
2527

docs/build/html/_sources/statannotations.stats.rst.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ statannotations.stats.StatResult module
2020
:undoc-members:
2121
:show-inheritance:
2222

23+
.. _StatTest_module:
24+
2325
statannotations.stats.StatTest module
2426
-------------------------------------
2527

0 commit comments

Comments
 (0)