<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta>
      <journal-title-group>
        <journal-title>April</journal-title>
      </journal-title-group>
    </journal-meta>
    <article-meta>
      <title-group>
        <article-title>Readability of the Web: A study on 1 billion web pages.</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Marije de Heus</string-name>
          <email>m.deheus@student.utwente.nl</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Djoerd Hiemstra</string-name>
          <email>hiemstra@cs.utwente.nl</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>University of Twente</institution>
        </aff>
      </contrib-group>
      <pub-date>
        <year>2013</year>
      </pub-date>
      <volume>26</volume>
      <issue>2013</issue>
      <abstract>
        <p>We have performed a readability study on more than 1 billion web pages. The Automated Readability Index was used to determine the average grade level required to easily comprehend a website. Some of the results are that a 16-year-old can easily understand 50% of the web and an 18-year old can easily understand 77% of the web. This information can be used in a search engine to lter websites that are likely to be incomprehensible for younger users.</p>
      </abstract>
      <kwd-group>
        <kwd>Readability</kwd>
        <kwd>ARI</kwd>
        <kwd>Code Crawl</kwd>
        <kwd>MapReduce</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. INTRODUCTION</title>
      <p>
        The internet has users of all ages. Some texts are more
easily readable by young users than others. In general, texts
that have longer sentences with longer words which contain
more syllables, are less likely to be easily understood by
young users than texts with shorter sentences that consist
of short words. This paper analyzes the readability of the
web, as part of the Norvig Web Data Science Award[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
      </p>
      <p>
        There are several measures to compute the readability of
a text, such as Flesch-Kincaid readability[
        <xref ref-type="bibr" rid="ref10">10</xref>
        ], Gunning Fog
index[
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], Dale-Chall readability[
        <xref ref-type="bibr" rid="ref5">5</xref>
        ], Coleman-Liau index[
        <xref ref-type="bibr" rid="ref6">6</xref>
        ],
SMOG[
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] and the Automated Readability Index[
        <xref ref-type="bibr" rid="ref12">12</xref>
        ]. Most
of these use a formula that requires counting the number
of syllables. Deciding where a syllable begins and ends is a
di cult problem, depending on the language. Therefore we
chose to use the Automated Readability Index, which was
designed for real-time computation of readability on
electronic typewriters and does not use the number of syllables.
Instead it uses the average number of characters per word
and the average number of words per sentence. The
outcome represents the US grade level that is needed to easily
comprehend the text.
      </p>
      <p>
        The ARI formula[
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] is shown below.
      </p>
      <p>ARI = 4:71
characters
words
+ 0:5</p>
      <p>words
sentences
21:43 (1)</p>
      <p>
        So far most of the research regarding readability of
websites has focused on legal documents and health documents
[
        <xref ref-type="bibr" rid="ref2">2</xref>
        ][
        <xref ref-type="bibr" rid="ref8">8</xref>
        ][
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. No previous experiments with readability large
numbers of websites have been found. The goal of our
research is to examine the readability of the web. For this
purpose, we ran a MapReduce program on more than a
billion webpages. The Common Crawl dataset consists among
others of 61 million domains, 92 million PDF Docs and 7
million Word Docs. More than 60% of the data came from
.com TLD's, with .org and .net on second and third place.
Thereafter came .de, co.uk, .ru, .info, .pl, .nl et cetera[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
We did not lter non-English websites.
      </p>
    </sec>
    <sec id="sec-2">
      <title>2. IMPLEMENTATION</title>
      <p>
        The program was implemented using MapReduce[
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] on
Hadoop[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. Figure 2 provides a visual overview of our
program. The mapper takes the text of a website without html
tags. It computes the ARI of the text. It then emits this
ARI and a count of 1. The reducer receives an ARI score
and a number of counts. It sums the counts and writes the
ARI and the sum to one line of the output le.
      </p>
    </sec>
    <sec id="sec-3">
      <title>RESULTS</title>
      <p>4.1</p>
    </sec>
    <sec id="sec-4">
      <title>DISCUSSION, CONCLUSION AND FU</title>
    </sec>
    <sec id="sec-5">
      <title>TURE WORK</title>
    </sec>
    <sec id="sec-6">
      <title>Discussion</title>
      <p>Very low results.</p>
      <p>7% of the websites received a score below 0. 1.7% of the
websites was empty. These results cannot be interpreted in
terms of a US grade level. However, we can infer that these
websites are probably easily readable for all ages, because
such websites must have very short sentences and very short
words.</p>
      <p>Very high results.</p>
      <p>13.3% of the websites received a score higher than 22. This
means that a person would need more than 22 years of
education to easily comprehend the website. Some of these even
got scores above 100. A lot of these websites consist of
enumerations of items, dates, addresses et cetera, which are not
stripped. It is not clear what e ect such items have on the
readability. Maybe they should be ignored when
computing the readability, or maybe they do in uence readability.
Some of these enumerations may be detected by certain html
list tags, while others may not be removed as easily.</p>
      <sec id="sec-6-1">
        <title>Non-English Languages.</title>
        <p>
          In our analysis, we did not lter non-English websites.
Automated Readability Index was not designed for English
speci cally, but Smith and Senter [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ] only experimented
with the English languages. We did not nd studies on how
accurate ARI is for other languages.
4.2
        </p>
      </sec>
    </sec>
    <sec id="sec-7">
      <title>Conclusion</title>
      <p>This paper presented an anlysis of the readability of the
web using ARI and MapReduce. The results (presented in
gure 3) depend on the reliability of ARI for web pages of
di erent languages and can be used in a search engine to
adjust search results to a user's education level.
4.3</p>
    </sec>
    <sec id="sec-8">
      <title>Future Work</title>
      <sec id="sec-8-1">
        <title>ARI for non-English texts.</title>
        <p>We did not nd literature on the accuracy of ARI for
nonEnlgih languages. This needs to determined before ARI can
be used in (multilingual) practice.</p>
      </sec>
      <sec id="sec-8-2">
        <title>Readability of web pages.</title>
        <p>Some of the high ARI scores may be due to the structure
of some websites, e.g. long enumerations and lists of items.
A readability measure like ARI may not be reliable on such
websites. More research can be done on how the readability
of a web page can be accurately determined.
5.</p>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>Norvig</given-names>
            <surname>Web Data Science Award</surname>
          </string-name>
          . http://norvigaward.github.io/index.html,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>G.K.</given-names>
            <surname>Berland</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.N.</given-names>
            <surname>Elliott</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.S.</given-names>
            <surname>Morales</surname>
          </string-name>
          ,
          <string-name>
            <surname>J.I. Algazy</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.L.</given-names>
            <surname>Kravitz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.S.</given-names>
            <surname>Broder</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.E.</given-names>
            <surname>Kanouse</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.A.</given-names>
            <surname>Mun</surname>
          </string-name>
          <article-title>~oz</article-title>
          ,
          <string-name>
            <given-names>J.A.</given-names>
            <surname>Puyol</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lara</surname>
          </string-name>
          , et al.
          <article-title>Health information on the internet</article-title>
          .
          <source>JAMA: the journal of the American Medical Association</source>
          ,
          <volume>285</volume>
          (
          <issue>20</issue>
          ):
          <volume>2612</volume>
          {
          <fpage>2621</fpage>
          ,
          <year>2001</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>E.V.</given-names>
            <surname>Bernstam</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.M.</given-names>
            <surname>Shelton</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Walji</surname>
          </string-name>
          , and
          <string-name>
            <given-names>F.</given-names>
            <surname>Meric-Bernstam</surname>
          </string-name>
          .
          <article-title>Instruments to assess the quality of health information on the world wide web: what can our patients actually use?</article-title>
          <source>International journal of medical informatics</source>
          ,
          <volume>74</volume>
          (
          <issue>1</issue>
          ):
          <volume>13</volume>
          {
          <fpage>20</fpage>
          ,
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>D.</given-names>
            <surname>Borthakur</surname>
          </string-name>
          .
          <article-title>The hadoop distributed le system: Architecture and design</article-title>
          .
          <source>Hadoop Project Website</source>
          ,
          <volume>11</volume>
          :
          <fpage>21</fpage>
          ,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>J.S.</given-names>
            <surname>Chall</surname>
          </string-name>
          .
          <article-title>Readability revisited: The new Dale-Chall readability formula</article-title>
          , volume
          <volume>118</volume>
          . Brookline Books Cambridge, MA,
          <year>1995</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>M.</given-names>
            <surname>Coleman</surname>
          </string-name>
          and
          <string-name>
            <given-names>T.L.</given-names>
            <surname>Liau</surname>
          </string-name>
          .
          <article-title>A computer readability formula designed for machine scoring</article-title>
          .
          <source>Journal of Applied Psychology</source>
          ,
          <volume>60</volume>
          (
          <issue>2</issue>
          ):
          <fpage>283</fpage>
          ,
          <year>1975</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>J.</given-names>
            <surname>Dean</surname>
          </string-name>
          and
          <string-name>
            <given-names>S.</given-names>
            <surname>Ghemawat</surname>
          </string-name>
          .
          <source>Mapreduce: simpli ed data processing on large clusters. Communications of the ACM</source>
          ,
          <volume>51</volume>
          (
          <issue>1</issue>
          ):
          <volume>107</volume>
          {
          <fpage>113</fpage>
          ,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>M.A.</given-names>
            <surname>Graber</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.M.</given-names>
            <surname>Roller</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Kaeble</surname>
          </string-name>
          , et al.
          <article-title>Readability levels of patient education material on the world wide web</article-title>
          .
          <source>The Journal of family practice</source>
          ,
          <volume>48</volume>
          (
          <issue>1</issue>
          ):
          <fpage>58</fpage>
          ,
          <year>1999</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>R.</given-names>
            <surname>Gunning</surname>
          </string-name>
          .
          <article-title>The fog index after twenty years</article-title>
          .
          <source>Journal of Business Communication</source>
          ,
          <volume>6</volume>
          (
          <issue>2</issue>
          ):3{
          <fpage>13</fpage>
          ,
          <year>1969</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>J.P.</given-names>
            <surname>Kincaid</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.P.</given-names>
            <surname>Fishburne</surname>
          </string-name>
          <string-name>
            <surname>Jr</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.L.</given-names>
            <surname>Rogers</surname>
          </string-name>
          , and
          <string-name>
            <given-names>B.S.</given-names>
            <surname>Chissom</surname>
          </string-name>
          .
          <article-title>Derivation of new readability formulas (automated readability index, fog count and esch reading ease formula) for navy enlisted personnel</article-title>
          .
          <source>Technical report, DTIC Document</source>
          ,
          <year>1975</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>G.H. Mc</given-names>
            <surname>Laughlin</surname>
          </string-name>
          .
          <article-title>Smog grading-a new readability formula</article-title>
          .
          <source>Journal of reading</source>
          , pages
          <volume>639</volume>
          {
          <fpage>646</fpage>
          ,
          <year>1969</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>R.J.</given-names>
            <surname>Senter</surname>
          </string-name>
          and
          <string-name>
            <given-names>E.A.</given-names>
            <surname>Smith</surname>
          </string-name>
          .
          <source>Automated readability index. Technical report, DTIC Document</source>
          ,
          <year>1967</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>