-
-
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
My code bog down on drawing pdf if best fit distribution is T distribution #39
Comments
With distfit in python, My code bog down when I trying to draw pdf of the best distribution if best fit distribution is T distribution. |
Not sure what you mean with "My code bog down". |
It is unable to progress to draw plot dfit.plot(chart='pdf') if best fit distribution is T distribution. |
Can you show the error by example?
|
When I run code in python visual in Power BI, it always sticks in drawing plot dfit.plot(chart='pdf') if best fit distribution is T distribution. |
Interesting. But I am not sure how I can debug this error using your configurations. You can try to open the |
Use distfit to find the best theoretical distribution for the claim cost data
dfit = distfit(todf=True)
result = dfit.fit_transform(cost)
dfit.plot(chart='pdf')
The text was updated successfully, but these errors were encountered: