Releases: erdogant/distfit
Releases · erdogant/distfit
v1.5.1
Verbosenow uses the official logging library. This means that the verbose input has been changed slightly:
verbose : [str, int], default is 'info' or 20
Set the verbose messages using string or integer values.
* 0, 60, None, 'silent', 'off', 'no']: No message.
* 10, 'debug': Messages from debug level and higher.
* 20, 'info': Messages from info level and higher.
* 30, 'warning': Messages from warning level and higher.
* 50, 'critical': Messages from critical level and higher.
```* Updates in docstrings.
v1.5.0
v1.4.5
v1.4.4
v1.4.3
alphaparameter added to thepredictfunction.- Output contains
y_boolwhich isy_proba<=alpha
from distfit import distfit
X = np.random.normal(0, 2, 1000)
y = [-8, -6, 0, 1, 2, 3, 4, 5, 6]
dist = distfit()
dist.fit_transform(X)
results = dist.predict(y, alpha=0.01)
results['y_bool']
1.4.2
1.4.1
- Pass fig and ax to give more control to the user's for plotting.
Thank you for the contribution @ksachdeva!
1.4.0
- New function "generate" that allows to generate samples after fitting on the data.
- Discrete output parameters aligned with output parameters of parametric models
- New output variable added: "model" which is the fitted model based on loc/scale params. The "distr" remains the unfitted model.
- Code generalized which allows that discrete and parametric runs in more same functions.
- Different scoring statistics is now also possible for discrete fitting.