|
2 | 2 |
|
3 | 3 | <!-- do not remove --> |
4 | 4 |
|
| 5 | +## v2025.03.14 |
| 6 | + |
| 7 | +### New Features |
| 8 | + |
| 9 | +- **Horizontal Plots**: This new feature allows users to create horizontal plots instead of the regular vertical plots, providing a more compact visualization of data. This can be utilized by setting `horizontal=True` in the `plot()` method. |
| 10 | + |
| 11 | +- **Forest Plots**: This new feature allows users to create forest plots! Forest plots provide a simple and intuitive way to visualize many delta-delta (or Deltas' g) or mini-meta effect sizes at once from multiple different dabest objects without presenting the raw data. |
| 12 | + |
| 13 | +- **Gridkey**: This new feature allows users to create a gridkey to represent the labels of the groups in the plot. This can be utilized with the `gridkey_rows` argument in the `plot()` method. |
| 14 | + |
| 15 | +- **Aesthetic Updates**: We have made several aesthetic improvements to the plots, including: |
| 16 | + - **Swarm, Contrast, and Summary bars**: We have added bars to better highlight the various groups and their differences. These bars can be customized to suit the user's needs. The swarm and contrast bars are provided by default, while the summary bars can be added by the user. |
| 17 | + |
| 18 | + - **Delta-Delta Plots**: We have modified the delta-delta plot format to be more compact and easier to read. The new format brings the delta-delta (or Deltas' g) effect size closer to the regular effect sizes. In addition, a gap has been added to the zeroline to separate the delta-delta and regular effect sizes. |
| 19 | + |
| 20 | + - **Delta-delta Effect Sizes for Proportion Plots**: Delta-delta effect sizes for proportion plots are now available. |
| 21 | + |
| 22 | + - **Mini-Meta Plots**: We have modified the mini-meta plot format to be more compact and easier to read. The new format brings the mini-meta effect size closer to the regular effect sizes. |
| 23 | + |
| 24 | + - **Proportion Plots Sample Sizes**: We have updated the proportion plots to show sample sizes for each group. These can be toggled on or off via the `prop_sample_counts` parameter. |
| 25 | + |
| 26 | + - **Effect Size Lines for Paired Plots**: Effect size lines for paired plots are now available. These can be toggled on or off via the `es_paired_lines` parameter. |
| 27 | + |
| 28 | + - **Baseline Error Curves**: Plots now include a baseline error dot and curve to show the error of the baseline/control group. By default, the dot is shown, while the curve can be added by the user (via the `show_baseline_ec` parameter). |
| 29 | + |
| 30 | + - **Delta Text**: There is now an option to display delta text on the contrast axes. It displays the effect size of the contrast group relative to the reference group. This can be toggled on or off via the `delta_text` parameter. It is on by default. |
| 31 | + |
| 32 | + - **Empty Circle Color Palette**: A new swarmplot color palette modification is available for unpaired plots via the `empty_circle` parameter in the `plot()` method. This option modifies the two-group swarmplots to have empty circles for the control group and filled circles for the experimental group. |
| 33 | + |
| 34 | +### Enhancement |
| 35 | + |
| 36 | +- **Python 3.13 Support**: DABEST now supports Python 3.10-3.13. |
| 37 | + |
| 38 | +- **Numba for Speed Improvements**: We have included Numba to speed up the various calculations in DABEST. This should make the calculations faster and more efficient. Importing DABEST may take a little longer than before, and a progress bar will appear during the import process to show the calculations being performed. Once imported, loading and plotting data should now be faster. |
| 39 | + |
| 40 | +- **Terminology Updates**: We have made several updates to the documentation and terminology to improve clarity and consistency. For example: |
| 41 | + - The method to utilise the Deltas' g effect size is now via the `.hedges_g.plot()` method now rather than creating a whole new `Delta_g` object as before. The functionality remains the same, it plots hedges_g effect sizes and then the Deltas' g effect size alongside these (if a delta-delta experiment was loaded correctly). |
| 42 | + |
| 43 | +- **Updated Tutorial Pages**: We have updated the tutorial pages to reflect the new features and changes. The tutorial pages are now more comprehensive and hopefully more intuitive!. |
| 44 | + |
| 45 | +- **Results Dataframe for Delta-delta and Mini-meta Plots**: A results dataframe can now be extracted for both the delta-delta and mini-meta effect size data (similar to the results dataframe for the regular effect sizes). These can be found via the `.results` attribute of the `.delta_delta` or `.mini_meta` object. |
| 46 | + |
| 47 | + |
| 48 | + |
5 | 49 | ## v2024.03.29 |
6 | 50 |
|
7 | 51 | ### New Features |
|
0 commit comments