Method: FleschKincaidRe#calc_score

Defined in:
lib/odyssey/formulas/flesch_kincaid_re.rb

#calc_score(avg_words, avg_syllables) ⇒ Object



16
17
18
# File 'lib/odyssey/formulas/flesch_kincaid_re.rb', line 16

def calc_score(avg_words, avg_syllables)
  ((206.835 - (1.015 * avg_words)) - (84.6 * avg_syllables)).round(1)
end