Skip to content

Commit

Permalink
1.6.12
Browse files Browse the repository at this point in the history
  • Loading branch information
erdogant committed Sep 30, 2023
1 parent 7a496f8 commit a7f77cc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion distfit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = 'Erdogan Tasksen'
__email__ = '[email protected]'
__version__ = '1.6.11'
__version__ = '1.6.12'


# module level doc-string
Expand Down
11 changes: 11 additions & 0 deletions distfit/examples.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# %% Issue 39
from distfit import distfit
import numpy as np

dfit = distfit(todf=True)
cost = np.random.normal(0, 2, 10000)
result = dfit.fit_transform(cost)
dfit.plot(chart='pdf')

# %%

import numpy as np
from distfit import distfit
import matplotlib.pyplot as plt
Expand Down

0 comments on commit a7f77cc

Please sign in to comment.