Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.19.0 #298

Merged
merged 41 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
d5a39e4
Use np.empty/zeros dtype arg instead of astype'ing
bmreiniger Oct 30, 2023
4c8939b
Added to_json & read_json functions
Nov 4, 2023
395f1fe
Specify the other option
Nov 5, 2023
f50c81f
Added iv plot metric in binning table plot method
alexliap Nov 7, 2023
cd42cdb
Added figsize argument at BinningTable method plot
alexliap Nov 7, 2023
ea0f901
Added figsize argument at MulticlassBinningTable method plot
alexliap Nov 7, 2023
c28c3fb
Added figsize argument at ContinuousBinningTable method plot
alexliap Nov 7, 2023
0ff4859
Added respective docs at each method
alexliap Nov 7, 2023
8527340
Forgot to add the argument figsize to subplots
alexliap Nov 7, 2023
3b20b22
Restore code format
alexliap Nov 7, 2023
53b9033
Restore code format
alexliap Nov 7, 2023
0e76cf5
Restore code format
alexliap Nov 7, 2023
8c11229
Added 2 plot metrics to ContinuousBinningTable class method plot
alexliap Nov 7, 2023
9bccf9c
fix: Reuse pd.DataFrame index in _transform
Nov 24, 2023
3941883
Merge pull request #279 from alexliap/adjust_plot_size
guillermo-navas-palencia Dec 6, 2023
aa95d62
Merge branch 'master' into add_plot_metric
alexliap Dec 6, 2023
f71725c
Merge pull request #281 from alexliap/add_plot_metric
guillermo-navas-palencia Dec 6, 2023
4d915ea
Merge pull request #273 from bmreiniger/270_cast_from_empty
guillermo-navas-palencia Dec 6, 2023
2477d5c
Merge pull request #287 from gtnx/issue-286
guillermo-navas-palencia Dec 6, 2023
1ca485e
Fix #266 #271. Raise exception if incompatible metrics in binning_tra…
guillermo-navas-palencia Dec 6, 2023
cc2e3d4
Added to_json & read_json functions
Nov 4, 2023
3a8d956
Specify the other option
Nov 5, 2023
728b599
Modified to_json and read_json to be able to reconstruct Optbinning's…
alexliap Dec 21, 2023
a16c7c6
Merge branch 'read_save_bins' of https://github.com/alexliap/optbinni…
alexliap Dec 21, 2023
a1faed7
Delete Untitled.ipynb
alexliap Dec 22, 2023
28cca4e
Delete pipa.json
alexliap Dec 22, 2023
ac8a190
Test
Dec 27, 2023
25ceddb
Remove test
Dec 27, 2023
266d743
Remove test
Dec 27, 2023
a1ea9ba
Remove test
Dec 27, 2023
a667147
test
alexliap Dec 27, 2023
38d7308
remove test
alexliap Dec 27, 2023
0279b97
Modify read_json
alexliap Dec 27, 2023
e91b3e0
Add read_json & to_json for continuous optimal binning
alexliap Dec 27, 2023
cabcdf8
Add read_json & to_json functions to multiclass opt binning
alexliap Dec 27, 2023
1a74eb5
Merge pull request #277 from alexliap/read_save_bins
guillermo-navas-palencia Jan 9, 2024
25f4c43
Update to version 0.19.0
guillermo-navas-palencia Jan 14, 2024
591e224
Pass flake8
guillermo-navas-palencia Jan 14, 2024
323cb1e
Update tutorials
guillermo-navas-palencia Jan 14, 2024
31c5b52
Update release notes with version 0.19.0
guillermo-navas-palencia Jan 15, 2024
6a2c528
Fix formatting
guillermo-navas-palencia Jan 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
# -- Project information -----------------------------------------------------

project = 'optbinning'
copyright = '2019 - 2023, Guillermo Navas-Palencia'
copyright = '2019 - 2024, Guillermo Navas-Palencia'
author = 'Guillermo Navas-Palencia'

# The short X.Y version
version = '0.18.0'
version = '0.19.0'
# The full version, including alpha/beta/rc tags
release = '0.18.0'
release = '0.19.0'


# -- General configuration ---------------------------------------------------
Expand Down
21 changes: 18 additions & 3 deletions doc/source/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
Release Notes
=============

Version 0.19.0 (2024-01-16)
---------------------------

Improvements:

- Adjust plot size (`Issue 244 <https://github.com/guillermo-navas-palencia/optbinning/issues/244>`_).
- Save optimal binning object in JSON format (`Issue 96 <https://github.com/guillermo-navas-palencia/optbinning/issues/96>`_).
- Plot IV/WoE metric in binning table plot for binary and continuous target.

Bugfixes:

- Keep pandas.DataFrame index in transform method (`Issue 286 <https://github.com/guillermo-navas-palencia/optbinning/issues/286>`_).
- Fix BinningProcess's binning_transform_params="bins" (`Issue 266 <https://github.com/guillermo-navas-palencia/optbinning/issues/266>`_).


Version 0.18.0 (2023-09-22)
---------------------------

Bugfixes:

- Fix numpy array object (`Issue 229 <https://github.com/guillermo-navas-palencia/optbinning/issues/229>`_)
- Fix ``show_bin_labels`` (`Issue 262 <https://github.com/guillermo-navas-palencia/optbinning/issues/262>`_)
- Fix ``special_codes_y`` (`Issue 263 <https://github.com/guillermo-navas-palencia/optbinning/issues/263>`_)
- Fix numpy array object (`Issue 229 <https://github.com/guillermo-navas-palencia/optbinning/issues/229>`_).
- Fix ``show_bin_labels`` (`Issue 262 <https://github.com/guillermo-navas-palencia/optbinning/issues/262>`_).
- Fix ``special_codes_y`` (`Issue 263 <https://github.com/guillermo-navas-palencia/optbinning/issues/263>`_).


Version 0.17.3 (2023-02-12)
Expand Down
Loading
Loading