Skip to content

Commit

Permalink
[ENH] empirical distribution (#25)
Browse files Browse the repository at this point in the history
Adds empirical distribution.

Towards #22.

Mirror of sktime/sktime#5094
  • Loading branch information
fkiraly authored Aug 25, 2023
1 parent 798615d commit 1146d6e
Show file tree
Hide file tree
Showing 3 changed files with 423 additions and 3 deletions.
3 changes: 2 additions & 1 deletion skpro/distributions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
# copyright: skpro developers, BSD-3-Clause License (see LICENSE file)
# adapted from sktime

__all__ = ["Laplace", "Normal"]
__all__ = ["Empirical", "Laplace", "Normal"]

from skpro.distributions.empirical import Empirical
from skpro.distributions.laplace import Laplace
from skpro.distributions.normal import Normal
Loading

0 comments on commit 1146d6e

Please sign in to comment.