yzhao062/Pyod

View on GitHub
pyod/models/rod.py

Summary

Maintainability
C
1 day
Test Coverage

File rod.py has 359 lines of code (exceeds 250 allowed). Consider refactoring.
Invalid

# -*- coding: utf-8 -*-
"""Rotation-based Outlier Detector (ROD)
"""
# Author: Yahya Almardeny <almardeny@gmail.com>
# License: BSD 2 clause
Severity: Minor
Found in pyod/models/rod.py - About 4 hrs to fix

    Function scale_angles has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

    def scale_angles(gammas, scaler1=None, scaler2=None):
        """
        Scale all angles in which angles <= 90
        degree will be scaled within [0 - 54.7] and
        angles > 90 will be scaled within [90 - 126]
    Severity: Minor
    Found in pyod/models/rod.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function geometric_median has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

    def geometric_median(x, eps=1e-5):
        """
        Find the multivariate geometric L1-median by applying
        Vardi and Zhang algorithm.
    
    
    Severity: Minor
    Found in pyod/models/rod.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function rod_nD has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

    def rod_nD(X, parallel, gm=None, median=None, data_scaler=None, angles_scalers1=None, angles_scalers2=None):
        """
        Find ROD overall scores when Data is higher than 3D:
          # scale dataset using Robust Scaler
          # decompose the full space into a combinations of 3D subspaces,
    Severity: Minor
    Found in pyod/models/rod.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function rod_nD has 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    def rod_nD(X, parallel, gm=None, median=None, data_scaler=None, angles_scalers1=None, angles_scalers2=None):
    Severity: Major
    Found in pyod/models/rod.py - About 50 mins to fix

      Function rod_3D has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      def rod_3D(x, gm=None, median=None, scaler1=None, scaler2=None):
      Severity: Minor
      Found in pyod/models/rod.py - About 35 mins to fix

        Function process_sub has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        def process_sub(subspace, gm, median, scaler1, scaler2):
        Severity: Minor
        Found in pyod/models/rod.py - About 35 mins to fix

          Similar blocks of code found in 2 locations. Consider refactoring.
          Wontfix

              return np.sqrt((v1[0] - v2[0]) ** 2 +
                             (v1[1] - v2[1]) ** 2 +
                             (v1[2] - v2[2]) ** 2)
          Severity: Major
          Found in pyod/models/rod.py and 1 other location - About 5 hrs to fix
          pyod/models/rod.py on lines 164..166

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 91.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 2 locations. Consider refactoring.
          Wontfix

                      res.append([np.sqrt((_v[0] - v2[0]) ** 2 +
                                          (_v[1] - v2[1]) ** 2 +
                                          (_v[2] - v2[2]) ** 2)])
          Severity: Major
          Found in pyod/models/rod.py and 1 other location - About 5 hrs to fix
          pyod/models/rod.py on lines 168..170

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 91.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 4 locations. Consider refactoring.
          Open

              if scaler2 is None:  # this indicates the `fit()`
                  min_s, max_s = q1 + 0.001, 2.186
                  scaler2 = MinMaxScaler(feature_range=(min_s, max_s))
                  # min_s and max_s are required to be fit by scaler for consistency between train and test sets
                  scaler2.fit(np.array(second + [min_s, max_s]).reshape(-1, 1))
          Severity: Major
          Found in pyod/models/rod.py and 3 other locations - About 50 mins to fix
          pyod/models/rod.py on lines 130..130
          pyod/models/rod.py on lines 125..132
          pyod/models/rod.py on lines 138..138

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 36.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 4 locations. Consider refactoring.
          Open

                  second = scaler2.transform(np.array(second).reshape(-1, 1)).reshape(-1) if second else []
          Severity: Major
          Found in pyod/models/rod.py and 3 other locations - About 50 mins to fix
          pyod/models/rod.py on lines 130..130
          pyod/models/rod.py on lines 125..132
          pyod/models/rod.py on lines 133..140

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 36.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 4 locations. Consider refactoring.
          Open

                  first = scaler1.transform(np.array(first).reshape(-1, 1)).reshape(-1) if first else []
          Severity: Major
          Found in pyod/models/rod.py and 3 other locations - About 50 mins to fix
          pyod/models/rod.py on lines 125..132
          pyod/models/rod.py on lines 138..138
          pyod/models/rod.py on lines 133..140

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 36.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 4 locations. Consider refactoring.
          Open

              if scaler1 is None:  # this indicates the `fit()`
                  min_f, max_f = 0.001, 0.955
                  scaler1 = MinMaxScaler(feature_range=(min_f, max_f))
                  # min_f and max_f are required to be fit by scaler for consistency between train and test sets
                  scaler1.fit(np.array(first + [min_f, max_f]).reshape(-1, 1))
          Severity: Major
          Found in pyod/models/rod.py and 3 other locations - About 50 mins to fix
          pyod/models/rod.py on lines 130..130
          pyod/models/rod.py on lines 138..138
          pyod/models/rod.py on lines 133..140

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 36.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          There are no issues that match your filters.

          Category
          Status