forked from GAA-UAM/scikit-fda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
326 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,38 @@ | ||
"""Depth.""" | ||
from . import multivariate | ||
from ._depth import ( | ||
BandDepth, | ||
DistanceBasedDepth, | ||
IntegratedDepth, | ||
ModifiedBandDepth, | ||
|
||
from typing import TYPE_CHECKING | ||
|
||
import lazy_loader as lazy | ||
|
||
__getattr__, __dir__, __all__ = lazy.attach( | ||
__name__, | ||
submodules=[ | ||
"multivariate", | ||
], | ||
submod_attrs={ | ||
'_depth': [ | ||
"BandDepth", | ||
"DistanceBasedDepth", | ||
"IntegratedDepth", | ||
"ModifiedBandDepth", | ||
], | ||
"multivariate": [ | ||
"Depth", | ||
"Outlyingness", | ||
"OutlyingnessBasedDepth", | ||
], | ||
}, | ||
) | ||
from .multivariate import Depth, Outlyingness, OutlyingnessBasedDepth | ||
|
||
if TYPE_CHECKING: | ||
from ._depth import ( | ||
BandDepth as BandDepth, | ||
DistanceBasedDepth as DistanceBasedDepth, | ||
IntegratedDepth as IntegratedDepth, | ||
ModifiedBandDepth as ModifiedBandDepth, | ||
) | ||
from .multivariate import ( | ||
Depth as Depth, | ||
Outlyingness as Outlyingness, | ||
OutlyingnessBasedDepth as OutlyingnessBasedDepth, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,28 @@ | ||
from ._boxplot import BoxplotOutlierDetector | ||
from ._directional_outlyingness import ( | ||
MSPlotOutlierDetector, | ||
directional_outlyingness_stats, | ||
"""Outlier detection methods.""" | ||
from typing import TYPE_CHECKING | ||
|
||
import lazy_loader as lazy | ||
|
||
__getattr__, __dir__, __all__ = lazy.attach( | ||
__name__, | ||
submod_attrs={ | ||
'_boxplot': ["BoxplotOutlierDetector"], | ||
"_directional_outlyingness": [ | ||
"MSPlotOutlierDetector", | ||
"directional_outlyingness_stats", | ||
], | ||
"_outliergram": ["OutliergramOutlierDetector"], | ||
"neighbors_outlier": ["LocalOutlierFactor"], | ||
}, | ||
) | ||
from ._outliergram import OutliergramOutlierDetector | ||
from .neighbors_outlier import LocalOutlierFactor | ||
|
||
if TYPE_CHECKING: | ||
from ._boxplot import BoxplotOutlierDetector as BoxplotOutlierDetector | ||
from ._directional_outlyingness import ( | ||
MSPlotOutlierDetector as MSPlotOutlierDetector, | ||
directional_outlyingness_stats as directional_outlyingness_stats, | ||
) | ||
from ._outliergram import ( | ||
OutliergramOutlierDetector as OutliergramOutlierDetector | ||
) | ||
from .neighbors_outlier import LocalOutlierFactor as LocalOutlierFactor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,33 @@ | ||
"""Initialization module of visualization folder.""" | ||
|
||
from . import clustering, representation | ||
from ._baseplot import BasePlot | ||
from ._boxplot import Boxplot, SurfaceBoxplot | ||
from ._ddplot import DDPlot | ||
from ._magnitude_shape_plot import MagnitudeShapePlot | ||
from ._multiple_display import MultipleDisplay | ||
from ._outliergram import Outliergram | ||
from ._parametric_plot import ParametricPlot | ||
from .fpca import FPCAPlot | ||
from typing import TYPE_CHECKING | ||
|
||
import lazy_loader as lazy | ||
|
||
__getattr__, __dir__, __all__ = lazy.attach( | ||
__name__, | ||
submodules=[ | ||
"clustering", | ||
"representation", | ||
], | ||
submod_attrs={ | ||
"_baseplot": ["BasePlot"], | ||
"_boxplot": ["Boxplot", "SurfaceBoxplot"], | ||
"_ddplot": ["DDPlot"], | ||
"_magnitude_shape_plot": ["MagnitudeShapePlot"], | ||
"_multiple_display": ["MultipleDisplay"], | ||
"_outliergram": ["Outliergram"], | ||
"_parametric_plot": ["ParametricPlot"], | ||
"fpca": ["FPCAPlot"], | ||
}, | ||
) | ||
|
||
if TYPE_CHECKING: | ||
from ._baseplot import BasePlot as BasePlot | ||
from ._boxplot import Boxplot as Boxplot, SurfaceBoxplot as SurfaceBoxplot | ||
from ._ddplot import DDPlot as DDPlot | ||
from ._magnitude_shape_plot import MagnitudeShapePlot as MagnitudeShapePlot | ||
from ._multiple_display import MultipleDisplay as MultipleDisplay | ||
from ._outliergram import Outliergram as Outliergram | ||
from ._parametric_plot import ParametricPlot as ParametricPlot | ||
from .fpca import FPCAPlot as FPCAPlot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.