jpmckinney/tf-idf-similarity

View on GitHub

Showing 4 of 4 total issues

Method normalize has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

    def normalize
      case @library
      when :gsl
        @matrix.clone.each_col do |column|
          unless column.isnull?
Severity: Minor
Found in lib/tf-idf-similarity/matrix_methods.rb - 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

Method normalize has 36 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def normalize
      case @library
      when :gsl
        @matrix.clone.each_col do |column|
          unless column.isnull?
Severity: Minor
Found in lib/tf-idf-similarity/matrix_methods.rb - About 1 hr to fix

    Method document_count has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        def document_count(term)
          index = terms.index(term)
          if index
            case @library
            when :gsl, :narray
    Severity: Minor
    Found in lib/tf-idf-similarity/term_count_model.rb - 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

    Method term_count has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        def term_count(term)
          index = terms.index(term)
          if index
            case @library
            when :gsl, :narray, :numo
    Severity: Minor
    Found in lib/tf-idf-similarity/term_count_model.rb - 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

    Severity
    Category
    Status
    Source
    Language