Skip to content

Commit 46ca02d

Browse files
committed
Bump version and write release info
1 parent 81a4a64 commit 46ca02d

6 files changed

Lines changed: 77 additions & 46 deletions

File tree

CHANGELOG.md

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,31 @@
22

33
<!-- do not remove -->
44

5+
## 2024.03.29
6+
7+
### New Features
8+
9+
- **Forest Plot**: With the new forest plot functionality, DABEST users can now generate forest plots, a mainstay in meta-analysis. This plot type is invaluable for visualizing the results of multiple studies or analyses simultaneously, showing not just the estimated effect sizes but also their confidence intervals. It is built upon the calculation and existing DABEST feature of delta-delta and mini-meta analysis and facilitates systematic reviews by generating a summary plot that compares delta-delta or mini-meta effect size plots from different studies or analysis. It's an essential tool for researchers conducting systematic reviews or wanting to summarize a body of evidence in a single, comprehensive visual.
10+
11+
- **Standardized Delta-delta Effect Size**: We added a new metric akin to a Hedges’ g for delta-delta effect size, which allows comparisons between delta-delta effects generated from metrics with different units.
12+
13+
- **New Paired Proportion Plot**: This feature builds upon the existing proportional analysis capabilities by introducing advanced aesthetics and clearer visualization of changes in proportions between different groups, inspired by the informative nature of Sankey Diagrams. It's particularly useful for studies that require detailed examination of how proportions shift in paired observations.
14+
15+
- **Customizable Swarm Plot**: Enhancements allow for tailored swarm plot aesthetics, notably the adjustment of swarm sides to produce asymmetric swarm plots. This customization enhances data representation, making visual distinctions more pronounced and interpretations clearer.
16+
17+
### Enhancement
18+
19+
- **Miscellaneous Improvements**: This version also encompasses a broad range of miscellaneous enhancements, including bug fixes, Bootstrapping speed improvements, new templates for raising issues, and updated unit tests. These improvements are designed to streamline the user experience, increase the software's stability, and expand its versatility. By addressing user feedback and identified issues, DABEST continues to refine its functionality and reliability.
20+
21+
22+
523
## 2023.03.29
624

725
### New Features
8-
- Add new form of paired proportion plots for a better support of Repeated Measures
26+
- **Repeated measures**: Augments the prior function for plotting (independent) multiple test groups versus a shared control; it can now do the same for repeated-measures experimental designs. Thus, together, these two methods can be used to replace both flavors of the 1-way ANOVA with an estimation analysis.
927

28+
- **Proportional data**: Generates proportional bar plots, proportional differences, and calculates Cohen’s h. Also enables plotting Sankey diagrams for paired binary data. This is the estimation equivalent to a bar chart with Fischer’s exact test.
1029

11-
## 0.2.3
30+
- **The ∆∆ plot**: Calculates the delta-delta (∆∆) for 2 × 2 experimental designs and plots the four groups with their relevant effect sizes. This design can be used as a replacement for the 2 × 2 ANOVA.
1231

13-
### Bug Fixes
14-
- Fixes a bug that jammed up when the xvar column was already a pandas Categorical. Now we check for this and act appropriately.
32+
- **Mini-meta**: Calculates and plots a weighted delta (∆) for meta-analysis of experimental replicates. Useful for summarizing data from multiple replicated experiments, for example by different scientists in the same lab, or the same scientist at different times. When the observed values are known (and share a common metric), this makes meta-analysis available as a routinely accessible tool.

README.md

Lines changed: 43 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,49 @@
44

55
## Recent Version Update
66

7-
On 20 March 2023, we officially released **DABEST v2023.02.14 for
8-
Python**. This new version provided the following new features:
9-
10-
1. **Repeated measures.** Augments the prior function for plotting
11-
(independent) multiple test groups versus a shared control; it can
12-
now do the same for repeated-measures experimental designs. Thus,
13-
together, these two methods can be used to replace both flavors of
14-
the 1-way ANOVA with an estimation analysis.
15-
16-
2. **Proportional data.** Generates proportional bar plots,
17-
proportional differences, and calculates Cohen’s h. Also enables
18-
plotting Sankey diagrams for paired binary data. This is the
19-
estimation equivalent to a bar chart with Fisher’s exact test.
20-
21-
3. **The $\Delta\Delta$ plot.** Calculates the delta-delta
22-
($\Delta\Delta$) for 2 × 2 experimental designs and plots the four
23-
groups with their relevant effect sizes. This design can be used as
24-
a replacement for the 2 × 2 ANOVA.
25-
26-
4. **Mini-meta.** Calculates and plots a weighted delta ($\Delta$) for
27-
meta-analysis of experimental replicates. Useful for summarizing
28-
data from multiple replicated experiments, for example by different
29-
scientists in the same lab, or the same scientist at different
30-
times. When the observed values are known (and share a common
31-
metric), this makes meta-analysis available as a routinely
32-
accessible tool.
7+
On 22 March 2024, we officially released **DABEST v2024.3.29 for
8+
Python**. This new version provides several new features and includes
9+
performance improvements.
10+
11+
1. **Forest Plot**: With the new forest plot functionality, DABEST
12+
users can now generate forest plots, a mainstay in meta-analysis.
13+
This plot type is invaluable for visualizing the results of multiple
14+
studies or analyses simultaneously, showing not just the estimated
15+
effect sizes but also their confidence intervals. It is built upon
16+
the calculation and existing DABEST feature of delta-delta and
17+
mini-meta analysis and facilitates systematic reviews by generating
18+
a summary plot that compares delta-delta or mini-meta effect size
19+
plots from different studies or analysis. It’s an essential tool for
20+
researchers conducting systematic reviews or wanting to summarize a
21+
body of evidence in a single, comprehensive visual.
22+
23+
2. **New Paired Proportion Plot**: This feature builds upon the
24+
existing proportional analysis capabilities by introducing advanced
25+
aesthetics and clearer visualization of changes in proportions
26+
between different groups, inspired by the informative nature of
27+
Sankey Diagrams. It’s particularly useful for studies that require
28+
detailed examination of how proportions shift in paired
29+
observations.
30+
31+
3. **Customizable Swarm Plot**: Enhancements allow for tailored swarm
32+
plot aesthetics, notably the adjustment of swarm sides to produce
33+
asymmetric swarm plots. This customization enhances data
34+
representation, making visual distinctions more pronounced and
35+
interpretations clearer.
36+
37+
4. **Standardized Delta-delta Effect Size**: We added a new metric akin
38+
to a Hedges’ g for delta-delta effect size, which allows comparisons
39+
between delta-delta effects generated from metrics with different
40+
units.
41+
42+
5. **Miscellaneous Improvements**: This version also encompasses a
43+
broad range of miscellaneous enhancements, including bug fixes,
44+
Bootstrapping speed improvements, new templates for raising issues,
45+
and updated unit tests. These improvements are designed to
46+
streamline the user experience, increase the software’s stability,
47+
and expand its versatility. By addressing user feedback and
48+
identified issues, DABEST continues to refine its functionality and
49+
reliability.
3350

3451
## Contents
3552

dabest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
from ._effsize_objects import TwoGroupsEffectSize, PermutationTest
44
from ._dabest_object import Dabest
55

6-
__version__ = "2023.03.29"
6+
__version__ = "2024.03.29"

nbs/02-about.ipynb

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
"\n",
1818
"DABEST is written in Python by [Joses W. Ho](https://twitter.com/jacuzzijo), with design and input from [Adam Claridge-Chang](https://twitter.com/adamcchang) and other [lab members](https://www.claridgechang.net/people.html).\n",
1919
"\n",
20-
"Additional features in v2023.02.14 were added by [Yixuan Li](https://github.com/LI-Yixuan), [Zinan Lu](https://github.com/Jacobluke-) and [Rou Zhang](https://github.com/ZHANGROU-99).\n",
20+
"Features in v2024.03.29 were added by [Zinan Lu](https://github.com/Jacobluke-), [Kah Seng LIAN](https://github.com/sunroofgod), [Lucas Wang Zhuoyu](https://github.com/Lucas1213WZY).\n",
21+
"\n",
22+
"Features in v2023.02.14 were added by [Yixuan Li](https://github.com/LI-Yixuan), [Zinan Lu](https://github.com/Jacobluke-) and [Rou Zhang](https://github.com/ZHANGROU-99).\n",
2123
"\n",
2224
"To find out more about the authors' research, please visit the [Claridge-Chang lab webpage](http://www.claridgechang.net/).\n",
2325
"\n",
@@ -81,14 +83,6 @@
8183
"POSSIBILITY OF SUCH DAMAGE.\n",
8284
"</div>\n"
8385
]
84-
},
85-
{
86-
"cell_type": "code",
87-
"execution_count": null,
88-
"id": "de35a697",
89-
"metadata": {},
90-
"outputs": [],
91-
"source": []
9286
}
9387
],
9488
"metadata": {

nbs/read_me.ipynb

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,17 @@
2222
"source": [
2323
"## Recent Version Update\n",
2424
"\n",
25-
"On 20 March 2023, we officially released **DABEST v2023.02.14 for Python**. This new version provided the following new features:\n",
25+
"On 22 March 2024, we officially released **DABEST v2024.3.29 for Python**. This new version provides several new features and includes performance improvements.\n",
2626
"\n",
27-
"1. **Repeated measures.** Augments the prior function for plotting (independent) multiple test groups versus a shared control; it can now do the same for repeated-measures experimental designs. Thus, together, these two methods can be used to replace both flavors of the 1-way ANOVA with an estimation analysis.\n",
27+
"1. **Forest Plot**: With the new forest plot functionality, DABEST users can now generate forest plots, a mainstay in meta-analysis. This plot type is invaluable for visualizing the results of multiple studies or analyses simultaneously, showing not just the estimated effect sizes but also their confidence intervals. It is built upon the calculation and existing DABEST feature of delta-delta and mini-meta analysis and facilitates systematic reviews by generating a summary plot that compares delta-delta or mini-meta effect size plots from different studies or analysis. It's an essential tool for researchers conducting systematic reviews or wanting to summarize a body of evidence in a single, comprehensive visual.\n",
2828
"\n",
29-
"2. **Proportional data.** Generates proportional bar plots, proportional differences, and calculates Cohen's h. Also enables plotting Sankey diagrams for paired binary data. This is the estimation equivalent to a bar chart with Fisher's exact test.\n",
29+
"2. **New Paired Proportion Plot**: This feature builds upon the existing proportional analysis capabilities by introducing advanced aesthetics and clearer visualization of changes in proportions between different groups, inspired by the informative nature of Sankey Diagrams. It's particularly useful for studies that require detailed examination of how proportions shift in paired observations.\n",
3030
"\n",
31-
"3. **The $\\Delta\\Delta$ plot.** Calculates the delta-delta ($\\Delta\\Delta$) for 2 × 2 experimental designs and plots the four groups with their relevant effect sizes. This design can be used as a replacement for the 2 × 2 ANOVA.\n",
31+
"3. **Customizable Swarm Plot**: Enhancements allow for tailored swarm plot aesthetics, notably the adjustment of swarm sides to produce asymmetric swarm plots. This customization enhances data representation, making visual distinctions more pronounced and interpretations clearer.\n",
3232
"\n",
33-
"4. **Mini-meta.** Calculates and plots a weighted delta ($\\Delta$) for meta-analysis of experimental replicates. Useful for summarizing data from multiple replicated experiments, for example by different scientists in the same lab, or the same scientist at different times. When the observed values are known (and share a common metric), this makes meta-analysis available as a routinely accessible tool."
33+
"4. **Standardized Delta-delta Effect Size**: We added a new metric akin to a Hedges’ g for delta-delta effect size, which allows comparisons between delta-delta effects generated from metrics with different units. \n",
34+
"\n",
35+
"5. **Miscellaneous Improvements**: This version also encompasses a broad range of miscellaneous enhancements, including bug fixes, Bootstrapping speed improvements, new templates for raising issues, and updated unit tests. These improvements are designed to streamline the user experience, increase the software's stability, and expand its versatility. By addressing user feedback and identified issues, DABEST continues to refine its functionality and reliability.\n"
3436
]
3537
},
3638
{

settings.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
### Python library ###
33
repo = DABEST-python
44
lib_name = dabest
5-
version = 2023.03.29
5+
version = 2024.03.29
66
min_python = 3.8
77
license = apache2
88

0 commit comments

Comments
 (0)