<% if analysis.flesch_kincaid_reading_ease %>
<%= analysis.flesch_kincaid_reading_ease.try(:round) %> / 100 bubble_chart Flesh-Kincaid Reading Ease

According to this scale, your document scores <%= case analysis.flesch_kincaid_reading_ease.try(:round) when 90..500 'Very easy to read. Easily understood by an average 11-year-old student.' when 80..90 'Easy to read. Conversational English for consumers.' when 70..80 'Fairly easy to read.' when 60..70 'Plain English. Easily understood by 13- to 15-year-old students.' when 50..60 'Fairly difficult to read.' when 30..50 'Difficult to read.' when 10..30 'Very difficult to read. Best understood by university graduates.' when -500..10 'Extremely difficult to read. Best understood by university graduates.' else analysis.flesch_kincaid_reading_ease.try(:round) end %>


The Flesch–Kincaid scale is a readability test designed to indicate how difficult a passage in English is to understand. It was originally designed by Rudolf Flesch and J. Peter Kincaid for the U.S. Navy, but is commonly used to this day to measure and ensure some legal documents are written at no higher than a ninth-grade reading level.


The readability test is backed up by a separate test called the Flesch–Kincaid Grade Level which measures readability in the same way, but weights those measurements in a slightly different way. This is the scale used by Microsoft Word and Grammarly to calculate the reading level of a document.


A higher score on this scale indicates a document is easier to understand.

To raise your score on this scale:

  • arrow_drop_up Use shorter words.
  • arrow_drop_up Use shorter sentences.

To lower your score on this scale:

  • arrow_drop_down Use longer words.
  • arrow_drop_down Use longer sentences.

<%= link_to 'Compare to other works', '#', class: 'activator orange-text text-darken-3' %>
close <%= analysis.flesch_kincaid_reading_ease.try(:round) %> / 100 bubble_chart Flesh-Kincaid Reading Ease
<% [ ["This document", analysis.flesch_kincaid_reading_ease.try(:round)], ["Reader's Digest magazine", 65], ["Time magazine", 52], ["An average sixth grade student's written assignment", 60], ["Harvard Law Review", 30], ["Moby Dick, by Herman Melville", 57.9], ["Harry Potter and the Philosopher's Stone, by J. K. Rowling", 83.7], ["The Affordable Care Act", 12], ].sort_by(&:second).reverse.each do |work, score| %> <% end %>
Work Score
<%= work.html_safe %> <%= if score > analysis.flesch_kincaid_reading_ease.try(:round) ''.html_safe elsif score < analysis.flesch_kincaid_reading_ease.try(:round) ''.html_safe else ''.html_safe end %> <%= score %>
<% end %>