Skip to content

Commit

Permalink
pl_tri
Browse files Browse the repository at this point in the history
  • Loading branch information
jbogaardt committed Nov 20, 2023
1 parent af6056f commit d206b32
Show file tree
Hide file tree
Showing 22 changed files with 1,755 additions and 1,886 deletions.
1 change: 1 addition & 0 deletions chainladder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ def auto_sparse(auto_sparse=True):

from chainladder.utils import * # noqa (API Import)
from chainladder.core import * # noqa (API Import)
from chainladder.legacy import * # noqa (API Import)
from chainladder.development import * # noqa (API Import)
from chainladder.adjustments import * # noqa (API Import)
from chainladder.tails import * # noqa (API Import)
Expand Down
2 changes: 1 addition & 1 deletion chainladder/adjustments/berqsherm.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import numpy as np
import copy
import warnings
from chainladder.core.io import EstimatorIO
from chainladder.legacy.io import EstimatorIO


class BerquistSherman(BaseEstimator, TransformerMixin, EstimatorIO):
Expand Down
2 changes: 1 addition & 1 deletion chainladder/adjustments/parallelogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# file, You can obtain one at https://mozilla.org/MPL/2.0/.

from sklearn.base import BaseEstimator, TransformerMixin
from chainladder.core.io import EstimatorIO
from chainladder.legacy.io import EstimatorIO


class ParallelogramOLF(BaseEstimator, TransformerMixin, EstimatorIO):
Expand Down
2 changes: 1 addition & 1 deletion chainladder/adjustments/trend.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# file, You can obtain one at https://mozilla.org/MPL/2.0/.

from sklearn.base import BaseEstimator, TransformerMixin
from chainladder.core.io import EstimatorIO
from chainladder.legacy.io import EstimatorIO
import pandas as pd


Expand Down
1 change: 1 addition & 0 deletions chainladder/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from chainladder.core.triangle import Triangle
from chainladder.core.base import TriangleBase
#from chainladder.core.correlation import (
# DevelopmentCorrelation,
# ValuationCorrelation,
Expand Down
Loading

0 comments on commit d206b32

Please sign in to comment.