-
-
Notifications
You must be signed in to change notification settings - Fork 26
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
plot freeze #37
Comments
Also other plot fig, ax = dfit.plot(chart='cdf', n_top=11) freeze |
Thank you for mentioning this. I can not reproduce the error.
|
C:\Users\Massimo>pip install distfit --upgrade The update doesn't fix it. ... but with environment (argh!!) works!!! |
I removed env_test and retried the code from cmd. Works! the problem occurs if you run the script from python console of pycharm Build #PC-231.9161.41, built on June 20, 2023 |
Happy to hear that your issue is solved! |
info: When I run plt.show() in pycharm debug mode, other scripts, not related to this library, also fail, because the graph freezes. |
thanks for letting know |
Is this still an issue? Or did time heal something over here? |
On windows 10, python 3.10, pycharm Build #PC-231.9161.41, built on June 20, 2023
After
import numpy as np
from distfit import distfit
X = np.random.normal(0, 2, 10000)
y = [-8,-6,0,1,2,3,4,5,6]
Initialize
dfit = distfit(alpha=0.01)
Fit
dfit.fit_transform(X)
Plot seperately
fig, ax = dfit.plot(chart='pdf')
I get a blank plot freezed!
I can't resize or other. If I close plot I get:
Process finished with exit code -805306369 (0xCFFFFFFF)
The text was updated successfully, but these errors were encountered: