ulikoehler/UliEngineering

View on GitHub
UliEngineering/SignalProcessing/Utils.py

Summary

Maintainability
A
3 hrs
Test Coverage

Function __getitem__ has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    def __getitem__(self, key):
        """
        Get:
            - A numpy linrange slice
        """
Severity: Minor
Found in UliEngineering/SignalProcessing/Utils.py - About 45 mins 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 aggregate has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

def aggregate(gen):
    """
    Takes any iterable and aggregates subsequent values
    yielded by the iterable into a single value with a counter.

Severity: Minor
Found in UliEngineering/SignalProcessing/Utils.py - About 45 mins 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 optimum_polyfit has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

def optimum_polyfit(x, y, score=functoolz.compose(np.max, np.abs), max_degree=50, stop_at=1e-10):
Severity: Minor
Found in UliEngineering/SignalProcessing/Utils.py - About 35 mins to fix

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

        def __init__(self, start, stop, n, endpoint=True, dtype=float):
    Severity: Minor
    Found in UliEngineering/SignalProcessing/Utils.py - About 35 mins to fix

      Function unstair has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

      def unstair(x, y, method="diff", tolerance=1e-9):
          """
          Remove stairs (adjacent equal values) from a function with quantized values.
          The first and the last values are always returned.
      
      
      Severity: Minor
      Found in UliEngineering/SignalProcessing/Utils.py - About 25 mins 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

      There are no issues that match your filters.

      Category
      Status