Skip to content

Commit

Permalink
1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
erdogant committed Oct 24, 2023
1 parent 13e216b commit c30ab39
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion distfit/examples.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# Import libraries
# %% Issue xx

from distfit import distfit
import numpy as np

dfit = distfit(distr='full',stats='energy',todf=True, n_jobs=-1)
X = np.random.normal(0, 2, 10000)
dfit.fit_transform(X)
dfit.plot(chart='pdf')



# %% Import libraries
import time
import numpy as np
from distfit import distfit
Expand Down

0 comments on commit c30ab39

Please sign in to comment.