#!/usr/bin/perl # sumarize.pl - given an idea and optionally an author, compute averages against the idea # Eric Lease Morgan # June 13, 2010 - first investigations; descriptive statistics deals with means # require use strict; use Math::Round; # initalize my $books = &get_books; # get input and sanity check my $idea = $ARGV[ 0 ]; my $author = $ARGV[ 1 ]; if ( ! $idea ) { # synopsis print "\n"; print "Usage: $0 \n"; print "\n"; # list ideas my $ideas = ''; print " Ideas include:"; foreach ( sort keys %{ $$books{ 'kant-science-1851' } } ) { # skip non-computable values and build next if ( $_ eq 'id' | $_ eq 'author' | $_ eq 'title' ); $ideas .= " $_,"; } chop $ideas; print "$ideas\n"; print "\n"; # list authors my $authors = ''; my %authors = (); print " Authors include:"; foreach ( keys %$books ) { $authors{ $$books{ $_ }{ 'author' } } = 1 } foreach ( sort keys %authors ) { $authors .= ' ' . lc( $_ ) . "," } chop $authors; print "$authors\n"; print "\n"; # examples print " Examples:\n"; print " $0 love\n"; print " $0 love shakespeare\n"; print " $0 love plato\n"; print " $0 love 'shake|plato'\n"; print " $0 words shake\n"; print " $0 fog shake\n"; print " $0 coefficient shake\n"; print " $0 coefficient 'shake|plato'\n"; print "\n"; # done exit; } # process each book my $idea_score = 0; my $maximum = 0; my $flag = 1; my $minimum = 0; my %subset = (); foreach ( sort keys %$books ) { # process only selected authors if ( $_ =~ /$author/ ) { # extract and sum my $score = $$books{ $_ }{ $idea }; $idea_score += $score; # calculate maximum and minimum if ( $score > $maximum ) { $maximum = $score } if ( $flag ) { $minimum = $maximum; $flag = 0; } if ( $score < $minimum ) { $minimum = $score } # save for future reference $subset{ $_ } = $score; } } # total number of books in the subset my $total_books = scalar keys %subset; # report foreach ( sort { $subset{ $b } <=> $subset{ $a }} keys %subset ) { my $author = $$books{ $_ }{ 'author' }; my $title = $$books{ $_ }{ 'title' }; print $subset{ $_ }, "\t$author / $title ($_)\n"; } print "\n"; print "$total_books\tTotal books\n"; print "$maximum\tMaximum value\n"; print "$minimum\tMinimum value\n"; print round( $idea_score / $total_books ), "\tAverage $idea score\n"; print "\n"; # done exit; sub get_books { # read the books set into a hash of hashes; see http://perldoc.perl.org/perldsc.html my %books = (); while ( ) { chop; next unless s/^(.*?):\s*//; my $id = $1; for my $field ( split /\t/ ) { my ($key, $value) = split /=/, $field; $books{$id}{$key} = $value; } } return \%books; } __DATA__ aeschylus-agamemnon-1860: author=Aeschylus title=Agamemnon words=23562 words=23562 fog=9 kincaid=7 flesch=71 angel=0 animal=0 aristocracy=0 art=2 astronomy=0 beauty=2 being=118 cause=1 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=5 cosmology=0 courage=1 custom=0 death=7 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=1 equality=0 eternity=0 evil=8 evolution=0 experience=0 family=1 fate=13 form=0 god=16 good=1 government=0 habit=0 happiness=4 history=0 honor=0 hypothesis=0 idea=1 imagination=2 immortality=0 induction=0 infinity=0 judgement=0 justic=3 knowledge=1 labor=0 language=2 law=4 liberty=0 life=2 logic=0 love=4 man=2 many=0 mathematics=0 matter=0 mechanics=0 medicine=5 memory=1 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=5 particular=2 peace=6 philosophy=0 physics=0 pleasure=1 poetry=1 principle=0 progress=0 prophecy=6 prudence=0 punishment=4 quality=1 quanity=0 reasoning=0 relation=0 religion=8 revolution=0 rhetoric=0 same=0 science=0 sense=22 sign=11 sin=21 slavery=2 soul=3 space=3 state=2 symbol=3 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=0 virtue=0 war=6 wealth=4 will=0 wisdom=2 world=1 coefficient=327 aeschylus-persians-1782: author=Aeschylus title=Persians words=8631 words=8631 fog=13 kincaid=10 flesch=63 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=2 being=0 cause=1 chance=0 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=0 death=4 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=26 form=1 god=12 good=1 government=0 habit=0 happiness=3 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=0 knowledge=0 labor=0 language=0 law=1 liberty=0 life=0 logic=0 love=0 man=0 many=1 mathematics=0 matter=0 mechanics=0 medicine=0 memory=3 metaphysics=0 mind=1 monarchy=4 nature=0 necessity=1 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=2 particular=0 peace=3 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=8 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=9 sign=0 sin=0 slavery=0 soul=14 space=0 state=5 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=4 war=19 wealth=14 will=0 wisdom=0 world=1 coefficient=146 aeschylus-prometheus-2549: author=Aeschylus title=Prometheus Bound words=30508 words=30508 fog=10 kincaid=8 flesch=63 angel=0 animal=0 aristocracy=0 art=6 astronomy=0 beauty=0 being=139 cause=1 chance=1 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=0 death=2 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=3 evolution=0 experience=0 family=2 fate=10 form=1 god=12 good=1 government=0 habit=0 happiness=0 history=0 honor=21 hypothesis=0 idea=2 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=4 knowledge=0 labor=7 language=3 law=2 liberty=1 life=1 logic=0 love=1 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=1 nature=0 necessity=2 oligarchy=0 one=0 opinion=0 opposition=2 other=0 pain=3 particular=1 peace=3 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=2 prudence=0 punishment=3 quality=0 quanity=0 reasoning=1 relation=2 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=28 sign=0 sin=2 slavery=6 soul=2 space=1 state=2 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=3 universal=0 vice=0 virtue=0 war=1 wealth=2 will=1 wisdom=0 world=0 coefficient=298 aeschylus-seven-2836: author=Aeschylus title=Seven Against Thebes words=9418 words=9418 fog=10 kincaid=8 flesch=72 angel=0 animal=0 aristocracy=0 art=2 astronomy=0 beauty=0 being=0 cause=0 chance=4 change=1 citizen=7 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=0 death=10 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=2 evolution=0 experience=0 family=0 fate=33 form=1 god=19 good=1 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=7 knowledge=0 labor=0 language=0 law=2 liberty=0 life=1 logic=0 love=4 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=2 particular=0 peace=2 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=4 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=9 sign=9 sin=13 slavery=7 soul=4 space=2 state=1 symbol=15 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=0 virtue=0 war=9 wealth=5 will=1 wisdom=0 world=0 coefficient=183 aeschylus-suppliant-2642: author=Aeschylus title=Suppliant Maidens words=42303 words=42303 fog=11 kincaid=8 flesch=69 angel=0 animal=0 aristocracy=0 art=3 astronomy=0 beauty=1 being=84 cause=1 chance=3 change=1 citizen=3 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=0 death=7 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=3 evil=3 evolution=0 experience=0 family=0 fate=29 form=1 god=14 good=1 government=0 habit=0 happiness=1 history=1 honor=1 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=4 knowledge=0 labor=0 language=0 law=2 liberty=0 life=1 logic=0 love=4 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=3 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=1 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=8 particular=1 peace=2 philosophy=0 physics=0 pleasure=0 poetry=1 principle=0 progress=0 prophecy=3 prudence=1 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=12 sign=5 sin=6 slavery=3 soul=5 space=1 state=1 symbol=5 temperance=0 theology=2 time=0 truth=2 tryanny=1 universal=0 vice=0 virtue=0 war=7 wealth=6 will=1 wisdom=2 world=1 coefficient=255 american-articles-3758: author=American State title=Articles Of Confederation words=3473 words=3473 fog=40 kincaid=36 flesch=-17 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=500 cause=2 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=0 god=0 good=0 government=4 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=6 knowledge=0 labor=0 language=0 law=0 liberty=0 life=0 logic=0 love=0 man=0 many=0 mathematics=0 matter=3 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=0 particular=0 peace=19 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=8 reasoning=0 relation=0 religion=7 revolution=0 rhetoric=0 same=2 science=0 sense=0 sign=0 sin=0 slavery=0 soul=0 space=6 state=79 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=2 war=26 wealth=0 will=0 wisdom=0 world=1 coefficient=665 american-constitution-4487: author=American State title=Constitution Of The United States words=6966 words=6966 fog=19 kincaid=16 flesch=36 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=404 cause=0 chance=0 change=1 citizen=28 constitution=51 contingency=0 convention=17 cosmology=0 courage=0 custom=0 death=1 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=16 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=3 god=0 good=0 government=12 habit=0 happiness=0 history=0 honor=10 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=5 justic=4 knowledge=0 labor=16 language=1 law=27 liberty=3 life=0 logic=0 love=0 man=0 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=1 opposition=0 other=1 pain=0 particular=5 peace=3 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=6 prophecy=0 prudence=0 punishment=12 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=2 sense=0 sign=6 sin=0 slavery=0 soul=0 space=0 state=40 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=19 virtue=0 war=5 wealth=0 will=0 wisdom=0 world=1 coefficient=702 american-declaration-3934: author=American State title=Declaration Of Independence words=1337 words=1337 fog=23 kincaid=19 flesch=26 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=0 cause=5 chance=0 change=0 citizen=0 constitution=14 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=4 definition=0 democracy=0 desire=0 despotism=31 dialectic=0 duty=9 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=10 family=0 fate=0 form=5 god=3 good=2 government=112 habit=0 happiness=15 history=28 honor=28 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=25 knowledge=0 labor=0 language=0 law=0 liberty=17 life=2 logic=0 love=0 man=0 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=3 necessity=20 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=0 particular=0 peace=25 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=30 punishment=14 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=0 sign=0 sin=0 slavery=0 soul=0 space=0 state=15 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=55 universal=0 vice=0 virtue=0 war=21 wealth=0 will=0 wisdom=0 world=7 coefficient=501 aquinas-summa-2292: author=Aquinas title=Summa Theologica words=2638782 words=2638782 fog=12 kincaid=9 flesch=59 angel=42 animal=9 aristocracy=0 art=1 astronomy=0 beauty=1 being=265 cause=5 chance=0 change=1 citizen=0 constitution=1 contingency= convention=0 cosmology=0 courage=0 custom=2 death=3 definition=5 democracy=0 desire=3 despotism=0 dialectic=0 duty=1 education=0 element=3 emotion=1 equality=2 eternity=10 evil=12 evolution=0 experience=1 family=0 fate=1 form=2 god=24 good=5 government=2 habit=10 happiness=4 history=0 honor=12 hypothesis=0 idea=3 imagination=2 immortality=1 induction=0 infinity=2 judgement=6 justic=9 knowledge=9 labor=3 language=0 law=11 liberty=1 life=2 logic=1 love=6 man=4 many=0 mathematics=0 matter=4 mechanics=0 medicine=1 memory=1 metaphysics=1 mind=2 monarchy=0 nature=5 necessity=4 oligarchy=0 one=0 opinion=2 opposition=2 other=0 pain=2 particular=3 peace=1 philosophy=0 physics=0 pleasure=5 poetry=0 principle=10 progress=1 prophecy=6 prudence=17 punishment=18 quality=3 quanity=6 reasoning=4 relation=9 religion=7 revolution=0 rhetoric=0 same=1 science=4 sense=92 sign=5 sin=96 slavery=1 soul=16 space=1 state=5 symbol=1 temperance=4 theology=4 time=0 truth=3 tryanny=0 universal=0 vice=9 virtue=20 war=0 wealth=1 will=1 wisdom=4 world=1 coefficient=871 aristophanes-achamians-2166: author=Aristophanes title=Achamians words=16406 words=16406 fog=11 kincaid=8 flesch=60 angel=0 animal=1 aristocracy=0 art=1 astronomy=0 beauty=2 being=108 cause=2 chance=0 change=0 citizen=11 constitution=0 contingency=0 convention=0 cosmology=0 courage=3 custom=2 death=1 definition=0 democracy=3 desire=1 despotism=0 dialectic=0 duty=3 education=0 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=1 fate=1 form=1 god=6 good=3 government=0 habit=0 happiness=4 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=2 knowledge=0 labor=0 language=3 law=3 liberty=0 life=1 logic=0 love=1 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=1 memory=0 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=1 particular=4 peace=18 philosophy=0 physics=0 pleasure=0 poetry=2 principle=1 progress=0 prophecy=0 prudence=2 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=2 same=0 science=0 sense=6 sign=3 sin=1 slavery=0 soul=2 space=1 state=2 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=0 virtue=0 war=11 wealth=1 will=1 wisdom=1 world=0 coefficient=231 aristophanes-birds-1765: author=Aristophanes title=Birds words=24134 words=24134 fog=10 kincaid=8 flesch=64 angel=0 animal=2 aristocracy=0 art=0 astronomy=0 beauty=3 being=128 cause=0 chance=0 change=0 citizen=5 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=1 death=1 definition=0 democracy=4 desire=1 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=3 fate=3 form=1 god=17 good=1 government=0 habit=0 happiness=4 history=0 honor=0 hypothesis=0 idea=3 imagination=1 immortality=0 induction=0 infinity=0 judgement=0 justic=1 knowledge=2 labor=0 language=1 law=6 liberty=0 life=1 logic=0 love=1 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=0 particular=1 peace=5 philosophy=0 physics=0 pleasure=0 poetry=4 principle=0 progress=1 prophecy=7 prudence=0 punishment=0 quality=0 quanity=1 reasoning=0 relation=1 religion=0 revolution=1 rhetoric=0 same=1 science=0 sense=4 sign=0 sin=0 slavery=0 soul=1 space=5 state=2 symbol=3 temperance=0 theology=0 time=0 truth=0 tryanny=1 universal=0 vice=0 virtue=1 war=3 wealth=5 will=1 wisdom=1 world=0 coefficient=246 aristophanes-clouds-1883: author=Aristophanes title=Clouds words=18231 words=18231 fog=8 kincaid=5 flesch=73 angel=0 animal=2 aristocracy=0 art=0 astronomy=6 beauty=0 being=188 cause=4 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=0 death=0 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=0 education=8 element=0 emotion=0 equality=0 eternity=0 evil=3 evolution=0 experience=1 family=0 fate=0 form=1 god=9 good=3 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=2 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=6 knowledge=0 labor=0 language=1 law=8 liberty=0 life=1 logic=2 love=2 man=2 many=1 mathematics=0 matter=2 mechanics=0 medicine=1 memory=2 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=2 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=0 particular=1 peace=1 philosophy=0 physics=0 pleasure=2 poetry=0 principle=1 progress=0 prophecy=0 prudence=2 punishment=4 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=0 sign=0 sin=0 slavery=0 soul=1 space=0 state=3 symbol=0 temperance=1 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=1 wealth=0 will=1 wisdom=6 world=0 coefficient=288 aristophanes-ecclesiazusae-2610: author=Aristophanes title=Ecclesiazusae words=12753 words=12753 fog=9 kincaid=6 flesch=73 angel=0 animal=0 aristocracy=0 art=2 astronomy=0 beauty=0 being=221 cause=0 chance=1 change=0 citizen=93 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=4 death=2 definition=0 democracy=4 desire=2 despotism=0 dialectic=0 duty=2 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=2 form=1 god=0 good=3 government=2 habit=1 happiness=7 history=0 honor=0 hypothesis=0 idea=5 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=2 law=7 liberty=0 life=1 logic=0 love=5 man=6 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=0 particular=0 peace=1 philosophy=0 physics=0 pleasure=3 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=1 sense=23 sign=0 sin=0 slavery=0 soul=1 space=0 state=1 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=5 will=2 wisdom=0 world=0 coefficient=415 aristophanes-frogs-1778: author=Aristophanes title=Frogs words=16310 words=16310 fog=6 kincaid=5 flesch=77 angel=0 animal=0 aristocracy=0 art=3 astronomy=0 beauty=0 being=113 cause=0 chance=1 change=0 citizen=5 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=1 death=2 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=2 evolution=0 experience=0 family=0 fate=1 form=1 god=5 good=2 government=0 habit=0 happiness=0 history=0 honor=2 hypothesis=0 idea=3 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=2 knowledge=0 labor=0 language=2 law=1 liberty=0 life=1 logic=2 love=4 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=2 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=0 particular=2 peace=1 philosophy=0 physics=0 pleasure=0 poetry=5 principle=0 progress=3 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=1 revolution=0 rhetoric=0 same=0 science=1 sense=11 sign=1 sin=5 slavery=0 soul=3 space=0 state=3 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=1 virtue=0 war=3 wealth=2 will=1 wisdom=1 world=1 coefficient=204 aristophanes-knights-1993: author=Aristophanes title=Knights words=14498 words=14498 fog=8 kincaid=7 flesch=70 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=1 being=105 cause=1 chance=0 change=0 citizen=15 constitution=0 contingency=0 convention=0 cosmology=0 courage=3 custom=0 death=2 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=8 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=4 form=1 god=13 good=2 government=0 habit=0 happiness=8 history=0 honor=0 hypothesis=0 idea=6 imagination=0 immortality=0 induction=0 infinity=0 judgement=2 justic=2 knowledge=1 labor=0 language=3 law=0 liberty=0 life=0 logic=0 love=5 man=2 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=2 opposition=0 other=0 pain=0 particular=0 peace=5 philosophy=0 physics=0 pleasure=2 poetry=2 principle=0 progress=0 prophecy=6 prudence=0 punishment=5 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=7 sign=0 sin=0 slavery=0 soul=0 space=0 state=1 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=3 virtue=0 war=3 wealth=0 will=2 wisdom=1 world=0 coefficient=231 aristophanes-lysistrata-2337: author=Aristophanes title=Lysistrata words=17290 words=17290 fog=10 kincaid=8 flesch=64 angel=0 animal=2 aristocracy=0 art=1 astronomy=0 beauty=4 being=145 cause=1 chance=0 change=1 citizen=0 constitution=0 contingency=0 convention=2 cosmology=0 courage=4 custom=3 death=1 definition=3 democracy=0 desire=2 despotism=0 dialectic=0 duty=3 education=0 element=3 emotion=11 equality=0 eternity=3 evil=1 evolution=0 experience=0 family=0 fate=2 form=0 god=2 good=1 government=2 habit=0 happiness=4 history=0 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=0 justic=1 knowledge=0 labor=0 language=1 law=3 liberty=1 life=3 logic=4 love=5 man=2 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=1 particular=2 peace=12 philosophy=0 physics=0 pleasure=0 poetry=2 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=2 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=36 sign=0 sin=0 slavery=0 soul=0 space=2 state=3 symbol=5 temperance=0 theology=0 time=0 truth=0 tryanny=4 universal=0 vice=0 virtue=1 war=10 wealth=0 will=1 wisdom=1 world=1 coefficient=308 aristophanes-peace-1743: author=Aristophanes title=Peace words=18610 words=18610 fog=10 kincaid=7 flesch=67 angel=0 animal=1 aristocracy=0 art=1 astronomy=0 beauty=2 being=117 cause=1 chance=3 change=0 citizen=5 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=0 death=3 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=2 education=0 element=0 emotion=0 equality=0 eternity=0 evil=2 evolution=0 experience=0 family=2 fate=4 form=1 god=9 good=2 government=1 habit=0 happiness=5 history=0 honor=0 hypothesis=0 idea=2 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=1 knowledge=0 labor=0 language=1 law=3 liberty=0 life=1 logic=0 love=3 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=2 particular=1 peace=30 philosophy=0 physics=0 pleasure=2 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=5 sign=1 sin=0 slavery=0 soul=0 space=3 state=2 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=25 wealth=1 will=1 wisdom=1 world=1 coefficient=252 aristophanes-plutus-1918: author=Aristophanes title=Plutus words=12403 words=12403 fog=9 kincaid=6 flesch=74 angel=0 animal=0 aristocracy=0 art=1 astronomy=0 beauty=0 being=151 cause=1 chance=2 change=1 citizen=6 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=3 death=2 definition=0 democracy=9 desire=0 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=7 form=0 god=25 good=3 government=0 habit=0 happiness=9 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=2 knowledge=0 labor=0 language=0 law=0 liberty=0 life=2 logic=0 love=3 man=4 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=1 particular=0 peace=1 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=3 prudence=3 punishment=6 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=31 sign=0 sin=0 slavery=0 soul=1 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=0 virtue=0 war=1 wealth=14 will=1 wisdom=0 world=1 coefficient=301 aristophanes-thesmophoriazusae-3084: author=Aristophanes title=Thesmophoriazusae words=11839 words=11839 fog=9 kincaid=6 flesch=70 angel=0 animal=0 aristocracy=0 art=1 astronomy=0 beauty=0 being=134 cause=1 chance=0 change=0 citizen=5 constitution=0 contingency=0 convention=0 cosmology=0 courage=6 custom=0 death=1 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=3 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=9 form=1 god=13 good=1 government=0 habit=0 happiness=3 history=0 honor=0 hypothesis=0 idea=3 imagination=1 immortality=0 induction=0 infinity=0 judgement=0 justic=1 knowledge=0 labor=0 language=0 law=0 liberty=0 life=0 logic=0 love=3 man=2 many=1 mathematics=0 matter=1 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=3 particular=1 peace=4 philosophy=0 physics=0 pleasure=3 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=16 quality=0 quanity=0 reasoning=0 relation=2 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=8 sign=5 sin=2 slavery=0 soul=0 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=3 universal=0 vice=2 virtue=0 war=2 wealth=0 will=1 wisdom=1 world=1 coefficient=245 aristophanes-wasps-1791: author=Aristophanes title=Wasps words=15773 words=15773 fog=9 kincaid=6 flesch=73 angel=0 animal=5 aristocracy=0 art=1 astronomy=0 beauty=0 being=133 cause=0 chance=2 change=1 citizen=5 constitution=0 contingency=0 convention=0 cosmology=0 courage=7 custom=0 death=2 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=3 evolution=0 experience=0 family=0 fate=1 form=0 god=8 good=2 government=0 habit=3 happiness=4 history=0 honor=0 hypothesis=0 idea=4 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=4 knowledge=1 labor=0 language=0 law=0 liberty=0 life=1 logic=0 love=4 man=2 many=0 mathematics=0 matter=3 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=2 opposition=0 other=0 pain=0 particular=0 peace=1 philosophy=0 physics=0 pleasure=4 poetry=0 principle=0 progress=0 prophecy=3 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=12 sign=2 sin=0 slavery=0 soul=1 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=14 universal=0 vice=0 virtue=0 war=0 wealth=3 will=1 wisdom=1 world=1 coefficient=245 aristotle-athenian-3090: author=Aristotle title=Athenian Constitution words=24704 words=24704 fog=19 kincaid=15 flesch=42 angel=0 animal=1 aristocracy=3 art=0 astronomy=0 beauty=0 being=140 cause=1 chance=0 change=1 citizen=23 constitution=42 contingency=0 convention=0 cosmology=0 courage=0 custom=4 death=5 definition=1 democracy=39 desire=0 despotism=0 dialectic=0 duty=16 education=0 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=1 family=10 fate=0 form=1 god=0 good=1 government=15 habit=1 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=4 knowledge=0 labor=0 language=0 law=15 liberty=0 life=0 logic=0 love=0 man=1 many=0 mathematics=0 matter=2 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=0 monarchy=2 nature=0 necessity=0 oligarchy=22 one=1 opinion=1 opposition=2 other=0 pain=1 particular=1 peace=4 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=3 quality=0 quanity=0 reasoning=0 relation=0 religion=1 revolution=6 rhetoric=0 same=1 science=0 sense=0 sign=0 sin=0 slavery=5 soul=1 space=0 state=6 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=25 universal=0 vice=0 virtue=1 war=11 wealth=8 will=0 wisdom=0 world=0 coefficient=431 aristotle-categories-1981: author=Aristotle title=Categories words=17422 words=17422 fog=15 kincaid=12 flesch=50 angel=0 animal=34 aristocracy=0 art=0 astronomy=0 beauty=0 being=385 cause=2 chance=0 change=4 citizen=0 constitution=11 contingency=0 convention=0 cosmology=0 courage=3 custom=0 death=0 definition=67 democracy=0 desire=0 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=4 eternity=0 evil=4 evolution=0 experience=0 family=0 fate=0 form=2 god=0 good=3 government=0 habit=15 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=3 infinity=0 judgement=0 justic=7 knowledge=24 labor=0 language=1 law=4 liberty=0 life=0 logic=0 love=0 man=5 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=2 necessity=4 oligarchy=0 one=1 opinion=4 opposition=15 other=1 pain=0 particular=12 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=3 prophecy=0 prudence=0 punishment=0 quality=79 quanity=57 reasoning=0 relation=50 religion=0 revolution=0 rhetoric=0 same=2 science=6 sense=197 sign=0 sin=0 slavery=0 soul=1 space=10 state=8 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=7 virtue=15 war=0 wealth=0 will=1 wisdom=0 world=0 coefficient=1057 aristotle-history-2659: author=Aristotle title=History Of Animals words=128543 words=128543 fog=17 kincaid=14 flesch=52 angel=0 animal=135 aristocracy=0 art=0 astronomy=0 beauty=0 being=115 cause=1 chance=2 change=2 citizen=0 constitution=3 contingency=0 convention=0 cosmology=0 courage=2 custom=0 death=1 definition=1 democracy=0 desire=0 despotism=0 dialectic=0 duty=1 education=0 element=1 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=1 family=1 fate=0 form=1 god=0 good=1 government=0 habit=6 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=1 law=0 liberty=0 life=1 logic=0 love=0 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=1 memory=0 metaphysics=0 mind=0 monarchy=0 nature=1 necessity=0 oligarchy=0 one=1 opinion=0 opposition=0 other=1 pain=3 particular=4 peace=0 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=1 prophecy=0 prudence=0 punishment=0 quality=3 quanity=6 reasoning=0 relation=2 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=33 sign=3 sin=0 slavery=0 soul=0 space=2 state=1 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=1 wealth=0 will=0 wisdom=0 world=0 coefficient=343 aristotle-metaphysics-2113: author=Aristotle title=Metaphysics words=111179 words=111179 fog=16 kincaid=13 flesch=53 angel=0 animal=25 aristocracy=0 art=3 astronomy=5 beauty=2 being=537 cause=10 chance=2 change=6 citizen=0 constitution=1 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=57 democracy=0 desire=1 despotism=0 dialectic=3 duty=0 education=1 element=46 emotion=0 equality=5 eternity=21 evil=1 evolution=0 experience=3 family=0 fate=0 form=7 god=2 good=2 government=0 habit=2 happiness=0 history=0 honor=0 hypothesis=2 idea=20 imagination=0 immortality=0 induction=5 infinity=10 judgement=0 justic=0 knowledge=8 labor=0 language=1 law=0 liberty=0 life=0 logic=0 love=1 man=3 many=1 mathematics=54 matter=10 mechanics=1 medicine=1 memory=1 metaphysics=1 mind=0 monarchy=0 nature=5 necessity=9 oligarchy=0 one=1 opinion=4 opposition=7 other=1 pain=0 particular=9 peace=0 philosophy=5 physics=8 pleasure=0 poetry=0 principle=45 progress=0 prophecy=0 prudence=0 punishment=0 quality=17 quanity=26 reasoning=3 relation=13 religion=0 revolution=0 rhetoric=0 same=4 science=47 sense=418 sign=1 sin=0 slavery=0 soul=4 space=1 state=2 symbol=0 temperance=0 theology=1 time=0 truth=3 tryanny=0 universal=0 vice=1 virtue=8 war=0 wealth=0 will=1 wisdom=4 world=1 coefficient=1510 aristotle-meteorology-2125: author=Aristotle title=Meteorology words=43136 words=43136 fog=14 kincaid=11 flesch=59 angel=0 animal=8 aristocracy=0 art=0 astronomy=0 beauty=0 being=225 cause=8 chance=0 change=4 citizen=0 constitution=4 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=8 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=22 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=4 god=0 good=0 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=1 judgement=0 justic=0 knowledge=1 labor=0 language=0 law=0 liberty=0 life=0 logic=0 love=0 man=0 many=1 mathematics=1 matter=5 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=4 necessity=0 oligarchy=0 one=0 opinion=1 opposition=15 other=0 pain=0 particular=0 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=6 progress=0 prophecy=0 prudence=0 punishment=0 quality=12 quanity=33 reasoning=0 relation=6 religion=0 revolution=3 rhetoric=0 same=3 science=0 sense=47 sign=5 sin=0 slavery=0 soul=0 space=11 state=2 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=1 war=0 wealth=0 will=0 wisdom=0 world=2 coefficient=443 aristotle-nicomachean-2701: author=Aristotle title=Nicomachean Ethics words=84906 words=84906 fog=18 kincaid=15 flesch=49 angel=0 animal=6 aristocracy=4 art=5 astronomy=0 beauty=2 being=374 cause=1 chance=4 change=1 citizen=3 constitution=5 contingency=0 convention=2 cosmology=0 courage=9 custom=0 death=1 definition=5 democracy=3 desire=6 despotism=0 dialectic=0 duty=1 education=4 element=8 emotion=3 equality=8 eternity=0 evil=7 evolution=0 experience=4 family=1 fate=0 form=2 god=2 good=12 government=1 habit=4 happiness=21 history=0 honor=0 hypothesis=0 idea=2 imagination=1 immortality=1 induction=3 infinity=1 judgement=0 justic=15 knowledge=8 labor=0 language=1 law=5 liberty=0 life=4 logic=0 love=9 man=8 many=1 mathematics=3 matter=2 mechanics=0 medicine=5 memory=1 metaphysics=0 mind=1 monarchy=4 nature=4 necessity=2 oligarchy=4 one=1 opinion=7 opposition=3 other=1 pain=22 particular=10 peace=0 philosophy=1 physics=0 pleasure=39 poetry=0 principle=12 progress=1 prophecy=0 prudence=1 punishment=3 quality=6 quanity=0 reasoning=4 relation=14 religion=0 revolution=0 rhetoric=1 same=2 science=9 sense=171 sign=0 sin=0 slavery=0 soul=5 space=0 state=6 symbol=0 temperance=20 theology=0 time=0 truth=3 tryanny=3 universal=0 vice=17 virtue=32 war=1 wealth=11 will=1 wisdom=21 world=0 coefficient=1022 aristotle-on-3624: author=Aristotle title=On Generation And Corruption words=26064 words=26064 fog=15 kincaid=12 flesch=49 angel=0 animal=3 aristocracy=0 art=1 astronomy=0 beauty=0 being=373 cause=5 chance=2 change=13 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=12 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=63 emotion=0 equality=5 eternity=14 evil=0 evolution=0 experience=1 family=0 fate=0 form=3 god=0 good=0 government=0 habit=1 happiness=0 history=0 honor=0 hypothesis=2 idea=0 imagination=0 immortality=0 induction=0 infinity=2 judgement=0 justic=0 knowledge=1 labor=0 language=1 law=0 liberty=1 life=0 logic=0 love=2 man=1 many=1 mathematics=0 matter=9 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=0 monarchy=0 nature=4 necessity=6 oligarchy=0 one=1 opinion=1 opposition=2 other=1 pain=0 particular=0 peace=0 philosophy=2 physics=0 pleasure=0 poetry=0 principle=4 progress=0 prophecy=0 prudence=0 punishment=0 quality=30 quanity=8 reasoning=1 relation=6 religion=0 revolution=4 rhetoric=0 same=2 science=3 sense=241 sign=0 sin=0 slavery=0 soul=1 space=0 state=2 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=3 virtue=2 war=0 wealth=0 will=1 wisdom=0 world=0 coefficient=843 aristotle-on-2668: author=Aristotle title=On Interpretation words=9868 words=9868 fog=16 kincaid=12 flesch=50 angel=0 animal=23 aristocracy=0 art=0 astronomy=0 beauty=6 being=613 cause=0 chance=3 change=0 citizen=0 constitution=0 contingency= convention=11 cosmology=0 courage=0 custom=0 death=0 definition=17 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=8 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=5 family=0 fate=0 form=8 god=0 good=11 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=0 law=1 liberty=0 life=0 logic=0 love=0 man=12 many=1 mathematics=0 matter=1 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=28 oligarchy=0 one=1 opinion=2 opposition=0 other=0 pain=0 particular=4 peace=0 philosophy=0 physics=0 pleasure=0 poetry=4 principle=7 progress=0 prophecy=0 prudence=0 punishment=0 quality=6 quanity=0 reasoning=0 relation=6 religion=0 revolution=0 rhetoric=5 same=4 science=0 sense=148 sign=4 sin=0 slavery=0 soul=1 space=3 state=5 symbol=25 temperance=0 theology=0 time=0 truth=4 tryanny=0 universal=0 vice=0 virtue=1 war=0 wealth=0 will=1 wisdom=0 world=0 coefficient=981 aristotle-on-2836: author=Aristotle title=On The Gait Of Animals words=7831 words=7831 fog=17 kincaid=14 flesch=53 angel=0 animal=148 aristocracy=0 art=0 astronomy=0 beauty=0 being=240 cause=1 chance=0 change=8 citizen=0 constitution=3 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=1 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=6 family=0 fate=0 form=1 god=0 good=0 government=0 habit=0 happiness=0 history=3 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=0 law=0 liberty=0 life=1 logic=0 love=0 man=2 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=7 necessity=7 oligarchy=0 one=1 opinion=0 opposition=0 other=0 pain=0 particular=0 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=7 progress=87 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=107 sign=0 sin=0 slavery=0 soul=0 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=0 wisdom=0 world=0 coefficient=631 aristotle-on-3483: author=Aristotle title=On The Generation Of Animals words=68329 words=68329 fog=19 kincaid=16 flesch=46 angel=0 animal=165 aristocracy=0 art=2 astronomy=0 beauty=0 being=271 cause=9 chance=1 change=5 citizen=0 constitution=1 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=1 definition=4 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=7 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=1 family=2 fate=0 form=6 god=0 good=0 government=0 habit=2 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=1 infinity=1 judgement=0 justic=0 knowledge=1 labor=0 language=0 law=0 liberty=0 life=2 logic=0 love=0 man=1 many=1 mathematics=1 matter=3 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=8 necessity=4 oligarchy=0 one=0 opinion=0 opposition=0 other=1 pain=0 particular=2 peace=0 philosophy=0 physics=0 pleasure=2 poetry=0 principle=25 progress=0 prophecy=0 prudence=0 punishment=0 quality=5 quanity=22 reasoning=5 relation=2 religion=0 revolution=0 rhetoric=0 same=2 science=0 sense=80 sign=3 sin=0 slavery=0 soul=8 space=1 state=3 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=1 virtue=2 war=0 wealth=0 will=0 wisdom=0 world=0 coefficient=666 aristotle-on-2969: author=Aristotle title=On The Parts Of Animals words=60206 words=60206 fog=17 kincaid=13 flesch=51 angel=0 animal=204 aristocracy=0 art=1 astronomy=0 beauty=0 being=290 cause=4 chance=2 change=1 citizen=0 constitution=14 contingency=0 convention=0 cosmology=0 courage=1 custom=0 death=0 definition=10 democracy=0 desire=0 despotism=0 dialectic=0 duty=1 education=2 element=6 emotion=1 equality=3 eternity=1 evil=0 evolution=4 experience=0 family=0 fate=0 form=5 god=0 good=0 government=0 habit=2 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=2 infinity=0 judgement=0 justic=0 knowledge=1 labor=0 language=0 law=0 liberty=0 life=1 logic=0 love=0 man=2 many=1 mathematics=0 matter=4 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=5 necessity=17 oligarchy=0 one=0 opinion=1 opposition=5 other=1 pain=1 particular=1 peace=0 philosophy=2 physics=0 pleasure=1 poetry=0 principle=2 progress=0 prophecy=0 prudence=0 punishment=0 quality=2 quanity=3 reasoning=0 relation=3 religion=0 revolution=0 rhetoric=0 same=1 science=5 sense=105 sign=1 sin=0 slavery=0 soul=5 space=6 state=2 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=2 war=0 wealth=0 will=0 wisdom=0 world=0 coefficient=734 aristotle-on-1912: author=Aristotle title=On The Soul words=32223 words=32223 fog=17 kincaid=13 flesch=50 angel=0 animal=68 aristocracy=0 art=0 astronomy=0 beauty=0 being=395 cause=3 chance=0 change=2 citizen=0 constitution=11 contingency=0 convention=0 cosmology=0 courage=1 custom=0 death=0 definition=22 democracy=0 desire=3 despotism=0 dialectic=0 duty=0 education=0 element=39 emotion=4 equality=1 eternity=0 evil=0 evolution=0 experience=2 family=0 fate=0 form=4 god=1 good=1 government=0 habit=0 happiness=0 history=1 honor=0 hypothesis=0 idea=2 imagination=27 immortality=5 induction=0 infinity=4 judgement=0 justic=0 knowledge=13 labor=0 language=1 law=0 liberty=0 life=1 logic=0 love=1 man=1 many=1 mathematics=3 matter=3 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=10 monarchy=0 nature=4 necessity=2 oligarchy=0 one=1 opinion=9 opposition=0 other=0 pain=5 particular=3 peace=0 philosophy=1 physics=0 pleasure=2 poetry=0 principle=12 progress=0 prophecy=0 prudence=3 punishment=0 quality=22 quanity=2 reasoning=1 relation=6 religion=0 revolution=5 rhetoric=0 same=2 science=4 sense=809 sign=0 sin=0 slavery=0 soul=93 space=3 state=1 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=2 virtue=4 war=0 wealth=0 will=0 wisdom=0 world=0 coefficient=1627 aristotle-on-3077: author=Aristotle title=On The Motion Of Animals words=5973 words=5973 fog=16 kincaid=13 flesch=50 angel=0 animal=90 aristocracy=0 art=0 astronomy=0 beauty=0 being=355 cause=7 chance=0 change=14 citizen=0 constitution=3 contingency=0 convention=0 cosmology=0 courage=3 custom=3 death=0 definition=30 democracy=0 desire=14 despotism=0 dialectic=0 duty=0 education=0 element=6 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=2 family=0 fate=0 form=2 god=0 good=3 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=6 imagination=35 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=0 law=0 liberty=0 life=2 logic=0 love=0 man=1 many=0 mathematics=20 matter=1 mechanics=0 medicine=0 memory=5 metaphysics=20 mind=2 monarchy=0 nature=4 necessity=12 oligarchy=0 one=1 opinion=1 opposition=0 other=0 pain=0 particular=3 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=2 progress=0 prophecy=0 prudence=0 punishment=0 quality=20 quanity=10 reasoning=0 relation=14 religion=0 revolution=0 rhetoric=0 same=1 science=3 sense=138 sign=0 sin=0 slavery=0 soul=14 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=8 virtue=0 war=0 wealth=0 will=0 wisdom=0 world=3 coefficient=859 aristotle-physics-1690: author=Aristotle title=Physics words=84776 words=84776 fog=17 kincaid=14 flesch=50 angel=0 animal=14 aristocracy=0 art=2 astronomy=1 beauty=0 being=611 cause=8 chance=14 change=18 citizen=0 constitution=5 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=24 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=10 emotion=0 equality=13 eternity=9 evil=1 evolution=0 experience=1 family=0 fate=0 form=3 god=0 good=1 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=4 idea=0 imagination=1 immortality=0 induction=4 infinity=11 judgement=0 justic=0 knowledge=3 labor=0 language=0 law=0 liberty=0 life=0 logic=0 love=0 man=1 many=1 mathematics=7 matter=4 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=6 necessity=4 oligarchy=0 one=1 opinion=1 opposition=10 other=1 pain=0 particular=10 peace=0 philosophy=1 physics=8 pleasure=1 poetry=0 principle=18 progress=1 prophecy=0 prudence=0 punishment=0 quality=9 quanity=17 reasoning=2 relation=9 religion=0 revolution=2 rhetoric=0 same=4 science=6 sense=295 sign=0 sin=0 slavery=0 soul=2 space=10 state=3 symbol=0 temperance=0 theology=0 time=1 truth=1 tryanny=0 universal=0 vice=2 virtue=6 war=0 wealth=0 will=1 wisdom=0 world=1 coefficient=1205 aristotle-poetics-1678: author=Aristotle title=Poetics words=14374 words=14374 fog=15 kincaid=12 flesch=51 angel=0 animal=5 aristocracy=0 art=12 astronomy=0 beauty=6 being=301 cause=1 chance=5 change=2 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=4 death=1 definition=10 democracy=4 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=28 emotion=14 equality=0 eternity=0 evil=1 evolution=0 experience=2 family=0 fate=2 form=4 god=0 good=3 government=0 habit=1 happiness=0 history=7 honor=0 hypothesis=0 idea=2 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=3 labor=0 language=12 law=2 liberty=0 life=2 logic=0 love=0 man=1 many=1 mathematics=0 matter=1 mechanics=0 medicine=3 memory=2 metaphysics=0 mind=0 monarchy=0 nature=3 necessity=10 oligarchy=0 one=1 opinion=1 opposition=0 other=0 pain=3 particular=3 peace=0 philosophy=0 physics=0 pleasure=9 poetry=89 principle=7 progress=0 prophecy=0 prudence=0 punishment=0 quality=12 quanity=0 reasoning=1 relation=8 religion=0 revolution=2 rhetoric=5 same=2 science=4 sense=110 sign=0 sin=0 slavery=0 soul=1 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=3 virtue=1 war=2 wealth=0 will=0 wisdom=0 world=0 coefficient=720 aristotle-politics-1790: author=Aristotle title=Politics words=87635 words=87635 fog=19 kincaid=16 flesch=42 angel=0 animal=11 aristocracy=60 art=7 astronomy=0 beauty=2 being=398 cause=3 chance=2 change=3 citizen=67 constitution=62 contingency=0 convention=1 cosmology=0 courage=5 custom=4 death=0 definition=5 democracy=170 desire=3 despotism=13 dialectic=0 duty=5 education=27 element=16 emotion=3 equality=14 eternity=0 evil=5 evolution=0 experience=2 family=16 fate=1 form=6 god=1 good=5 government=80 habit=7 happiness=7 history=0 honor=29 hypothesis=1 idea=5 imagination=0 immortality=0 induction=0 infinity=0 judgement=2 justic=9 knowledge=2 labor=13 language=0 law=19 liberty=2 life=4 logic=0 love=1 man=2 many=2 mathematics=0 matter=2 mechanics=9 medicine=2 memory=0 metaphysics=0 mind=1 monarchy=23 nature=4 necessity=4 oligarchy=203 one=1 opinion=2 opposition=6 other=1 pain=1 particular=4 peace=3 philosophy=2 physics=0 pleasure=4 poetry=1 principle=19 progress=1 prophecy=0 prudence=1 punishment=3 quality=6 quanity=5 reasoning=0 relation=7 religion=2 revolution=30 rhetoric=0 same=2 science=6 sense=38 sign=0 sin=0 slavery=6 soul=4 space=0 state=14 symbol=0 temperance=8 theology=0 time=0 truth=1 tryanny=40 universal=0 vice=2 virtue=19 war=9 wealth=21 will=1 wisdom=1 world=0 coefficient=1621 aristotle-posterior-2886: author=Aristotle title=Posterior Analytics words=32561 words=32561 fog=17 kincaid=14 flesch=41 angel=0 animal=30 aristocracy=0 art=0 astronomy=5 beauty=0 being=434 cause=11 chance=3 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=1 definition=84 democracy=0 desire=0 despotism=0 dialectic=20 duty=0 education=0 element=29 emotion=0 equality=12 eternity=0 evil=1 evolution=0 experience=1 family=0 fate=0 form=4 god=0 good=0 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=10 idea=0 imagination=0 immortality=0 induction=34 infinity=28 judgement=0 justic=1 knowledge=39 labor=0 language=0 law=1 liberty=0 life=0 logic=3 love=0 man=2 many=0 mathematics=17 matter=1 mechanics=3 medicine=2 memory=2 metaphysics=0 mind=0 monarchy=0 nature=5 necessity=6 oligarchy=0 one=1 opinion=7 opposition=4 other=0 pain=0 particular=12 peace=0 philosophy=1 physics=0 pleasure=1 poetry=0 principle=1 progress=1 prophecy=0 prudence=0 punishment=0 quality=6 quanity=0 reasoning=4 relation=12 religion=0 revolution=0 rhetoric=0 same=2 science=47 sense=171 sign=0 sin=0 slavery=0 soul=2 space=0 state=2 symbol=0 temperance=0 theology=0 time=0 truth=13 tryanny=0 universal=0 vice=2 virtue=6 war=2 wealth=1 will=1 wisdom=0 world=0 coefficient=1089 aristotle-prior-2443: author=Aristotle title=Prior Analytics words=45956 words=45956 fog=15 kincaid=11 flesch=52 angel=0 animal=56 aristocracy=0 art=1 astronomy=1 beauty=3 being=496 cause=0 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=0 death=0 definition=12 democracy=0 desire=1 despotism=0 dialectic=7 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=2 evolution=0 experience=1 family=0 fate=0 form=3 god=0 good=4 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=60 idea=0 imagination=0 immortality=0 induction=17 infinity=0 judgement=0 justic=2 knowledge=10 labor=0 language=0 law=0 liberty=0 life=0 logic=0 love=0 man=3 many=0 mathematics=0 matter=1 mechanics=0 medicine=6 memory=0 metaphysics=0 mind=0 monarchy=0 nature=1 necessity=7 oligarchy=0 one=1 opinion=1 opposition=10 other=1 pain=0 particular=49 peace=0 philosophy=1 physics=0 pleasure=4 poetry=0 principle=3 progress=0 prophecy=0 prudence=0 punishment=0 quality=3 quanity=0 reasoning=1 relation=44 religion=0 revolution=0 rhetoric=0 same=3 science=33 sense=63 sign=12 sin=0 slavery=0 soul=1 space=0 state=5 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=1 virtue=1 war=1 wealth=0 will=2 wisdom=2 world=0 coefficient=939 aristotle-rhetoric-1783: author=Aristotle title=Rhetoric words=67691 words=67691 fog=16 kincaid=13 flesch=51 angel=0 animal=0 aristocracy=4 art=3 astronomy=0 beauty=3 being=271 cause=3 chance=3 change=1 citizen=2 constitution=4 contingency= convention=0 cosmology=0 courage=5 custom=2 death=2 definition=13 democracy=2 desire=5 despotism=0 dialectic=14 duty=2 education=6 element=3 emotion=22 equality=2 eternity=0 evil=7 evolution=0 experience=2 family=3 fate=0 form=3 god=2 good=9 government=2 habit=2 happiness=4 history=0 honor=0 hypothesis=1 idea=5 imagination=2 immortality=0 induction=12 infinity=0 judgement=0 justic=5 knowledge=2 labor=0 language=7 law=8 liberty=0 life=1 logic=4 love=3 man=3 many=1 mathematics=0 matter=1 mechanics=0 medicine=1 memory=2 metaphysics=0 mind=2 monarchy=2 nature=2 necessity=1 oligarchy=5 one=1 opinion=4 opposition=0 other=0 pain=9 particular=11 peace=2 philosophy=2 physics=0 pleasure=6 poetry=13 principle=5 progress=1 prophecy=0 prudence=1 punishment=8 quality=14 quanity=1 reasoning=2 relation=4 religion=0 revolution=0 rhetoric=37 same=1 science=6 sense=48 sign=8 sin=0 slavery=1 soul=2 space=0 state=2 symbol=0 temperance=5 theology=0 time=0 truth=2 tryanny=1 universal=0 vice=1 virtue=4 war=4 wealth=8 will=1 wisdom=2 world=0 coefficient=693 aristotle-sophistical-3310: author=Aristotle title=Sophistical Refutations words=23369 words=23369 fog=16 kincaid=13 flesch=52 angel=0 animal=7 aristocracy=0 art=6 astronomy=0 beauty=1 being=335 cause=2 chance=0 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=1 death=1 definition=34 democracy=0 desire=1 despotism=0 dialectic=38 duty=0 education=0 element=5 emotion=0 equality=0 eternity=0 evil=15 evolution=0 experience=0 family=0 fate=1 form=3 god=0 good=4 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=8 infinity=0 judgement=0 justic=1 knowledge=9 labor=0 language=7 law=2 liberty=0 life=1 logic=0 love=0 man=4 many=1 mathematics=0 matter=1 mechanics=0 medicine=2 memory=0 metaphysics=0 mind=0 monarchy=0 nature=1 necessity=7 oligarchy=0 one=1 opinion=7 opposition=10 other=0 pain=1 particular=21 peace=0 philosophy=2 physics=0 pleasure=1 poetry=2 principle=13 progress=0 prophecy=0 prudence=0 punishment=0 quality=5 quanity=4 reasoning=5 relation=14 religion=0 revolution=0 rhetoric=9 same=5 science=4 sense=184 sign=0 sin=0 slavery=0 soul=2 space=0 state=2 symbol=0 temperance=0 theology=0 time=0 truth=3 tryanny=0 universal=0 vice=2 virtue=0 war=0 wealth=1 will=1 wisdom=4 world=0 coefficient=802 aristotle-topics-1577: author=Aristotle title=Topics words=70481 words=70481 fog=17 kincaid=14 flesch=47 angel=0 animal=30 aristocracy=0 art=0 astronomy=0 beauty=3 being=555 cause=1 chance=1 change=0 citizen=0 constitution=4 contingency=0 convention=0 cosmology=0 courage=11 custom=0 death=0 definition=125 democracy=0 desire=13 despotism=0 dialectic=16 duty=0 education=0 element=6 emotion=0 equality=4 eternity=0 evil=11 evolution=0 experience=0 family=0 fate=0 form=2 god=1 good=6 government=0 habit=1 happiness=2 history=0 honor=0 hypothesis=5 idea=6 imagination=0 immortality=8 induction=26 infinity=0 judgement=0 justic=9 knowledge=21 labor=0 language=2 law=1 liberty=0 life=1 logic=0 love=1 man=4 many=1 mathematics=2 matter=1 mechanics=0 medicine=5 memory=2 metaphysics=0 mind=0 monarchy=0 nature=2 necessity=13 oligarchy=0 one=1 opinion=9 opposition=15 other=1 pain=4 particular=13 peace=0 philosophy=1 physics=0 pleasure=8 poetry=0 principle=7 progress=0 prophecy=0 prudence=8 punishment=1 quality=9 quanity=4 reasoning=3 relation=28 religion=0 revolution=0 rhetoric=1 same=3 science=12 sense=154 sign=0 sin=0 slavery=0 soul=9 space=1 state=8 symbol=0 temperance=6 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=7 virtue=6 war=0 wealth=1 will=1 wisdom=2 world=0 coefficient=1226 augustine-city-4013: author=Augustine title=City Of God And Christian Doctrine words=567157 words=567157 fog=10 kincaid=7 flesch=69 angel=29 animal=7 aristocracy=0 art=2 astronomy=0 beauty=2 being=237 cause=1 chance=0 change=1 citizen=5 constitution=1 contingency=0 convention=0 cosmology=0 courage=0 custom=2 death=6 definition=3 democracy=0 desire=3 despotism=0 dialectic=1 duty=1 education=1 element=3 emotion=4 equality=1 eternity=22 evil=9 evolution=0 experience=2 family=3 fate=2 form=1 god=37 good=3 government=2 habit=2 happiness=4 history=4 honor=19 hypothesis=0 idea=2 imagination=1 immortality=10 induction=0 infinity=1 judgement=8 justic=2 knowledge=4 labor=6 language=3 law=4 liberty=2 life=4 logic=1 love=5 man=2 many=1 mathematics=0 matter=1 mechanics=0 medicine=1 memory=2 metaphysics=0 mind=2 monarchy=0 nature=2 necessity=3 oligarchy=0 one=0 opinion=4 opposition=1 other=0 pain=3 particular=1 peace=5 philosophy=3 physics=2 pleasure=3 poetry=0 principle=1 progress=1 prophecy=8 prudence=2 punishment=12 quality=1 quanity=0 reasoning=1 relation=2 religion=7 revolution=1 rhetoric=1 same=1 science=1 sense=36 sign=6 sin=24 slavery=1 soul=12 space=2 state=1 symbol=3 temperance=2 theology=10 time=0 truth=4 tryanny=0 universal=0 vice=7 virtue=5 war=6 wealth=1 will=0 wisdom=6 world=4 coefficient=678 augustine-confessions-2111: author=Augustine title=Confessions words=114101 words=114101 fog=16 kincaid=13 flesch=57 angel=7 animal=1 aristocracy=0 art=7 astronomy=0 beauty=6 being=269 cause=1 chance=1 change=1 citizen=1 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=4 death=3 definition=0 democracy=0 desire=5 despotism=0 dialectic=0 duty=0 education=1 element=1 emotion=1 equality=0 eternity=17 evil=7 evolution=0 experience=2 family=1 fate=0 form=3 god=21 good=4 government=0 habit=2 happiness=5 history=1 honor=0 hypothesis=0 idea=0 imagination=4 immortality=3 induction=0 infinity=0 judgement=3 justic=1 knowledge=3 labor=0 language=1 law=4 liberty=1 life=4 logic=0 love=12 man=2 many=1 mathematics=0 matter=2 mechanics=0 medicine=2 memory=17 metaphysics=0 mind=5 monarchy=0 nature=1 necessity=2 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=2 particular=0 peace=3 philosophy=1 physics=0 pleasure=5 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=6 quality=0 quanity=0 reasoning=1 relation=2 religion=1 revolution=0 rhetoric=5 same=1 science=2 sense=80 sign=3 sin=18 slavery=0 soul=18 space=14 state=1 symbol=0 temperance=1 theology=0 time=0 truth=9 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=1 wisdom=7 world=3 coefficient=625 augustine-on-2959: author=Augustine title=On Christian Doctrine words=68392 words=68392 fog=16 kincaid=13 flesch=54 angel=14 animal=3 aristocracy=0 art=3 astronomy=0 beauty=6 being=267 cause=0 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=6 death=1 definition=2 democracy=0 desire=4 despotism=0 dialectic=0 duty=5 education=1 element=1 emotion=6 equality=2 eternity=11 evil=5 evolution=0 experience=3 family=2 fate=2 form=2 god=22 good=2 government=1 habit=4 happiness=4 history=3 honor=0 hypothesis=0 idea=1 imagination=1 immortality=2 induction=0 infinity=0 judgement=3 justic=1 knowledge=10 labor=0 language=9 law=5 liberty=1 life=3 logic=0 love=14 man=3 many=1 mathematics=0 matter=3 mechanics=0 medicine=3 memory=4 metaphysics=0 mind=4 monarchy=0 nature=1 necessity=5 oligarchy=0 one=0 opinion=2 opposition=2 other=0 pain=1 particular=1 peace=1 philosophy=1 physics=0 pleasure=6 poetry=0 principle=2 progress=0 prophecy=6 prudence=3 punishment=3 quality=2 quanity=1 reasoning=1 relation=4 religion=0 revolution=0 rhetoric=7 same=1 science=3 sense=89 sign=37 sin=14 slavery=2 soul=5 space=1 state=1 symbol=1 temperance=9 theology=2 time=0 truth=8 tryanny=1 universal=0 vice=4 virtue=1 war=0 wealth=0 will=0 wisdom=11 world=1 coefficient=692 bacon-advancement-2670: author=Bacon title=Advancement Of Learning words=85514 words=85514 fog=24 kincaid=20 flesch=29 angel=6 animal=0 aristocracy=0 art=6 astronomy=4 beauty=2 being=227 cause=3 chance=1 change=1 citizen=1 constitution=2 contingency=0 convention=0 cosmology=0 courage=1 custom=5 death=1 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=7 education=2 element=0 emotion=0 equality=1 eternity=0 evil=3 evolution=0 experience=8 family=1 fate=0 form=2 god=8 good=3 government=11 habit=3 happiness=2 history=25 honor=1 hypothesis=0 idea=1 imagination=8 immortality=3 induction=6 infinity=1 judgement=11 justic=1 knowledge=26 labor=0 language=1 law=6 liberty=6 life=2 logic=9 love=2 man=3 many=1 mathematics=8 matter=4 mechanics=0 medicine=10 memory=6 metaphysics=0 mind=6 monarchy=5 nature=7 necessity=3 oligarchy=0 one=0 opinion=8 opposition=2 other=0 pain=1 particular=11 peace=1 philosophy=29 physics=0 pleasure=6 poetry=0 principle=5 progress=4 prophecy=4 prudence=1 punishment=1 quality=1 quanity=7 reasoning=0 relation=3 religion=12 revolution=0 rhetoric=11 same=1 science=22 sense=70 sign=1 sin=2 slavery=0 soul=2 space=1 state=3 symbol=0 temperance=2 theology=7 time=0 truth=4 tryanny=2 universal=0 vice=4 virtue=9 war=2 wealth=1 will=0 wisdom=10 world=2 coefficient=727 bacon-new-1645: author=Bacon title=New Atlantis words=18669 words=18669 fog=15 kincaid=12 flesch=54 angel=6 animal=0 aristocracy=0 art=3 astronomy=6 beauty=2 being=128 cause=1 chance=1 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=7 death=1 definition=0 democracy=0 desire=4 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=8 family=19 fate=0 form=1 god=5 good=2 government=0 habit=0 happiness=0 history=1 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=5 labor=0 language=5 law=9 liberty=0 life=1 logic=0 love=1 man=1 many=1 mathematics=0 matter=1 mechanics=0 medicine=0 memory=4 metaphysics=6 mind=0 monarchy=0 nature=2 necessity=1 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=0 particular=4 peace=2 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=2 quanity=1 reasoning=0 relation=3 religion=3 revolution=2 rhetoric=0 same=1 science=4 sense=0 sign=5 sin=2 slavery=0 soul=0 space=6 state=4 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=5 virtue=2 war=1 wealth=0 will=0 wisdom=1 world=3 coefficient=285 berkeley-treatise-5826: author=Berkeley title=Treatise Concerning The Principles Of Human Knowledge words=36053 words=36053 fog=18 kincaid=15 flesch=44 angel=0 animal=7 aristocracy=0 art=1 astronomy=2 beauty=1 being=411 cause=3 chance=0 change=2 citizen=0 constitution=4 contingency=0 convention=0 cosmology=0 courage=0 custom=2 death=0 definition=6 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=4 eternity=0 evil=2 evolution=0 experience=3 family=0 fate=0 form=1 god=6 good=1 government=0 habit=0 happiness=1 history=1 honor=0 hypothesis=1 idea=205 imagination=13 immortality=2 induction=2 infinity=11 judgement=2 justic=1 knowledge=11 labor=0 language=7 law=3 liberty=0 life=1 logic=2 love=1 man=1 many=0 mathematics=9 matter=6 mechanics=9 medicine=0 memory=1 metaphysics=7 mind=19 monarchy=0 nature=6 necessity=1 oligarchy=0 one=0 opinion=6 opposition=2 other=0 pain=6 particular=26 peace=0 philosophy=9 physics=0 pleasure=2 poetry=0 principle=22 progress=1 prophecy=0 prudence=0 punishment=0 quality=26 quanity=9 reasoning=0 relation=16 religion=7 revolution=0 rhetoric=0 same=1 science=10 sense=396 sign=11 sin=0 slavery=0 soul=7 space=14 state=0 symbol=0 temperance=0 theology=0 time=0 truth=5 tryanny=0 universal=0 vice=1 virtue=1 war=0 wealth=0 will=1 wisdom=5 world=2 coefficient=1366 boswell-life-2092: author=Boswell title=Life Of Johnson words=217716 words=217716 fog=13 kincaid=10 flesch=58 angel=1 animal=4 aristocracy=0 art=1 astronomy=0 beauty=2 being=217 cause=0 chance=2 change=0 citizen=0 constitution=2 contingency=0 convention=0 cosmology=0 courage=1 custom=2 death=3 definition=1 democracy=0 desire=3 despotism=0 dialectic=0 duty=2 education=4 element=0 emotion=2 equality=2 eternity=1 evil=1 evolution=0 experience=2 family=7 fate=0 form=1 god=1 good=3 government=2 habit=2 happiness=7 history=5 honor=0 hypothesis=0 idea=2 imagination=5 immortality=1 induction=0 infinity=0 judgement=0 justic=1 knowledge=3 labor=1 language=4 law=1 liberty=5 life=3 logic=0 love=3 man=4 many=1 mathematics=0 matter=1 mechanics=0 medicine=1 memory=2 metaphysics=0 mind=4 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=4 opposition=1 other=0 pain=2 particular=6 peace=1 philosophy=1 physics=0 pleasure=4 poetry=7 principle=3 progress=1 prophecy=0 prudence=0 punishment=2 quality=2 quanity=1 reasoning=1 relation=4 religion=7 revolution=1 rhetoric=0 same=0 science=1 sense=20 sign=1 sin=1 slavery=0 soul=0 space=1 state=1 symbol=0 temperance=2 theology=1 time=0 truth=2 tryanny=1 universal=0 vice=2 virtue=1 war=1 wealth=2 will=1 wisdom=1 world=2 coefficient=414 cervantes-don-2011: author=Cervantes title=Don Quixote words=97183 words=97183 fog=15 kincaid=13 flesch=55 angel=1 animal=2 aristocracy=0 art=0 astronomy=0 beauty=6 being=131 cause=1 chance=3 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=2 death=2 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=3 education=1 element=0 emotion=2 equality=0 eternity=0 evil=3 evolution=0 experience=1 family=2 fate=4 form=0 god=2 good=2 government=6 habit=0 happiness=3 history=5 honor=15 hypothesis=0 idea=3 imagination=3 immortality=0 induction=0 infinity=0 judgement=2 justic=1 knowledge=1 labor=3 language=3 law=2 liberty=0 life=2 logic=1 love=4 man=1 many=0 mathematics=0 matter=2 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=1 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=3 particular=3 peace=2 philosophy=0 physics=0 pleasure=0 poetry=4 principle=0 progress=1 prophecy=0 prudence=0 punishment=3 quality=1 quanity=1 reasoning=1 relation=0 religion=1 revolution=0 rhetoric=0 same=0 science=1 sense=28 sign=2 sin=4 slavery=0 soul=1 space=1 state=1 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=1 war=1 wealth=0 will=0 wisdom=0 world=2 coefficient=297 chaucer-canterbury-3692: author=Chaucer title=Canterbury Tales And Other Poems words=277733 words=277733 fog=16 kincaid=13 flesch=58 angel=4 animal=1 aristocracy=0 art=2 astronomy=1 beauty=3 being=154 cause=1 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=2 cosmology=0 courage=1 custom=1 death=3 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=1 education=0 element=1 emotion=0 equality=0 eternity=2 evil=2 evolution=0 experience=1 family=1 fate=1 form=0 god=11 good=3 government=3 habit=1 happiness=1 history=1 honor=1 hypothesis=0 idea=1 imagination=1 immortality=1 induction=0 infinity=0 judgement=1 justic=1 knowledge=1 labor=0 language=1 law=2 liberty=1 life=2 logic=0 love=12 man=2 many=1 mathematics=0 matter=1 mechanics=0 medicine=1 memory=1 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=5 particular=0 peace=3 philosophy=1 physics=0 pleasure=2 poetry=3 principle=0 progress=0 prophecy=0 prudence=6 punishment=1 quality=1 quanity=1 reasoning=1 relation=0 religion=1 revolution=0 rhetoric=1 same=0 science=1 sense=10 sign=2 sin=13 slavery=0 soul=3 space=4 state=0 symbol=0 temperance=1 theology=0 time=0 truth=1 tryanny=1 universal=0 vice=4 virtue=2 war=2 wealth=0 will=1 wisdom=1 world=2 coefficient=315 chaucer-troilus-2616: author=Chaucer title=Troilus And Criseyde words=68253 words=68253 fog=12 kincaid=10 flesch=71 angel=0 animal=0 aristocracy=0 art=2 astronomy=0 beauty=0 being=0 cause=2 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=1 form=0 god=16 good=3 government=0 habit=1 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=0 law=1 liberty=0 life=0 logic=0 love=18 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=0 particular=0 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=1 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=0 sign=0 sin=26 slavery=0 soul=0 space=3 state=1 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=2 wealth=0 will=0 wisdom=0 world=3 coefficient=82 dante-divine-1740: author=Dante title=Divine Comedy words=111235 words=111235 fog=12 kincaid=10 flesch=68 angel=12 animal=2 aristocracy=0 art=4 astronomy=0 beauty=3 being=65 cause=1 chance=2 change=1 citizen=2 constitution=0 contingency= convention=0 cosmology=0 courage=0 custom=1 death=2 definition=0 democracy=0 desire=3 despotism=0 dialectic=0 duty=1 education=0 element=1 emotion=0 equality=2 eternity=12 evil=5 evolution=1 experience=1 family=1 fate=3 form=1 god=5 good=2 government=0 habit=0 happiness=2 history=0 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=2 justic=3 knowledge=1 labor=0 language=1 law=2 liberty=1 life=1 logic=0 love=7 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=2 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=0 opposition=2 other=0 pain=3 particular=0 peace=3 philosophy=0 physics=0 pleasure=2 poetry=0 principle=0 progress=1 prophecy=0 prudence=1 punishment=1 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=20 sign=3 sin=6 slavery=0 soul=7 space=12 state=1 symbol=0 temperance=1 theology=0 time=0 truth=3 tryanny=0 universal=0 vice=1 virtue=5 war=1 wealth=1 will=0 wisdom=2 world=3 coefficient=240 darwin-descent-1852: author=Darwin title=Descent Of Man words=300432 words=300432 fog=14 kincaid=11 flesch=48 angel=0 animal=43 aristocracy=1 art=1 astronomy=0 beauty=10 being=149 cause=1 chance=1 change=2 citizen=0 constitution=3 contingency= convention=0 cosmology=0 courage=2 custom=2 death=1 definition=3 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=1 element=2 emotion=6 equality=3 eternity=0 evil=1 evolution=7 experience=2 family=9 fate=0 form=2 god=0 good=1 government=1 habit=15 happiness=1 history=6 honor=0 hypothesis=2 idea=3 imagination=1 immortality=0 induction=0 infinity=0 judgement=1 justic=0 knowledge=1 labor=0 language=4 law=2 liberty=0 life=2 logic=0 love=1 man=3 many=1 mathematics=0 matter=0 mechanics=0 medicine=0 memory=1 metaphysics=2 mind=1 monarchy=0 nature=2 necessity=0 oligarchy=0 one=0 opinion=1 opposition=3 other=0 pain=1 particular=2 peace=0 philosophy=0 physics=2 pleasure=2 poetry=0 principle=4 progress=4 prophecy=0 prudence=0 punishment=1 quality=2 quanity=0 reasoning=1 relation=7 religion=1 revolution=0 rhetoric=0 same=2 science=3 sense=35 sign=0 sin=0 slavery=1 soul=0 space=2 state=2 symbol=0 temperance=1 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=1 war=1 wealth=1 will=0 wisdom=0 world=1 coefficient=386 darwin-origin-2190: author=Darwin title=Origin Of Species words=208508 words=208508 fog=21 kincaid=18 flesch=30 angel=0 animal=42 aristocracy=0 art=0 astronomy=0 beauty=3 being=248 cause=2 chance=4 change=4 citizen=0 constitution=5 contingency= convention=0 cosmology=0 courage=0 custom=0 death=0 definition=6 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=5 emotion=0 equality=0 eternity=0 evil=0 evolution=3 experience=4 family=10 fate=0 form=7 god=0 good=1 government=2 habit=16 happiness=0 history=4 honor=0 hypothesis=2 idea=2 imagination=1 immortality=0 induction=0 infinity=0 judgement=1 justic=0 knowledge=0 labor=0 language=1 law=4 liberty=0 life=3 logic=0 love=0 man=1 many=2 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=6 necessity=1 oligarchy=0 one=0 opinion=1 opposition=3 other=0 pain=0 particular=2 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=7 progress=4 prophecy=0 prudence=0 punishment=0 quality=2 quanity=1 reasoning=1 relation=12 religion=0 revolution=1 rhetoric=0 same=3 science=1 sense=14 sign=0 sin=0 slavery=0 soul=0 space=6 state=2 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=1 wisdom=0 world=2 coefficient=455 descartes-discourse-2822: author=Descartes title=Discourse Of A Method words=24898 words=24898 fog=21 kincaid=18 flesch=38 angel=0 animal=7 aristocracy=0 art=2 astronomy=0 beauty=0 being=262 cause=3 chance=1 change=2 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=3 death=0 definition=0 democracy=0 desire=5 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=13 family=0 fate=0 form=1 god=7 good=2 government=0 habit=1 happiness=0 history=3 honor=2 hypothesis=0 idea=4 imagination=17 immortality=0 induction=0 infinity=0 judgement=8 justic=0 knowledge=10 labor=0 language=3 law=6 liberty=4 life=2 logic=0 love=0 man=1 many=1 mathematics=0 matter=2 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=3 monarchy=0 nature=3 necessity=1 oligarchy=0 one=1 opinion=12 opposition=2 other=1 pain=0 particular=13 peace=1 philosophy=13 physics=0 pleasure=1 poetry=4 principle=10 progress=3 prophecy=0 prudence=4 punishment=0 quality=0 quanity=0 reasoning=7 relation=3 religion=4 revolution=0 rhetoric=0 same=1 science=15 sense=69 sign=0 sin=0 slavery=0 soul=7 space=4 state=2 symbol=0 temperance=0 theology=4 time=0 truth=10 tryanny=0 universal=0 vice=3 virtue=0 war=0 wealth=1 will=0 wisdom=0 world=4 coefficient=579 descartes-meditations-3955: author=Descartes title=Meditations On First Philosophy words=31610 words=31610 fog=24 kincaid=21 flesch=31 angel=5 animal=4 aristocracy=0 art=0 astronomy=2 beauty=0 being=321 cause=7 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=1 death=0 definition=0 democracy=0 desire=6 despotism=0 dialectic=0 duty=0 education=0 element=3 emotion=0 equality=0 eternity=6 evil=2 evolution=0 experience=5 family=0 fate=1 form=4 god=29 good=1 government=0 habit=5 happiness=0 history=0 honor=0 hypothesis=0 idea=103 imagination=38 immortality=4 induction=0 infinity=2 judgement=19 justic=0 knowledge=17 labor=0 language=1 law=0 liberty=6 life=1 logic=0 love=0 man=1 many=1 mathematics=9 matter=5 mechanics=0 medicine=1 memory=6 metaphysics=0 mind=15 monarchy=0 nature=8 necessity=5 oligarchy=0 one=0 opinion=7 opposition=0 other=1 pain=9 particular=6 peace=0 philosophy=6 physics=3 pleasure=2 poetry=0 principle=0 progress=1 prophecy=0 prudence=0 punishment=0 quality=4 quanity=3 reasoning=6 relation=3 religion=2 revolution=0 rhetoric=0 same=2 science=6 sense=236 sign=1 sin=2 slavery=0 soul=7 space=4 state=1 symbol=0 temperance=0 theology=3 time=0 truth=11 tryanny=0 universal=0 vice=2 virtue=1 war=0 wealth=0 will=1 wisdom=2 world=2 coefficient=980 dostoyevsky-brothers-3017: author=Dostoyevsky title=Brothers Karamazov words=351891 words=351891 fog=10 kincaid=7 flesch=69 angel=7 animal=1 aristocracy=0 art=0 astronomy=0 beauty=2 being=132 cause=0 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=2 definition=1 democracy=0 desire=1 despotism=0 dialectic=0 duty=2 education=3 element=1 emotion=3 equality=1 eternity=2 evil=1 evolution=0 experience=0 family=5 fate=3 form=0 god=5 good=2 government=0 habit=1 happiness=4 history=1 honor=14 hypothesis=1 idea=9 imagination=3 immortality=2 induction=0 infinity=0 judgement=1 justic=1 knowledge=1 labor=1 language=1 law=1 liberty=0 life=2 logic=1 love=9 man=2 many=0 mathematics=1 matter=1 mechanics=0 medicine=1 memory=2 metaphysics=0 mind=2 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=2 opposition=1 other=0 pain=1 particular=2 peace=1 philosophy=1 physics=0 pleasure=0 poetry=1 principle=0 progress=1 prophecy=1 prudence=0 punishment=3 quality=0 quanity=0 reasoning=1 relation=2 religion=1 revolution=0 rhetoric=1 same=0 science=1 sense=16 sign=7 sin=7 slavery=1 soul=4 space=1 state=1 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=1 virtue=0 war=0 wealth=0 will=1 wisdom=0 world=2 coefficient=302 epictetus-discourses-2010: author=Epictetus title=Discourses words=117009 words=117009 fog=11 kincaid=8 flesch=70 angel=0 animal=10 aristocracy=0 art=3 astronomy=0 beauty=7 being=292 cause=1 chance=1 change=1 citizen=7 constitution=2 contingency=0 convention=0 cosmology=0 courage=1 custom=0 death=5 definition=1 democracy=0 desire=9 despotism=0 dialectic=0 duty=5 education=3 element=0 emotion=0 equality=2 eternity=0 evil=11 evolution=0 experience=1 family=3 fate=0 form=1 god=11 good=6 government=3 habit=6 happiness=8 history=0 honor=2 hypothesis=5 idea=0 imagination=4 immortality=0 induction=0 infinity=1 judgement=1 justic=1 knowledge=1 labor=3 language=1 law=2 liberty=2 life=2 logic=3 love=3 man=9 many=1 mathematics=0 matter=4 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=2 monarchy=0 nature=4 necessity=4 oligarchy=0 one=0 opinion=16 opposition=1 other=0 pain=5 particular=2 peace=1 philosophy=8 physics=0 pleasure=3 poetry=0 principle=4 progress=6 prophecy=0 prudence=0 punishment=3 quality=1 quanity=1 reasoning=4 relation=3 religion=0 revolution=0 rhetoric=0 same=1 science=1 sense=23 sign=2 sin=0 slavery=6 soul=5 space=0 state=1 symbol=0 temperance=4 theology=0 time=0 truth=2 tryanny=1 universal=0 vice=3 virtue=2 war=1 wealth=3 will=2 wisdom=0 world=1 coefficient=572 euripides-alcestis-1762: author=Euripides title=Alcestis words=20591 words=20591 fog=9 kincaid=6 flesch=72 angel=0 animal=1 aristocracy=0 art=2 astronomy=0 beauty=5 being=144 cause=0 chance=0 change=1 citizen=5 constitution=0 contingency=0 convention=7 cosmology=0 courage=0 custom=0 death=10 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=0 element=1 emotion=7 equality=0 eternity=3 evil=3 evolution=0 experience=0 family=1 fate=10 form=1 god=8 good=1 government=0 habit=0 happiness=4 history=0 honor=0 hypothesis=0 idea=0 imagination=2 immortality=0 induction=0 infinity=0 judgement=2 justic=0 knowledge=0 labor=0 language=3 law=3 liberty=0 life=5 logic=0 love=9 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=4 particular=3 peace=2 philosophy=0 physics=0 pleasure=0 poetry=8 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=2 quanity=0 reasoning=0 relation=1 religion=1 revolution=0 rhetoric=0 same=0 science=0 sense=8 sign=1 sin=1 slavery=2 soul=3 space=0 state=2 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=1 wisdom=0 world=1 coefficient=286 euripides-andromache-1948: author=Euripides title=Andromache words=12178 words=12178 fog=10 kincaid=8 flesch=70 angel=0 animal=0 aristocracy=0 art=12 astronomy=0 beauty=1 being=77 cause=2 chance=1 change=0 citizen=4 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=11 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=3 education=0 element=0 emotion=0 equality=0 eternity=0 evil=12 evolution=0 experience=2 family=1 fate=8 form=1 god=8 good=1 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=2 knowledge=1 labor=0 language=1 law=2 liberty=0 life=3 logic=0 love=3 man=2 many=1 mathematics=0 matter=1 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=3 nature=0 necessity=0 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=0 particular=0 peace=1 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=21 sign=0 sin=4 slavery=12 soul=2 space=2 state=0 symbol=3 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=2 war=1 wealth=4 will=1 wisdom=5 world=2 coefficient=228 euripides-bacchantes-1942: author=Euripides title=Bacchantes words=12384 words=12384 fog=10 kincaid=8 flesch=70 angel=0 animal=0 aristocracy=0 art=10 astronomy=0 beauty=0 being=83 cause=1 chance=0 change=2 citizen=3 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=5 death=1 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=1 evil=2 evolution=0 experience=0 family=0 fate=9 form=1 god=25 good=1 government=1 habit=0 happiness=8 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=2 knowledge=1 labor=0 language=0 law=1 liberty=2 life=2 logic=0 love=1 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=2 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=1 particular=0 peace=1 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=3 prudence=0 punishment=5 quality=0 quanity=0 reasoning=1 relation=0 religion=2 revolution=0 rhetoric=0 same=0 science=0 sense=27 sign=0 sin=7 slavery=0 soul=3 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=2 wealth=3 will=1 wisdom=11 world=1 coefficient=239 euripides-cyclops-1671: author=Euripides title=Cyclops words=7164 words=7164 fog=9 kincaid=7 flesch=73 angel=0 animal=0 aristocracy=0 art=6 astronomy=0 beauty=0 being=67 cause=0 chance=3 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=2 death=1 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=2 emotion=0 equality=0 eternity=0 evil=4 evolution=0 experience=0 family=3 fate=0 form=0 god=19 good=1 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=0 law=0 liberty=0 life=1 logic=0 love=4 man=2 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=0 particular=0 peace=1 philosophy=0 physics=0 pleasure=2 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=0 sign=0 sin=0 slavery=0 soul=0 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=2 will=1 wisdom=0 world=1 coefficient=127 euripides-electra-1642: author=Euripides title=Electra words=21470 words=21470 fog=8 kincaid=6 flesch=74 angel=0 animal=0 aristocracy=0 art=3 astronomy=2 beauty=2 being=107 cause=0 chance=2 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=4 custom=0 death=5 definition=0 democracy=2 desire=0 despotism=0 dialectic=0 duty=3 education=0 element=1 emotion=3 equality=0 eternity=0 evil=5 evolution=0 experience=1 family=2 fate=5 form=1 god=12 good=1 government=0 habit=0 happiness=3 history=3 honor=0 hypothesis=0 idea=0 imagination=0 immortality=3 induction=0 infinity=0 judgement=4 justic=5 knowledge=0 labor=0 language=0 law=3 liberty=0 life=2 logic=0 love=6 man=3 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=6 particular=2 peace=7 philosophy=0 physics=0 pleasure=0 poetry=4 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=1 quanity=0 reasoning=0 relation=0 religion=1 revolution=0 rhetoric=0 same=0 science=0 sense=8 sign=13 sin=14 slavery=0 soul=3 space=0 state=2 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=4 wealth=1 will=0 wisdom=1 world=2 coefficient=264 euripides-hecuba-1522: author=Euripides title=Hecuba words=12007 words=12007 fog=10 kincaid=7 flesch=71 angel=0 animal=0 aristocracy=0 art=7 astronomy=0 beauty=1 being=103 cause=2 chance=2 change=0 citizen=1 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=5 death=10 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=3 education=0 element=0 emotion=0 equality=0 eternity=0 evil=6 evolution=0 experience=1 family=0 fate=13 form=0 god=6 good=2 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=3 knowledge=1 labor=0 language=0 law=1 liberty=0 life=4 logic=0 love=1 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=2 opposition=0 other=0 pain=2 particular=0 peace=1 philosophy=0 physics=0 pleasure=1 poetry=0 principle=1 progress=0 prophecy=3 prudence=0 punishment=7 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=3 sense=7 sign=2 sin=2 slavery=15 soul=2 space=0 state=1 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=2 wealth=1 will=1 wisdom=0 world=1 coefficient=233 euripides-helen-1430: author=Euripides title=Helen words=16717 words=16717 fog=10 kincaid=7 flesch=71 angel=0 animal=0 aristocracy=0 art=14 astronomy=0 beauty=5 being=105 cause=1 chance=3 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=6 death=8 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=2 education=0 element=0 emotion=0 equality=0 eternity=0 evil=7 evolution=0 experience=1 family=0 fate=10 form=1 god=8 good=2 government=0 habit=0 happiness=5 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=4 knowledge=1 labor=0 language=0 law=0 liberty=0 life=3 logic=0 love=2 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=0 monarchy=0 nature=0 necessity=1 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=0 particular=0 peace=1 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=4 prudence=0 punishment=2 quality=1 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=10 sign=2 sin=0 slavery=0 soul=3 space=2 state=1 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=0 virtue=0 war=2 wealth=2 will=1 wisdom=3 world=2 coefficient=233 euripides-heracleidae-2033: author=Euripides title=Heracleidae words=10246 words=10246 fog=11 kincaid=8 flesch=70 angel=0 animal=0 aristocracy=0 art=10 astronomy=0 beauty=0 being=123 cause=2 chance=3 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=3 custom=2 death=11 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=6 evolution=0 experience=0 family=5 fate=8 form=0 god=10 good=1 government=0 habit=0 happiness=3 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=6 knowledge=1 labor=0 language=0 law=2 liberty=2 life=3 logic=0 love=3 man=2 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=3 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=1 particular=0 peace=4 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=26 sign=0 sin=2 slavery=0 soul=4 space=0 state=2 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=2 wealth=0 will=1 wisdom=1 world=1 coefficient=257 euripides-heracles-1745: author=Euripides title=Heracles words=13496 words=13496 fog=10 kincaid=8 flesch=70 angel=0 animal=0 aristocracy=0 art=8 astronomy=0 beauty=0 being=77 cause=0 chance=0 change=2 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=7 custom=0 death=14 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=7 evolution=0 experience=1 family=3 fate=14 form=0 god=9 good=1 government=2 habit=0 happiness=5 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=2 knowledge=1 labor=0 language=1 law=2 liberty=0 life=3 logic=0 love=4 man=3 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=2 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=2 particular=0 peace=1 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=1 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=26 sign=0 sin=0 slavery=0 soul=2 space=2 state=0 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=2 universal=0 vice=0 virtue=0 war=2 wealth=10 will=1 wisdom=3 world=2 coefficient=227 euripides-hippolytus-2027: author=Euripides title=Hippolytus words=13048 words=13048 fog=9 kincaid=7 flesch=75 angel=0 animal=0 aristocracy=0 art=6 astronomy=0 beauty=1 being=86 cause=1 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=9 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=12 evolution=0 experience=3 family=7 fate=17 form=0 god=10 good=1 government=0 habit=0 happiness=0 history=1 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=4 justic=1 knowledge=1 labor=0 language=0 law=2 liberty=0 life=6 logic=0 love=14 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=2 memory=1 metaphysics=0 mind=2 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=0 particular=0 peace=5 philosophy=0 physics=0 pleasure=3 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=1 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=57 sign=0 sin=16 slavery=0 soul=9 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=2 virtue=2 war=1 wealth=1 will=1 wisdom=4 world=1 coefficient=301 euripides-ion-1232: author=Euripides title=Ion words=14282 words=14282 fog=9 kincaid=7 flesch=74 angel=0 animal=0 aristocracy=0 art=5 astronomy=0 beauty=1 being=89 cause=2 chance=2 change=1 citizen=1 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=6 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=15 form=1 god=28 good=1 government=0 habit=0 happiness=10 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=3 knowledge=0 labor=0 language=0 law=3 liberty=0 life=3 logic=0 love=3 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=3 monarchy=3 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=1 other=0 pain=1 particular=0 peace=1 philosophy=0 physics=0 pleasure=6 poetry=0 principle=0 progress=1 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=17 sign=0 sin=0 slavery=0 soul=4 space=3 state=4 symbol=0 temperance=2 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=2 war=3 wealth=6 will=0 wisdom=0 world=0 coefficient=236 euripides-medea-1414: author=Euripides title=Medea words=13675 words=13675 fog=10 kincaid=8 flesch=73 angel=0 animal=0 aristocracy=0 art=7 astronomy=0 beauty=1 being=96 cause=2 chance=3 change=1 citizen=4 constitution=0 contingency=0 convention=0 cosmology=0 courage=4 custom=0 death=5 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=7 evolution=0 experience=2 family=8 fate=11 form=0 god=9 good=2 government=0 habit=0 happiness=8 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=2 knowledge=1 labor=0 language=1 law=1 liberty=0 life=4 logic=0 love=8 man=1 many=1 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=1 particular=0 peace=4 philosophy=0 physics=0 pleasure=2 poetry=0 principle=0 progress=0 prophecy=0 prudence=3 punishment=5 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=12 sign=0 sin=0 slavery=0 soul=8 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=1 war=0 wealth=5 will=1 wisdom=5 world=0 coefficient=239 euripides-orestes-1679: author=Euripides title=Orestes words=7104 words=7104 fog=10 kincaid=8 flesch=68 angel=0 animal=0 aristocracy=0 art=15 astronomy=0 beauty=1 being=68 cause=2 chance=0 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=11 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=2 education=0 element=0 emotion=0 equality=0 eternity=0 evil=2 evolution=0 experience=0 family=7 fate=13 form=0 god=6 good=1 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=3 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=0 law=0 liberty=0 life=2 logic=0 love=2 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=2 particular=0 peace=5 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=0 sign=0 sin=3 slavery=0 soul=1 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=2 wealth=0 will=1 wisdom=2 world=1 coefficient=159 euripides-phoenissae-1977: author=Euripides title=Phoenissae words=16329 words=16329 fog=11 kincaid=8 flesch=68 angel=0 animal=0 aristocracy=0 art=10 astronomy=0 beauty=0 being=89 cause=1 chance=3 change=0 citizen=6 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=2 death=6 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=3 eternity=1 evil=7 evolution=0 experience=1 family=1 fate=19 form=0 god=9 good=1 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=5 knowledge=0 labor=0 language=1 law=2 liberty=0 life=2 logic=0 love=3 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=1 other=0 pain=1 particular=0 peace=2 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=2 prudence=2 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=16 sign=1 sin=2 slavery=4 soul=1 space=1 state=0 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=2 universal=0 vice=0 virtue=0 war=3 wealth=3 will=1 wisdom=1 world=1 coefficient=222 euripides-rhesus-1572: author=Euripides title=Rhesus words=9366 words=9366 fog=9 kincaid=7 flesch=74 angel=0 animal=0 aristocracy=0 art=9 astronomy=0 beauty=0 being=0 cause=1 chance=2 change=1 citizen=2 constitution=0 contingency=0 convention=0 cosmology=0 courage=5 custom=0 death=5 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=2 evolution=0 experience=0 family=0 fate=10 form=0 god=7 good=1 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=2 knowledge=1 labor=0 language=1 law=0 liberty=0 life=1 logic=0 love=1 man=2 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=2 particular=0 peace=0 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=0 sign=0 sin=0 slavery=0 soul=3 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=3 wealth=0 will=1 wisdom=1 world=1 coefficient=69 euripides-suppliants-2013: author=Euripides title=Suppliants words=11877 words=11877 fog=11 kincaid=8 flesch=69 angel=0 animal=0 aristocracy=0 art=7 astronomy=0 beauty=1 being=71 cause=1 chance=0 change=0 citizen=9 constitution=0 contingency=0 convention=0 cosmology=0 courage=4 custom=0 death=4 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=6 education=0 element=3 emotion=0 equality=3 eternity=0 evil=3 evolution=0 experience=1 family=3 fate=11 form=1 god=8 good=1 government=0 habit=1 happiness=3 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=5 justic=3 knowledge=1 labor=0 language=1 law=4 liberty=0 life=3 logic=0 love=3 man=1 many=1 mathematics=0 matter=0 mechanics=0 medicine=0 memory=3 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=1 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=0 particular=0 peace=5 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=7 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=1 sense=0 sign=2 sin=0 slavery=0 soul=0 space=0 state=3 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=2 war=7 wealth=9 will=1 wisdom=2 world=1 coefficient=212 euripides-trojan-2110: author=Euripides title=Trojan Women words=21495 words=21495 fog=9 kincaid=7 flesch=71 angel=0 animal=0 aristocracy=0 art=2 astronomy=0 beauty=6 being=123 cause=0 chance=0 change=1 citizen=0 constitution=0 contingency=0 convention=5 cosmology=0 courage=0 custom=1 death=8 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=5 emotion=0 equality=0 eternity=0 evil=8 evolution=0 experience=1 family=0 fate=4 form=1 god=14 good=1 government=0 habit=0 happiness=0 history=2 honor=0 hypothesis=4 idea=0 imagination=3 immortality=0 induction=0 infinity=0 judgement=2 justic=1 knowledge=0 labor=0 language=1 law=3 liberty=0 life=1 logic=0 love=9 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=3 particular=2 peace=6 philosophy=0 physics=0 pleasure=1 poetry=1 principle=1 progress=0 prophecy=3 prudence=0 punishment=1 quality=1 quanity=0 reasoning=0 relation=0 religion=3 revolution=0 rhetoric=0 same=0 science=0 sense=4 sign=1 sin=4 slavery=8 soul=3 space=1 state=2 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=12 wealth=1 will=0 wisdom=2 world=2 coefficient=271 fielding-history-3755: author=Fielding title=History Of Tom Jones, A Foundling words=350758 words=350758 fog=17 kincaid=14 flesch=49 angel=4 animal=1 aristocracy=0 art=1 astronomy=0 beauty=4 being=207 cause=1 chance=1 change=0 citizen=0 constitution=2 contingency=0 convention=0 cosmology=0 courage=1 custom=2 death=1 definition=0 democracy=0 desire=4 despotism=0 dialectic=0 duty=3 education=3 element=0 emotion=2 equality=2 eternity=1 evil=1 evolution=0 experience=1 family=9 fate=2 form=0 god=0 good=4 government=2 habit=1 happiness=5 history=10 honor=0 hypothesis=0 idea=3 imagination=9 immortality=1 induction=0 infinity=0 judgement=2 justic=3 knowledge=1 labor=0 language=1 law=2 liberty=4 life=1 logic=0 love=6 man=2 many=1 mathematics=0 matter=3 mechanics=0 medicine=1 memory=1 metaphysics=0 mind=2 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=5 opposition=1 other=0 pain=1 particular=3 peace=1 philosophy=1 physics=1 pleasure=3 poetry=1 principle=1 progress=1 prophecy=0 prudence=3 punishment=4 quality=3 quanity=1 reasoning=1 relation=5 religion=6 revolution=1 rhetoric=0 same=1 science=0 sense=29 sign=1 sin=2 slavery=0 soul=2 space=1 state=0 symbol=0 temperance=5 theology=0 time=0 truth=3 tryanny=0 universal=0 vice=5 virtue=3 war=1 wealth=1 will=1 wisdom=2 world=3 coefficient=423 galen-on-2716: author=Galen title=On The Natural Faculties words=43077 words=43077 fog=20 kincaid=17 flesch=39 angel=0 animal=51 aristocracy=0 art=1 astronomy=0 beauty=0 being=226 cause=3 chance=1 change=2 citizen=0 constitution=5 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=5 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=11 emotion=0 equality=0 eternity=1 evil=1 evolution=0 experience=3 family=0 fate=0 form=1 god=0 good=1 government=0 habit=1 happiness=0 history=0 honor=0 hypothesis=14 idea=4 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=1 knowledge=0 labor=0 language=1 law=0 liberty=0 life=1 logic=13 love=0 man=0 many=0 mathematics=0 matter=6 mechanics=0 medicine=7 memory=0 metaphysics=0 mind=0 monarchy=0 nature=6 necessity=1 oligarchy=0 one=1 opinion=2 opposition=6 other=1 pain=2 particular=5 peace=0 philosophy=0 physics=1 pleasure=0 poetry=0 principle=14 progress=1 prophecy=0 prudence=0 punishment=0 quality=21 quanity=23 reasoning=2 relation=3 religion=0 revolution=0 rhetoric=6 same=1 science=0 sense=39 sign=0 sin=0 slavery=0 soul=2 space=12 state=2 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=1 virtue=4 war=0 wealth=0 will=1 wisdom=1 world=0 coefficient=521 galileo-dialogues-4209: author=Galileo title=Dialogues Concerning Two New Sciences words=102736 words=102736 fog=17 kincaid=14 flesch=46 angel=1 animal=2 aristocracy=0 art=0 astronomy=2 beauty=1 being=210 cause=1 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=10 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=2 emotion=0 equality=35 eternity=0 evil=0 evolution=0 experience=12 family=0 fate=0 form=1 god=0 good=0 government=0 habit=0 happiness=0 history=1 honor=1 hypothesis=2 idea=3 imagination=6 immortality=0 induction=0 infinity=11 judgement=0 justic=0 knowledge=1 labor=2 language=1 law=0 liberty=53 life=0 logic=2 love=0 man=0 many=0 mathematics=4 matter=2 mechanics=10 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=0 nature=2 necessity=1 oligarchy=0 one=1 opinion=3 opposition=2 other=0 pain=0 particular=2 peace=0 philosophy=0 physics=2 pleasure=1 poetry=0 principle=4 progress=1 prophecy=0 prudence=0 punishment=0 quality=1 quanity=13 reasoning=1 relation=2 religion=0 revolution=1 rhetoric=0 same=3 science=47 sense=8 sign=0 sin=1 slavery=0 soul=0 space=19 state=0 symbol=0 temperance=0 theology=0 time=1 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=1 wisdom=0 world=0 coefficient=499 gibbon-history-5870: author=Gibbon title=History Of The Decline And Fall Of The Roman Empire (Volume 1) words=184197 words=184197 fog=21 kincaid=17 flesch=31 angel=1 animal=4 aristocracy=2 art=4 astronomy=1 beauty=2 being=55 cause=1 chance=1 change=0 citizen=7 constitution=7 contingency=0 convention=0 cosmology=0 courage=4 custom=1 death=6 definition=0 democracy=1 desire=1 despotism=9 dialectic=0 duty=4 education=5 element=1 emotion=1 equality=4 eternity=2 evil=1 evolution=0 experience=3 family=9 fate=7 form=2 god=2 good=0 government=12 habit=4 happiness=3 history=11 honor=42 hypothesis=0 idea=3 imagination=2 immortality=4 induction=0 infinity=0 judgement=2 justic=4 knowledge=2 labor=14 language=4 law=5 liberty=3 life=2 logic=0 love=2 man=0 many=1 mathematics=0 matter=0 mechanics=1 medicine=0 memory=5 metaphysics=2 mind=2 monarchy=17 nature=2 necessity=2 oligarchy=0 one=0 opinion=2 opposition=2 other=0 pain=1 particular=3 peace=8 philosophy=3 physics=0 pleasure=4 poetry=1 principle=3 progress=9 prophecy=2 prudence=9 punishment=6 quality=1 quanity=1 reasoning=1 relation=3 religion=18 revolution=6 rhetoric=1 same=1 science=3 sense=35 sign=0 sin=1 slavery=3 soul=2 space=2 state=2 symbol=1 temperance=7 theology=1 time=0 truth=2 tryanny=8 universal=0 vice=8 virtue=6 war=12 wealth=5 will=0 wisdom=2 world=3 coefficient=487 gibbon-history-5871: author=Gibbon title=History Of The Decline And Fall Of The Roman Empire (Volume 2) words=284218 words=284218 fog=16 kincaid=12 flesch=42 angel=1 animal=4 aristocracy=0 art=3 astronomy=0 beauty=1 being=67 cause=1 chance=0 change=0 citizen=5 constitution=2 contingency=0 convention=0 cosmology=0 courage=4 custom=2 death=5 definition=0 democracy=0 desire=1 despotism=4 dialectic=0 duty=4 education=5 element=0 emotion=0 equality=3 eternity=2 evil=1 evolution=1 experience=2 family=6 fate=4 form=1 god=3 good=0 government=8 habit=3 happiness=1 history=12 honor=34 hypothesis=1 idea=3 imagination=1 immortality=2 induction=0 infinity=0 judgement=2 justic=4 knowledge=2 labor=14 language=4 law=5 liberty=1 life=1 logic=0 love=1 man=0 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=3 metaphysics=6 mind=2 monarchy=4 nature=1 necessity=2 oligarchy=0 one=0 opinion=3 opposition=2 other=0 pain=1 particular=3 peace=5 philosophy=3 physics=0 pleasure=2 poetry=1 principle=4 progress=6 prophecy=2 prudence=9 punishment=6 quality=1 quanity=1 reasoning=1 relation=4 religion=16 revolution=3 rhetoric=3 same=1 science=1 sense=29 sign=1 sin=0 slavery=1 soul=1 space=3 state=1 symbol=2 temperance=6 theology=9 time=0 truth=2 tryanny=3 universal=0 vice=3 virtue=4 war=9 wealth=3 will=0 wisdom=3 world=2 coefficient=409 gibbon-history-5872: author=Gibbon title=History Of The Decline And Fall Of The Roman Empire (Volume 3) words=170608 words=170608 fog=23 kincaid=19 flesch=24 angel=1 animal=5 aristocracy=1 art=4 astronomy=0 beauty=2 being=58 cause=1 chance=1 change=0 citizen=9 constitution=2 contingency=0 convention=0 cosmology=0 courage=6 custom=3 death=5 definition=0 democracy=0 desire=1 despotism=3 dialectic=0 duty=4 education=6 element=0 emotion=1 equality=0 eternity=0 evil=1 evolution=0 experience=3 family=10 fate=4 form=1 god=2 good=0 government=9 habit=3 happiness=2 history=5 honor=38 hypothesis=0 idea=1 imagination=1 immortality=0 induction=0 infinity=0 judgement=2 justic=4 knowledge=2 labor=17 language=5 law=6 liberty=2 life=2 logic=0 love=1 man=0 many=0 mathematics=0 matter=0 mechanics=2 medicine=0 memory=3 metaphysics=0 mind=1 monarchy=10 nature=1 necessity=1 oligarchy=0 one=0 opinion=2 opposition=2 other=0 pain=1 particular=1 peace=10 philosophy=1 physics=0 pleasure=2 poetry=1 principle=2 progress=6 prophecy=2 prudence=9 punishment=8 quality=0 quanity=0 reasoning=1 relation=0 religion=14 revolution=8 rhetoric=2 same=0 science=2 sense=16 sign=0 sin=1 slavery=2 soul=1 space=4 state=2 symbol=2 temperance=7 theology=4 time=0 truth=1 tryanny=3 universal=0 vice=5 virtue=5 war=11 wealth=7 will=0 wisdom=1 world=2 coefficient=400 gibbon-history-5873: author=Gibbon title=History Of The Decline And Fall Of The Roman Empire (Volume 4) words=200574 words=200574 fog=22 kincaid=18 flesch=29 angel=1 animal=3 aristocracy=2 art=3 astronomy=1 beauty=2 being=62 cause=1 chance=0 change=0 citizen=11 constitution=2 contingency=0 convention=0 cosmology=0 courage=6 custom=2 death=5 definition=1 democracy=2 desire=1 despotism=7 dialectic=0 duty=4 education=6 element=1 emotion=0 equality=4 eternity=1 evil=1 evolution=0 experience=4 family=8 fate=3 form=1 god=1 good=0 government=8 habit=3 happiness=2 history=4 honor=34 hypothesis=0 idea=3 imagination=0 immortality=2 induction=0 infinity=0 judgement=2 justic=6 knowledge=1 labor=18 language=4 law=7 liberty=4 life=2 logic=0 love=1 man=0 many=0 mathematics=0 matter=0 mechanics=2 medicine=0 memory=3 metaphysics=6 mind=1 monarchy=9 nature=1 necessity=1 oligarchy=0 one=0 opinion=2 opposition=2 other=0 pain=1 particular=1 peace=8 philosophy=3 physics=0 pleasure=2 poetry=1 principle=3 progress=5 prophecy=1 prudence=10 punishment=7 quality=1 quanity=0 reasoning=1 relation=1 religion=11 revolution=5 rhetoric=2 same=1 science=3 sense=21 sign=1 sin=2 slavery=3 soul=1 space=4 state=2 symbol=1 temperance=5 theology=7 time=0 truth=1 tryanny=3 universal=0 vice=8 virtue=6 war=10 wealth=6 will=0 wisdom=3 world=1 coefficient=426 gibbon-history-5874: author=Gibbon title=History Of The Decline And Fall Of The Roman Empire (Volume 5) words=183970 words=183970 fog=21 kincaid=18 flesch=32 angel=6 animal=3 aristocracy=2 art=3 astronomy=2 beauty=2 being=56 cause=1 chance=0 change=0 citizen=4 constitution=2 contingency=0 convention=0 cosmology=0 courage=7 custom=1 death=4 definition=0 democracy=0 desire=1 despotism=6 dialectic=0 duty=3 education=3 element=0 emotion=0 equality=4 eternity=3 evil=1 evolution=3 experience=2 family=6 fate=3 form=1 god=5 good=0 government=6 habit=3 happiness=2 history=3 honor=26 hypothesis=0 idea=2 imagination=1 immortality=0 induction=0 infinity=0 judgement=2 justic=3 knowledge=2 labor=13 language=5 law=5 liberty=5 life=1 logic=1 love=1 man=0 many=0 mathematics=1 matter=0 mechanics=0 medicine=1 memory=3 metaphysics=6 mind=1 monarchy=16 nature=1 necessity=1 oligarchy=0 one=0 opinion=1 opposition=2 other=0 pain=1 particular=0 peace=7 philosophy=1 physics=1 pleasure=2 poetry=1 principle=2 progress=6 prophecy=2 prudence=7 punishment=5 quality=1 quanity=0 reasoning=1 relation=1 religion=26 revolution=7 rhetoric=1 same=1 science=4 sense=14 sign=1 sin=4 slavery=1 soul=1 space=2 state=1 symbol=2 temperance=3 theology=3 time=0 truth=1 tryanny=4 universal=0 vice=3 virtue=4 war=10 wealth=6 will=0 wisdom=1 world=2 coefficient=388 gibbon-history-5875: author=Gibbon title=History Of The Decline And Fall Of The Roman Empire (Volume 6) words=231223 words=231223 fog=16 kincaid=12 flesch=45 angel=2 animal=2 aristocracy=3 art=2 astronomy=0 beauty=2 being=63 cause=1 chance=0 change=0 citizen=4 constitution=1 contingency= convention=0 cosmology=0 courage=4 custom=1 death=4 definition=0 democracy=1 desire=1 despotism=8 dialectic=0 duty=3 education=4 element=0 emotion=0 equality=3 eternity=1 evil=1 evolution=0 experience=1 family=12 fate=3 form=1 god=1 good=0 government=6 habit=2 happiness=1 history=13 honor=26 hypothesis=0 idea=2 imagination=0 immortality=1 induction=0 infinity=0 judgement=1 justic=3 knowledge=2 labor=14 language=4 law=3 liberty=4 life=1 logic=0 love=1 man=0 many=0 mathematics=0 matter=0 mechanics=2 medicine=0 memory=2 metaphysics=1 mind=1 monarchy=8 nature=0 necessity=1 oligarchy=0 one=0 opinion=1 opposition=2 other=0 pain=1 particular=1 peace=6 philosophy=2 physics=0 pleasure=2 poetry=2 principle=1 progress=5 prophecy=2 prudence=4 punishment=3 quality=0 quanity=0 reasoning=0 relation=3 religion=11 revolution=6 rhetoric=1 same=0 science=3 sense=18 sign=1 sin=1 slavery=3 soul=1 space=2 state=2 symbol=2 temperance=3 theology=4 time=0 truth=1 tryanny=3 universal=0 vice=5 virtue=3 war=8 wealth=3 will=0 wisdom=1 world=1 coefficient=346 goethe-faust-1119: author=Goethe title=Faust words=39269 words=39269 fog=9 kincaid=7 flesch=69 angel=11 animal=0 aristocracy=0 art=5 astronomy=0 beauty=4 being=128 cause=0 chance=3 change=1 citizen=3 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=1 death=3 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=1 education=0 element=2 emotion=1 equality=0 eternity=0 evil=4 evolution=0 experience=1 family=0 fate=3 form=1 god=5 good=2 government=0 habit=0 happiness=0 history=0 honor=12 hypothesis=0 idea=1 imagination=1 immortality=0 induction=0 infinity=0 judgement=1 justic=0 knowledge=1 labor=8 language=5 law=2 liberty=1 life=2 logic=0 love=8 man=1 many=1 mathematics=0 matter=1 mechanics=0 medicine=2 memory=1 metaphysics=5 mind=1 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=4 particular=1 peace=2 philosophy=0 physics=1 pleasure=4 poetry=10 principle=0 progress=0 prophecy=0 prudence=1 punishment=0 quality=3 quanity=0 reasoning=0 relation=1 religion=1 revolution=0 rhetoric=0 same=0 science=2 sense=73 sign=3 sin=2 slavery=0 soul=6 space=6 state=1 symbol=0 temperance=0 theology=2 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=0 wisdom=1 world=3 coefficient=368 hamilton-federalist-2506: author=Hamilton title=Federalist Papers words=194857 words=194857 fog=21 kincaid=17 flesch=32 angel=0 animal=1 aristocracy=4 art=1 astronomy=0 beauty=0 being=441 cause=2 chance=1 change=1 citizen=19 constitution=69 contingency= convention=33 cosmology=0 courage=0 custom=1 death=0 definition=3 democracy=4 desire=1 despotism=5 dialectic=0 duty=8 education=0 element=0 emotion=1 equality=6 eternity=0 evil=2 evolution=0 experience=10 family=2 fate=1 form=2 god=0 good=1 government=84 habit=1 happiness=3 history=3 honor=5 hypothesis=0 idea=5 imagination=3 immortality=0 induction=0 infinity=0 judgement=4 justic=4 knowledge=2 labor=5 language=1 law=11 liberty=21 life=0 logic=1 love=0 man=1 many=0 mathematics=1 matter=1 mechanics=1 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=5 nature=2 necessity=10 oligarchy=1 one=0 opinion=4 opposition=5 other=0 pain=0 particular=13 peace=7 philosophy=0 physics=0 pleasure=1 poetry=0 principle=14 progress=5 prophecy=0 prudence=6 punishment=5 quality=2 quanity=2 reasoning=2 relation=7 religion=1 revolution=6 rhetoric=0 same=1 science=1 sense=46 sign=0 sin=0 slavery=0 soul=0 space=0 state=18 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=5 universal=0 vice=2 virtue=1 war=8 wealth=3 will=1 wisdom=2 world=1 coefficient=966 harvey--4684: author=Harvey title= On The Motion Of The Heart And Blood In Animals words=30854 words=30854 fog=24 kincaid=21 flesch=31 angel=0 animal=60 aristocracy=0 art=0 astronomy=0 beauty=0 being=234 cause=2 chance=0 change=0 citizen=0 constitution=8 contingency=0 convention=0 cosmology=0 courage=1 custom=1 death=2 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=1 education=0 element=2 emotion=0 equality=2 eternity=0 evil=0 evolution=0 experience=10 family=1 fate=0 form=2 god=0 good=0 government=0 habit=0 happiness=0 history=3 honor=3 hypothesis=0 idea=1 imagination=0 immortality=0 induction=2 infinity=0 judgement=0 justic=0 knowledge=1 labor=0 language=0 law=0 liberty=2 life=2 logic=0 love=0 man=0 many=1 mathematics=0 matter=2 mechanics=0 medicine=4 memory=1 metaphysics=0 mind=1 monarchy=0 nature=2 necessity=5 oligarchy=0 one=0 opinion=4 opposition=4 other=0 pain=4 particular=6 peace=0 philosophy=1 physics=0 pleasure=1 poetry=0 principle=3 progress=1 prophecy=0 prudence=0 punishment=0 quality=0 quanity=44 reasoning=2 relation=2 religion=0 revolution=0 rhetoric=0 same=2 science=1 sense=34 sign=2 sin=0 slavery=0 soul=0 space=5 state=2 symbol=0 temperance=0 theology=0 time=0 truth=4 tryanny=0 universal=0 vice=1 virtue=1 war=0 wealth=0 will=1 wisdom=0 world=1 coefficient=482 harvey-on-4652: author=Harvey title=On The Motion Of The Heart And Blood In Animals words=30854 words=30854 fog=24 kincaid=21 flesch=31 angel=0 animal=60 aristocracy=0 art=0 astronomy=0 beauty=0 being=234 cause=2 chance=0 change=0 citizen=0 constitution=8 contingency=0 convention=0 cosmology=0 courage=1 custom=1 death=2 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=1 education=0 element=2 emotion=0 equality=2 eternity=0 evil=0 evolution=0 experience=10 family=1 fate=0 form=2 god=0 good=0 government=0 habit=0 happiness=0 history=3 honor=3 hypothesis=0 idea=1 imagination=0 immortality=0 induction=2 infinity=0 judgement=0 justic=0 knowledge=1 labor=0 language=0 law=0 liberty=2 life=2 logic=0 love=0 man=0 many=1 mathematics=0 matter=2 mechanics=0 medicine=4 memory=1 metaphysics=0 mind=1 monarchy=0 nature=2 necessity=5 oligarchy=0 one=0 opinion=4 opposition=4 other=0 pain=4 particular=6 peace=0 philosophy=1 physics=0 pleasure=1 poetry=0 principle=3 progress=1 prophecy=0 prudence=0 punishment=0 quality=0 quanity=44 reasoning=2 relation=2 religion=0 revolution=0 rhetoric=0 same=2 science=1 sense=34 sign=2 sin=0 slavery=0 soul=0 space=5 state=2 symbol=0 temperance=0 theology=0 time=0 truth=4 tryanny=0 universal=0 vice=1 virtue=1 war=0 wealth=0 will=1 wisdom=0 world=1 coefficient=482 hegel-philosophy-2555: author=Hegel title=Philosophy Of History words=188163 words=188163 fog=17 kincaid=14 flesch=39 angel=0 animal=3 aristocracy=8 art=3 astronomy=1 beauty=4 being=141 cause=0 chance=1 change=1 citizen=7 constitution=27 contingency= convention=3 cosmology=0 courage=2 custom=2 death=3 definition=10 democracy=7 desire=2 despotism=8 dialectic=1 duty=4 education=3 element=21 emotion=5 equality=3 eternity=5 evil=3 evolution=1 experience=1 family=10 fate=4 form=5 god=6 good=1 government=12 habit=1 happiness=1 history=87 honor=14 hypothesis=1 idea=22 imagination=4 immortality=3 induction=0 infinity=3 judgement=1 justic=2 knowledge=3 labor=7 language=3 law=7 liberty=5 life=3 logic=2 love=1 man=1 many=0 mathematics=0 matter=1 mechanics=3 medicine=1 memory=1 metaphysics=8 mind=1 monarchy=8 nature=4 necessity=5 oligarchy=1 one=0 opinion=1 opposition=5 other=0 pain=1 particular=11 peace=2 philosophy=61 physics=5 pleasure=1 poetry=3 principle=30 progress=3 prophecy=0 prudence=0 punishment=3 quality=2 quanity=0 reasoning=1 relation=15 religion=38 revolution=5 rhetoric=1 same=1 science=8 sense=36 sign=1 sin=1 slavery=8 soul=5 space=2 state=7 symbol=7 temperance=0 theology=4 time=0 truth=3 tryanny=2 universal=0 vice=1 virtue=4 war=7 wealth=2 will=0 wisdom=2 world=7 coefficient=818 hegel-philosophy-2311: author=Hegel title=Philosophy Of Right words=124230 words=124230 fog=15 kincaid=11 flesch=47 angel=0 animal=5 aristocracy=5 art=1 astronomy=0 beauty=1 being=232 cause=1 chance=2 change=1 citizen=5 constitution=27 contingency= convention=0 cosmology=0 courage=0 custom=3 death=1 definition=27 democracy=6 desire=2 despotism=5 dialectic=5 duty=15 education=11 element=36 emotion=0 equality=2 eternity=0 evil=10 evolution=1 experience=1 family=28 fate=1 form=6 god=1 good=4 government=6 habit=1 happiness=2 history=7 honor=0 hypothesis=0 idea=32 imagination=4 immortality=0 induction=0 infinity=2 judgement=5 justic=5 knowledge=6 labor=0 language=0 law=16 liberty=5 life=3 logic=9 love=2 man=1 many=0 mathematics=1 matter=2 mechanics=0 medicine=0 memory=0 metaphysics=3 mind=1 monarchy=8 nature=5 necessity=10 oligarchy=0 one=0 opinion=7 opposition=13 other=0 pain=0 particular=35 peace=2 philosophy=37 physics=0 pleasure=1 poetry=0 principle=24 progress=2 prophecy=0 prudence=0 punishment=11 quality=4 quanity=2 reasoning=3 relation=21 religion=16 revolution=2 rhetoric=1 same=1 science=15 sense=57 sign=2 sin=0 slavery=6 soul=2 space=1 state=11 symbol=4 temperance=0 theology=0 time=0 truth=5 tryanny=1 universal=0 vice=2 virtue=4 war=3 wealth=6 will=1 wisdom=0 world=3 coefficient=886 herodotus-history-2537: author=Herodotus title=History (Volume 1) words=162234 words=162234 fog=19 kincaid=16 flesch=47 angel=0 animal=5 aristocracy=0 art=2 astronomy=0 beauty=1 being=159 cause=2 chance=2 change=1 citizen=3 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=9 death=3 definition=0 democracy=0 desire=5 despotism=8 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=3 eternity=0 evil=4 evolution=0 experience=1 family=2 fate=2 form=1 god=6 good=1 government=2 habit=0 happiness=1 history=4 honor=0 hypothesis=0 idea=0 imagination=0 immortality=1 induction=0 infinity=0 judgement=2 justic=0 knowledge=2 labor=0 language=2 law=2 liberty=0 life=1 logic=0 love=0 man=2 many=1 mathematics=0 matter=2 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=1 monarchy=2 nature=0 necessity=1 oligarchy=1 one=0 opinion=4 opposition=3 other=0 pain=0 particular=1 peace=1 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=1 prudence=0 punishment=2 quality=0 quanity=4 reasoning=1 relation=0 religion=1 revolution=0 rhetoric=0 same=1 science=0 sense=8 sign=1 sin=0 slavery=4 soul=0 space=2 state=1 symbol=1 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=0 virtue=0 war=4 wealth=6 will=0 wisdom=1 world=0 coefficient=299 herodotus-history-2538: author=Herodotus title=History (Volume 2) words=148223 words=148223 fog=20 kincaid=17 flesch=41 angel=0 animal=0 aristocracy=0 art=1 astronomy=0 beauty=1 being=183 cause=2 chance=5 change=1 citizen=5 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=3 death=3 definition=0 democracy=0 desire=6 despotism=25 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=2 eternity=0 evil=5 evolution=0 experience=1 family=3 fate=2 form=0 god=3 good=2 government=2 habit=0 happiness=0 history=3 honor=0 hypothesis=0 idea=1 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=0 knowledge=1 labor=0 language=0 law=1 liberty=0 life=1 logic=0 love=0 man=2 many=1 mathematics=0 matter=2 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=1 oligarchy=1 one=0 opinion=5 opposition=5 other=0 pain=0 particular=0 peace=1 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=1 quality=0 quanity=2 reasoning=1 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=9 sign=1 sin=0 slavery=7 soul=0 space=3 state=1 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=0 virtue=0 war=8 wealth=3 will=0 wisdom=0 world=0 coefficient=324 hippocrates-airs,-3242: author=Hippocrates title=Airs, Waters, And Places words=9316 words=9316 fog=22 kincaid=19 flesch=37 angel=0 animal=0 aristocracy=0 art=2 astronomy=6 beauty=0 being=284 cause=4 chance=0 change=11 citizen=0 constitution=37 contingency=0 convention=0 cosmology=0 courage=15 custom=6 death=1 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=5 equality=3 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=4 god=3 good=1 government=5 habit=2 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=15 language=0 law=1 liberty=0 life=1 logic=0 love=0 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=12 memory=0 metaphysics=0 mind=2 monarchy=6 nature=6 necessity=3 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=3 particular=9 peace=0 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=4 quality=5 quanity=10 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=0 sign=0 sin=0 slavery=0 soul=0 space=0 state=3 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=5 will=1 wisdom=0 world=0 coefficient=481 hippocrates-ancient-2690: author=Hippocrates title=Ancient Medicine words=7352 words=7352 fog=21 kincaid=18 flesch=41 angel=0 animal=0 aristocracy=0 art=10 astronomy=0 beauty=0 being=232 cause=4 chance=4 change=6 citizen=0 constitution=25 contingency=0 convention=0 cosmology=0 courage=0 custom=5 death=3 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=12 family=0 fate=0 form=3 god=1 good=2 government=0 habit=2 happiness=0 history=3 honor=6 hypothesis=39 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=2 labor=0 language=0 law=0 liberty=0 life=0 logic=0 love=0 man=6 many=2 mathematics=0 matter=1 mechanics=0 medicine=70 memory=0 metaphysics=0 mind=1 monarchy=0 nature=4 necessity=10 oligarchy=0 one=1 opinion=1 opposition=0 other=1 pain=20 particular=0 peace=0 philosophy=3 physics=0 pleasure=1 poetry=0 principle=9 progress=0 prophecy=0 prudence=0 punishment=3 quality=21 quanity=41 reasoning=2 relation=3 religion=0 revolution=0 rhetoric=0 same=2 science=0 sense=0 sign=0 sin=0 slavery=0 soul=0 space=0 state=3 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=1 wisdom=0 world=0 coefficient=567 hippocrates-aphorisms-2104: author=Hippocrates title=Aphorisms words=10095 words=10095 fog=11 kincaid=8 flesch=59 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=291 cause=2 chance=0 change=3 citizen=0 constitution=11 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=3 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=1 family=0 fate=0 form=3 god=0 good=5 government=0 habit=3 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=0 knowledge=0 labor=20 language=0 law=0 liberty=0 life=0 logic=0 love=0 man=0 many=0 mathematics=0 matter=0 mechanics=0 medicine=19 memory=0 metaphysics=0 mind=0 monarchy=0 nature=2 necessity=1 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=44 particular=7 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=8 reasoning=1 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=47 sign=10 sin=0 slavery=0 soul=0 space=0 state=5 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=0 wisdom=0 world=0 coefficient=489 hippocrates-book-2973: author=Hippocrates title=Book Of Prognostics words=6574 words=6574 fog=21 kincaid=18 flesch=39 angel=0 animal=0 aristocracy=0 art=1 astronomy=0 beauty=0 being=527 cause=1 chance=0 change=2 citizen=0 constitution=9 contingency=0 convention=0 cosmology=0 courage=0 custom=3 death=9 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=4 god=0 good=3 government=0 habit=2 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=5 justic=0 knowledge=1 labor=0 language=0 law=0 liberty=0 life=1 logic=0 love=0 man=1 many=0 mathematics=0 matter=4 mechanics=0 medicine=8 memory=0 metaphysics=0 mind=0 monarchy=0 nature=0 necessity=0 oligarchy=0 one=1 opinion=0 opposition=0 other=0 pain=74 particular=9 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=13 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=0 sign=0 sin=0 slavery=0 soul=0 space=7 state=2 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=1 wisdom=0 world=0 coefficient=691 hippocrates-instruments-3536: author=Hippocrates title=Instruments Of Reduction words=8316 words=8316 fog=18 kincaid=14 flesch=46 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=464 cause=1 chance=7 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=3 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=2 family=0 fate=0 form=4 god=0 good=1 government=0 habit=4 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=0 law=0 liberty=0 life=0 logic=0 love=0 man=0 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=2 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=8 particular=0 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=2 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=2 science=0 sense=0 sign=0 sin=0 slavery=0 soul=0 space=11 state=4 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=3 virtue=0 war=0 wealth=0 will=0 wisdom=0 world=0 coefficient=519 hippocrates-law-1446: author=Hippocrates title=Law words=569 words=569 fog=16 kincaid=12 flesch=48 angel=0 animal=0 aristocracy=0 art=23 astronomy=0 beauty=0 being=181 cause=0 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=6 god=0 good=0 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=25 justic=0 knowledge=41 labor=145 language=0 law=20 liberty=0 life=0 logic=0 love=16 man=0 many=1 mathematics=0 matter=0 mechanics=0 medicine=215 memory=0 metaphysics=0 mind=0 monarchy=0 nature=13 necessity=0 oligarchy=0 one=0 opinion=27 opposition=0 other=0 pain=0 particular=0 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=33 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=32 sense=0 sign=0 sin=0 slavery=0 soul=0 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=0 wisdom=0 world=5 coefficient=783 hippocrates-oath-1550: author=Hippocrates title=Oath words=627 words=627 fog=12 kincaid=9 flesch=57 angel=0 animal=0 aristocracy=0 art=29 astronomy=0 beauty=0 being=0 cause=0 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=2 god=0 good=0 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=38 justic=0 knowledge=10 labor=0 language=0 law=8 liberty=0 life=8 logic=0 love=0 man=0 many=0 mathematics=0 matter=0 mechanics=0 medicine=66 memory=0 metaphysics=0 mind=0 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=0 particular=0 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=0 sign=0 sin=0 slavery=0 soul=0 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=3 wisdom=0 world=4 coefficient=169 hippocrates-of-2603: author=Hippocrates title=Of The Epidemics words=16625 words=16625 fog=15 kincaid=12 flesch=47 angel=0 animal=0 aristocracy=0 art=1 astronomy=0 beauty=0 being=59 cause=2 chance=0 change=1 citizen=0 constitution=17 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=7 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=3 god=0 good=2 government=0 habit=2 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=2 justic=0 knowledge=0 labor=21 language=0 law=0 liberty=0 life=0 logic=0 love=0 man=0 many=2 mathematics=0 matter=3 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=68 particular=3 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=1 quanity=17 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=28 sign=1 sin=0 slavery=0 soul=0 space=0 state=5 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=0 wisdom=0 world=0 coefficient=248 hippocrates-on-2204: author=Hippocrates title=On Fistulae words=2380 words=2380 fog=17 kincaid=14 flesch=50 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=414 cause=1 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=6 god=0 good=1 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=0 law=0 liberty=0 life=0 logic=0 love=0 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=31 memory=0 metaphysics=0 mind=0 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=15 particular=0 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=2 science=0 sense=0 sign=0 sin=0 slavery=0 soul=0 space=0 state=3 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=1 wisdom=0 world=1 coefficient=479 hippocrates-on-2318: author=Hippocrates title=On Fractures words=15900 words=15900 fog=21 kincaid=18 flesch=42 angel=0 animal=0 aristocracy=0 art=1 astronomy=0 beauty=0 being=677 cause=1 chance=0 change=0 citizen=0 constitution=5 contingency=0 convention=0 cosmology=0 courage=0 custom=1 death=1 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=1 family=0 fate=0 form=2 god=0 good=1 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=3 justic=0 knowledge=1 labor=0 language=0 law=0 liberty=0 life=0 logic=0 love=0 man=0 many=1 mathematics=0 matter=1 mechanics=0 medicine=12 memory=0 metaphysics=0 mind=1 monarchy=0 nature=3 necessity=4 oligarchy=0 one=0 opinion=1 opposition=0 other=1 pain=12 particular=11 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=2 progress=2 prophecy=0 prudence=0 punishment=0 quality=1 quanity=8 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=3 science=0 sense=0 sign=3 sin=0 slavery=0 soul=0 space=2 state=2 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=2 virtue=0 war=0 wealth=0 will=1 wisdom=0 world=0 coefficient=767 hippocrates-on-2531: author=Hippocrates title=On Hemorrhoids words=1446 words=1446 fog=14 kincaid=11 flesch=58 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=564 cause=0 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=5 god=0 good=0 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=5 labor=0 language=0 law=0 liberty=0 life=0 logic=0 love=0 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=86 memory=0 metaphysics=0 mind=0 monarchy=0 nature=2 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=0 particular=0 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=19 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=2 science=0 sense=0 sign=0 sin=0 slavery=0 soul=0 space=0 state=1 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=2 wisdom=0 world=2 coefficient=689 hippocrates-on-3152: author=Hippocrates title=On Injuries Of The Head words=6278 words=6278 fog=22 kincaid=19 flesch=39 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=372 cause=0 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=1 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=4 god=0 good=0 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=0 law=0 liberty=0 life=1 logic=0 love=0 man=1 many=1 mathematics=0 matter=1 mechanics=0 medicine=21 memory=0 metaphysics=0 mind=0 monarchy=0 nature=4 necessity=2 oligarchy=0 one=0 opinion=3 opposition=0 other=0 pain=3 particular=0 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=2 quanity=5 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=0 sign=0 sin=0 slavery=0 soul=0 space=4 state=2 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=1 wisdom=0 world=1 coefficient=431 hippocrates-on-3680: author=Hippocrates title=On Regimen In Acute Diseases words=16187 words=16187 fog=25 kincaid=21 flesch=29 angel=0 animal=1 aristocracy=0 art=1 astronomy=0 beauty=0 being=498 cause=1 chance=0 change=6 citizen=0 constitution=7 contingency=0 convention=0 cosmology=0 courage=0 custom=4 death=3 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=4 family=0 fate=0 form=2 god=0 good=2 government=0 habit=5 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=3 justic=0 knowledge=1 labor=24 language=0 law=0 liberty=0 life=1 logic=0 love=0 man=0 many=0 mathematics=0 matter=2 mechanics=0 medicine=33 memory=0 metaphysics=0 mind=0 monarchy=0 nature=2 necessity=0 oligarchy=0 one=0 opinion=3 opposition=0 other=0 pain=41 particular=0 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=1 progress=3 prophecy=0 prudence=0 punishment=0 quality=6 quanity=37 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=1 sense=13 sign=0 sin=0 slavery=0 soul=0 space=0 state=4 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=1 wisdom=0 world=0 coefficient=711 hippocrates-on-1997: author=Hippocrates title=On Ulcers words=4844 words=4844 fog=16 kincaid=14 flesch=51 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=556 cause=1 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=3 god=0 good=0 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=0 law=0 liberty=0 life=0 logic=0 love=0 man=0 many=0 mathematics=0 matter=3 mechanics=0 medicine=119 memory=0 metaphysics=0 mind=0 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=0 particular=0 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=3 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=23 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=2 science=0 sense=0 sign=0 sin=0 slavery=0 soul=0 space=5 state=3 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=2 war=0 wealth=0 will=0 wisdom=0 world=1 coefficient=722 hippocrates-on-3074: author=Hippocrates title=On The Articulations words=28492 words=28492 fog=24 kincaid=20 flesch=34 angel=0 animal=3 aristocracy=0 art=1 astronomy=0 beauty=0 being=604 cause=1 chance=1 change=0 citizen=0 constitution=3 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=1 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=3 family=0 fate=0 form=3 god=0 good=1 government=0 habit=2 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=3 justic=0 knowledge=1 labor=2 language=0 law=0 liberty=0 life=0 logic=0 love=0 man=0 many=1 mathematics=0 matter=2 mechanics=0 medicine=7 memory=0 metaphysics=0 mind=0 monarchy=0 nature=4 necessity=3 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=13 particular=6 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=3 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=0 sign=0 sin=0 slavery=0 soul=0 space=8 state=3 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=1 wisdom=0 world=0 coefficient=682 hippocrates-on-3024: author=Hippocrates title=On The Sacred Disease words=6268 words=6268 fog=17 kincaid=13 flesch=54 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=319 cause=9 chance=0 change=7 citizen=0 constitution=3 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=1 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=7 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=1 god=11 good=1 government=0 habit=3 happiness=0 history=0 honor=7 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=2 justic=0 knowledge=7 labor=0 language=0 law=0 liberty=0 life=1 logic=0 love=0 man=2 many=1 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=4 necessity=5 oligarchy=0 one=0 opinion=6 opposition=0 other=1 pain=5 particular=7 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=10 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=104 sign=0 sin=0 slavery=0 soul=0 space=0 state=2 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=1 wisdom=2 world=1 coefficient=531 hippocrates-on-2449: author=Hippocrates title=On The Surgery words=3828 words=3828 fog=18 kincaid=15 flesch=50 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=739 cause=0 chance=0 change=2 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=3 god=0 good=0 government=0 habit=17 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=4 justic=0 knowledge=0 labor=0 language=0 law=0 liberty=0 life=0 logic=0 love=0 man=0 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=2 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=10 particular=0 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=31 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=0 sign=0 sin=0 slavery=0 soul=0 space=7 state=4 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=7 virtue=0 war=0 wealth=0 will=0 wisdom=0 world=1 coefficient=829 hobbes-leviathan-1519: author=Hobbes title=Leviathan words=214908 words=214908 fog=19 kincaid=15 flesch=45 angel=15 animal=1 aristocracy=8 art=1 astronomy=1 beauty=0 being=262 cause=3 chance=0 change=1 citizen=0 constitution=6 contingency=0 convention=0 cosmology=0 courage=2 custom=4 death=4 definition=5 democracy=6 desire=3 despotism=0 dialectic=0 duty=3 education=2 element=0 emotion=0 equality=3 eternity=4 evil=7 evolution=0 experience=3 family=4 fate=0 form=1 god=28 good=2 government=19 habit=1 happiness=0 history=4 honor=7 hypothesis=0 idea=1 imagination=6 immortality=2 induction=0 infinity=0 judgement=4 justic=6 knowledge=3 labor=0 language=2 law=32 liberty=17 life=2 logic=0 love=1 man=4 many=1 mathematics=0 matter=1 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=1 monarchy=15 nature=3 necessity=2 oligarchy=1 one=1 opinion=6 opposition=0 other=0 pain=1 particular=6 peace=7 philosophy=6 physics=0 pleasure=2 poetry=0 principle=2 progress=0 prophecy=12 prudence=5 punishment=20 quality=3 quanity=3 reasoning=3 relation=1 religion=18 revolution=0 rhetoric=0 same=2 science=6 sense=98 sign=11 sin=9 slavery=0 soul=3 space=1 state=1 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=1 universal=0 vice=2 virtue=0 war=3 wealth=1 will=0 wisdom=2 world=3 coefficient=757 homer-iliad-990: author=Homer title=Iliad words=153901 words=153901 fog=15 kincaid=12 flesch=61 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=1 being=100 cause=0 chance=1 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=4 custom=0 death=4 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=2 evolution=0 experience=0 family=0 fate=5 form=0 god=10 good=2 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=0 law=0 liberty=0 life=1 logic=0 love=2 man=2 many=1 mathematics=0 matter=1 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=2 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=2 particular=0 peace=2 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=1 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=3 sign=2 sin=2 slavery=0 soul=2 space=3 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=4 wealth=3 will=1 wisdom=0 world=0 coefficient=165 homer-odyssey-1259: author=Homer title=Odyssey words=123480 words=123480 fog=13 kincaid=11 flesch=62 angel=0 animal=0 aristocracy=0 art=3 astronomy=0 beauty=2 being=44 cause=1 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=0 death=5 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=1 equality=0 eternity=6 evil=0 evolution=0 experience=1 family=0 fate=29 form=2 god=10 good=1 government=0 habit=1 happiness=3 history=2 honor=0 hypothesis=1 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=0 justic=1 knowledge=1 labor=0 language=1 law=1 liberty=0 life=1 logic=0 love=5 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=3 monarchy=0 nature=0 necessity=1 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=2 particular=1 peace=4 philosophy=0 physics=0 pleasure=1 poetry=3 principle=0 progress=0 prophecy=0 prudence=2 punishment=1 quality=0 quanity=0 reasoning=0 relation=3 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=20 sign=2 sin=0 slavery=0 soul=10 space=4 state=2 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=1 virtue=2 war=5 wealth=3 will=0 wisdom=3 world=0 coefficient=205 hume-enquiry-4145: author=Hume title=Enquiry Concerning Human Understanding words=58854 words=58854 fog=19 kincaid=15 flesch=38 angel=1 animal=10 aristocracy=0 art=1 astronomy=2 beauty=1 being=277 cause=9 chance=4 change=1 citizen=0 constitution=1 contingency= convention=0 cosmology=0 courage=0 custom=8 death=1 definition=12 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=3 element=1 emotion=3 equality=4 eternity=0 evil=2 evolution=0 experience=46 family=1 fate=1 form=2 god=2 good=1 government=5 habit=2 happiness=2 history=6 honor=1 hypothesis=7 idea=69 imagination=13 immortality=0 induction=0 infinity=0 judgement=0 justic=2 knowledge=5 labor=0 language=1 law=4 liberty=13 life=2 logic=1 love=1 man=1 many=0 mathematics=7 matter=4 mechanics=0 medicine=0 memory=6 metaphysics=33 mind=7 monarchy=0 nature=7 necessity=14 oligarchy=0 one=0 opinion=5 opposition=6 other=0 pain=2 particular=16 peace=1 philosophy=31 physics=3 pleasure=2 poetry=1 principle=29 progress=3 prophecy=4 prudence=1 punishment=4 quality=16 quanity=8 reasoning=9 relation=11 religion=16 revolution=0 rhetoric=1 same=1 science=17 sense=163 sign=0 sin=1 slavery=0 soul=2 space=3 state=1 symbol=0 temperance=0 theology=2 time=0 truth=2 tryanny=1 universal=0 vice=5 virtue=2 war=0 wealth=0 will=1 wisdom=2 world=2 coefficient=982 huygens-treatise-2329: author=Huygens title=Treatise On Light words=39164 words=39164 fog=18 kincaid=14 flesch=48 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=372 cause=3 chance=0 change=1 citizen=0 constitution=6 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=2 democracy=0 desire=2 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=27 eternity=0 evil=0 evolution=19 experience=12 family=0 fate=0 form=3 god=0 good=0 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=13 idea=0 imagination=0 immortality=0 induction=0 infinity=1 judgement=0 justic=0 knowledge=1 labor=0 language=1 law=3 liberty=0 life=0 logic=0 love=0 man=0 many=0 mathematics=1 matter=6 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=1 necessity=1 oligarchy=0 one=1 opinion=1 opposition=6 other=0 pain=0 particular=6 peace=0 philosophy=2 physics=3 pleasure=0 poetry=0 principle=5 progress=10 prophecy=0 prudence=0 punishment=0 quality=0 quanity=11 reasoning=1 relation=3 religion=0 revolution=8 rhetoric=0 same=3 science=2 sense=16 sign=0 sin=0 slavery=0 soul=0 space=18 state=2 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=2 wisdom=0 world=0 coefficient=576 james-principles-2863: author=James title=Principles Of Psychology words=286966 words=286966 fog=15 kincaid=12 flesch=49 angel=0 animal=8 aristocracy=0 art=0 astronomy=0 beauty=1 being=201 cause=1 chance=1 change=2 citizen=0 constitution=4 contingency=0 convention=0 cosmology=0 courage=0 custom=1 death=0 definition=9 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=5 element=6 emotion=47 equality=2 eternity=2 evil=0 evolution=7 experience=23 family=1 fate=0 form=2 god=0 good=1 government=0 habit=7 happiness=1 history=3 honor=0 hypothesis=3 idea=26 imagination=10 immortality=0 induction=1 infinity=1 judgement=4 justic=1 knowledge=3 labor=0 language=2 law=3 liberty=0 life=1 logic=10 love=1 man=1 many=1 mathematics=3 matter=1 mechanics=6 medicine=0 memory=5 metaphysics=7 mind=5 monarchy=0 nature=2 necessity=1 oligarchy=0 one=0 opinion=1 opposition=3 other=0 pain=4 particular=5 peace=0 philosophy=3 physics=4 pleasure=4 poetry=1 principle=6 progress=1 prophecy=0 prudence=0 punishment=0 quality=8 quanity=1 reasoning=2 relation=14 religion=1 revolution=0 rhetoric=0 same=1 science=5 sense=108 sign=8 sin=0 slavery=0 soul=1 space=29 state=2 symbol=3 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=0 virtue=1 war=0 wealth=0 will=1 wisdom=0 world=3 coefficient=657 kant-critique-2412: author=Kant title=Critique Of Judgement words=76084 words=76084 fog=22 kincaid=18 flesch=28 angel=0 animal=5 aristocracy=0 art=15 astronomy=0 beauty=50 being=279 cause=1 chance=1 change=1 citizen=0 constitution=10 contingency= convention=0 cosmology=0 courage=1 custom=0 death=0 definition=28 democracy=0 desire=3 despotism=0 dialectic=5 duty=1 education=0 element=3 emotion=11 equality=1 eternity=0 evil=1 evolution=0 experience=12 family=1 fate=1 form=6 god=0 good=2 government=0 habit=2 happiness=1 history=1 honor=0 hypothesis=1 idea=48 imagination=33 immortality=0 induction=0 infinity=3 judgement=0 justic=1 knowledge=7 labor=0 language=3 law=15 liberty=0 life=0 logic=24 love=0 man=1 many=0 mathematics=12 matter=3 mechanics=0 medicine=0 memory=0 metaphysics=8 mind=5 monarchy=0 nature=10 necessity=7 oligarchy=0 one=1 opinion=1 opposition=2 other=0 pain=2 particular=7 peace=0 philosophy=11 physics=0 pleasure=17 poetry=5 principle=43 progress=4 prophecy=0 prudence=1 punishment=0 quality=6 quanity=5 reasoning=0 relation=7 religion=3 revolution=0 rhetoric=4 same=1 science=9 sense=201 sign=0 sin=0 slavery=0 soul=3 space=4 state=1 symbol=9 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=2 war=0 wealth=3 will=0 wisdom=0 world=1 coefficient=977 kant-critique-3044: author=Kant title=Critique Of Practical Reason words=64932 words=64932 fog=26 kincaid=23 flesch=19 angel=0 animal=2 aristocracy=0 art=0 astronomy=0 beauty=1 being=338 cause=3 chance=1 change=1 citizen=0 constitution=9 contingency=0 convention=0 cosmology=0 courage=0 custom=1 death=0 definition=11 democracy=0 desire=7 despotism=0 dialectic=7 duty=23 education=2 element=6 emotion=0 equality=1 eternity=1 evil=6 evolution=0 experience=14 family=0 fate=0 form=2 god=5 good=3 government=0 habit=2 happiness=21 history=1 honor=1 hypothesis=6 idea=26 imagination=4 immortality=8 induction=0 infinity=2 judgement=0 justic=1 knowledge=13 labor=0 language=1 law=55 liberty=0 life=2 logic=4 love=2 man=1 many=0 mathematics=12 matter=2 mechanics=15 medicine=0 memory=0 metaphysics=23 mind=2 monarchy=0 nature=4 necessity=14 oligarchy=0 one=0 opinion=1 opposition=2 other=0 pain=5 particular=1 peace=0 philosophy=9 physics=22 pleasure=9 poetry=0 principle=73 progress=7 prophecy=0 prudence=5 punishment=5 quality=2 quanity=0 reasoning=16 relation=10 religion=3 revolution=0 rhetoric=0 same=1 science=9 sense=166 sign=0 sin=0 slavery=0 soul=2 space=5 state=1 symbol=1 temperance=0 theology=7 time=0 truth=1 tryanny=0 universal=0 vice=1 virtue=7 war=0 wealth=0 will=1 wisdom=4 world=7 coefficient=1049 kant-critique-2541: author=Kant title=Critique Of Pure Reason words=208947 words=208947 fog=23 kincaid=19 flesch=25 angel=0 animal=1 aristocracy=0 art=0 astronomy=1 beauty=0 being=302 cause=4 chance=0 change=2 citizen=0 constitution=15 contingency= convention=0 cosmology= courage=0 custom=0 death=0 definition=9 democracy=0 desire=1 despotism=1 dialectic=16 duty=2 education=0 element=7 emotion=0 equality=2 eternity=2 evil=0 evolution=0 experience=59 family=0 fate=1 form=4 god=1 good=0 government=1 habit=1 happiness=2 history=1 honor=0 hypothesis=13 idea=42 imagination=5 immortality=2 induction=1 infinity=9 judgement=0 justic=1 knowledge=9 labor=0 language=1 law=10 liberty=2 life=0 logic=41 love=0 man=0 many=0 mathematics=27 matter=1 mechanics=2 medicine=0 memory=0 metaphysics=61 mind=2 monarchy=0 nature=5 necessity=12 oligarchy=0 one=0 opinion=2 opposition=7 other=0 pain=0 particular=5 peace=0 philosophy=14 physics=4 pleasure=1 poetry=0 principle=44 progress=7 prophecy=0 prudence=0 punishment=0 quality=2 quanity=24 reasoning=11 relation=32 religion=2 revolution=1 rhetoric=0 same=1 science=20 sense=164 sign=0 sin=0 slavery=0 soul=3 space=45 state=2 symbol=1 temperance=0 theology=10 time=0 truth=3 tryanny=0 universal=0 vice=0 virtue=1 war=0 wealth=0 will=0 wisdom=1 world=5 coefficient=1093 kant-fundamental-5094: author=Kant title=Fundamental Principles Of The Metaphysic Of Morals words=33068 words=33068 fog=23 kincaid=19 flesch=28 angel=0 animal=0 aristocracy=0 art=1 astronomy=0 beauty=0 being=404 cause=2 chance=0 change=0 citizen=0 constitution=14 contingency=0 convention=0 cosmology=0 courage=1 custom=0 death=0 definition=11 democracy=0 desire=4 despotism=0 dialectic=3 duty=41 education=0 element=3 emotion=0 equality=0 eternity=0 evil=2 evolution=0 experience=18 family=0 fate=1 form=2 god=1 good=4 government=0 habit=1 happiness=17 history=1 honor=1 hypothesis=11 idea=38 imagination=2 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=8 labor=0 language=0 law=52 liberty=1 life=1 logic=10 love=1 man=1 many=0 mathematics=2 matter=1 mechanics=0 medicine=0 memory=0 metaphysics=121 mind=1 monarchy=0 nature=6 necessity=20 oligarchy=0 one=0 opinion=0 opposition=2 other=0 pain=1 particular=5 peace=0 philosophy=31 physics=17 pleasure=2 poetry=0 principle=76 progress=1 prophecy=0 prudence=13 punishment=0 quality=3 quanity=0 reasoning=11 relation=8 religion=0 revolution=0 rhetoric=0 same=1 science=6 sense=143 sign=0 sin=0 slavery=0 soul=1 space=1 state=1 symbol=0 temperance=0 theology=4 time=0 truth=1 tryanny=0 universal=0 vice=2 virtue=3 war=0 wealth=0 will=2 wisdom=1 world=7 coefficient=1151 kant-introduction-4289: author=Kant title=Introduction To The Metaphysics Of Morals words=913 words=913 fog=14 kincaid=11 flesch=45 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=451 cause=2 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=483 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=15 family=0 fate=0 form=4 god=5 good=0 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=0 law=12 liberty=0 life=0 logic=0 love=0 man=5 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=1099 mind=3 monarchy=0 nature=2 necessity=15 oligarchy=0 one=0 opinion=0 opposition=0 other=1 pain=0 particular=10 peace=0 philosophy=43 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=15 quanity=0 reasoning=0 relation=221 religion=0 revolution=0 rhetoric=0 same=1 science=80 sense=0 sign=0 sin=0 slavery=0 soul=0 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=18 war=0 wealth=0 will=0 wisdom=0 world=0 coefficient=2485 kant-metaphysical-3364: author=Kant title=Metaphysical Elements Of Ethics words=15318 words=15318 fog=20 kincaid=17 flesch=34 angel=0 animal=3 aristocracy=0 art=0 astronomy=0 beauty=0 being=335 cause=1 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=5 death=0 definition=13 democracy=0 desire=0 despotism=0 dialectic=0 duty=200 education=0 element=18 emotion=26 equality=1 eternity=0 evil=2 evolution=0 experience=1 family=0 fate=1 form=1 god=1 good=1 government=3 habit=9 happiness=25 history=0 honor=2 hypothesis=0 idea=17 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=4 knowledge=5 labor=0 language=2 law=35 liberty=0 life=0 logic=0 love=6 man=4 many=0 mathematics=5 matter=3 mechanics=0 medicine=0 memory=0 metaphysics=147 mind=3 monarchy=0 nature=2 necessity=2 oligarchy=0 one=1 opinion=0 opposition=0 other=0 pain=1 particular=2 peace=1 philosophy=17 physics=0 pleasure=5 poetry=0 principle=46 progress=3 prophecy=0 prudence=5 punishment=0 quality=2 quanity=0 reasoning=6 relation=5 religion=0 revolution=0 rhetoric=0 same=1 science=4 sense=71 sign=1 sin=0 slavery=0 soul=0 space=0 state=3 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=2 universal=0 vice=36 virtue=48 war=0 wealth=0 will=1 wisdom=3 world=1 coefficient=1151 kant-science-1851: author=Kant title=Science Of Right words=51948 words=51948 fog=21 kincaid=17 flesch=34 angel=0 animal=2 aristocracy=3 art=0 astronomy=1 beauty=0 being=403 cause=1 chance=1 change=1 citizen=16 constitution=60 contingency= convention=0 cosmology=0 courage=0 custom=0 death=4 definition=14 democracy=4 desire=0 despotism=6 dialectic=1 duty=12 education=3 element=3 emotion=0 equality=4 eternity=0 evil=2 evolution=0 experience=3 family=5 fate=0 form=4 god=0 good=1 government=12 habit=1 happiness=0 history=2 honor=0 hypothesis=2 idea=16 imagination=1 immortality=0 induction=0 infinity=0 judgement=0 justic=14 knowledge=2 labor=0 language=0 law=24 liberty=1 life=1 logic=0 love=0 man=1 many=0 mathematics=2 matter=2 mechanics=0 medicine=0 memory=0 metaphysics=18 mind=1 monarchy=1 nature=4 necessity=5 oligarchy=2 one=1 opinion=2 opposition=3 other=0 pain=1 particular=10 peace=6 philosophy=1 physics=0 pleasure=1 poetry=0 principle=30 progress=0 prophecy=0 prudence=2 punishment=23 quality=3 quanity=4 reasoning=0 relation=34 religion=3 revolution=5 rhetoric=0 same=1 science=8 sense=46 sign=2 sin=0 slavery=3 soul=0 space=8 state=14 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=2 war=11 wealth=2 will=1 wisdom=0 world=1 coefficient=894 lavoisier-elements-2968: author=Lavoisier title=Elements Of Chemistry words=106696 words=106696 fog=15 kincaid=11 flesch=45 angel=0 animal=11 aristocracy=0 art=1 astronomy=0 beauty=0 being=197 cause=1 chance=0 change=2 citizen=0 constitution=3 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=1 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=22 emotion=0 equality=4 eternity=0 evil=0 evolution=0 experience=52 family=0 fate=0 form=6 god=0 good=0 government=0 habit=0 happiness=0 history=1 honor=0 hypothesis=0 idea=9 imagination=1 immortality=0 induction=0 infinity=0 judgement=1 justic=0 knowledge=2 labor=0 language=4 law=1 liberty=1 life=0 logic=1 love=0 man=0 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=0 monarchy=0 nature=2 necessity=2 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=0 particular=5 peace=0 philosophy=1 physics=2 pleasure=0 poetry=0 principle=8 progress=3 prophecy=0 prudence=0 punishment=0 quality=3 quanity=74 reasoning=1 relation=3 religion=0 revolution=1 rhetoric=0 same=1 science=7 sense=3 sign=0 sin=0 slavery=0 soul=0 space=3 state=4 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=0 will=0 wisdom=0 world=0 coefficient=448 locke-concerning-3152: author=Locke title=Concerning Civil Government words=53289 words=53289 fog=20 kincaid=17 flesch=41 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=369 cause=1 chance=1 change=1 citizen=0 constitution=12 contingency=0 convention=0 cosmology=0 courage=1 custom=3 death=2 definition=0 democracy=2 desire=2 despotism=0 dialectic=0 duty=4 education=6 element=0 emotion=0 equality=5 eternity=0 evil=2 evolution=0 experience=1 family=19 fate=0 form=1 god=5 good=4 government=85 habit=0 happiness=1 history=6 honor=0 hypothesis=4 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=2 justic=3 knowledge=1 labor=0 language=0 law=44 liberty=38 life=4 logic=0 love=1 man=3 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=25 nature=8 necessity=4 oligarchy=2 one=1 opinion=1 opposition=1 other=0 pain=0 particular=3 peace=7 philosophy=0 physics=0 pleasure=2 poetry=0 principle=2 progress=0 prophecy=0 prudence=5 punishment=20 quality=0 quanity=0 reasoning=0 relation=1 religion=2 revolution=0 rhetoric=0 same=1 science=0 sense=12 sign=0 sin=0 slavery=8 soul=1 space=0 state=8 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=11 universal=0 vice=0 virtue=1 war=18 wealth=1 will=1 wisdom=2 world=4 coefficient=788 locke-essay-4008: author=Locke title=Essay Concerning Human Understanding words=284442 words=284442 fog=18 kincaid=15 flesch=46 angel=3 animal=8 aristocracy=0 art=1 astronomy=0 beauty=0 being=396 cause=2 chance=1 change=1 citizen=0 constitution=10 contingency=0 convention=0 cosmology=0 courage=0 custom=3 death=0 definition=7 democracy=0 desire=3 despotism=0 dialectic=0 duty=1 education=2 element=0 emotion=0 equality=5 eternity=12 evil=2 evolution=0 experience=7 family=0 fate=0 form=1 god=5 good=2 government=1 habit=1 happiness=6 history=2 honor=0 hypothesis=4 idea=258 imagination=8 immortality=1 induction=0 infinity=17 judgement=6 justic=2 knowledge=26 labor=0 language=7 law=2 liberty=11 life=1 logic=2 love=1 man=3 many=1 mathematics=7 matter=4 mechanics=0 medicine=0 memory=8 metaphysics=2 mind=14 monarchy=0 nature=3 necessity=3 oligarchy=0 one=1 opinion=5 opposition=1 other=1 pain=8 particular=13 peace=0 philosophy=2 physics=0 pleasure=5 poetry=0 principle=13 progress=4 prophecy=0 prudence=0 punishment=4 quality=17 quanity=3 reasoning=5 relation=11 religion=4 revolution=3 rhetoric=1 same=2 science=4 sense=138 sign=9 sin=1 slavery=0 soul=5 space=21 state=1 symbol=0 temperance=1 theology=0 time=0 truth=10 tryanny=0 universal=0 vice=4 virtue=3 war=0 wealth=0 will=1 wisdom=1 world=2 coefficient=1177 locke-letter-3269: author=Locke title=Letter Concerning Toleration words=19867 words=19867 fog=19 kincaid=15 flesch=44 angel=0 animal=0 aristocracy=0 art=1 astronomy=0 beauty=0 being=458 cause=1 chance=0 change=2 citizen=5 constitution=8 contingency=0 convention=2 cosmology=0 courage=1 custom=0 death=1 definition=0 democracy=0 desire=4 despotism=0 dialectic=0 duty=8 education=1 element=0 emotion=0 equality=0 eternity=20 evil=3 evolution=0 experience=1 family=2 fate=0 form=1 god=17 good=3 government=22 habit=2 happiness=5 history=2 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=2 knowledge=2 labor=0 language=1 law=30 liberty=25 life=3 logic=0 love=1 man=3 many=0 mathematics=0 matter=3 mechanics=0 medicine=1 memory=0 metaphysics=0 mind=3 monarchy=0 nature=2 necessity=3 oligarchy=0 one=0 opinion=11 opposition=3 other=1 pain=1 particular=7 peace=17 philosophy=0 physics=0 pleasure=1 poetry=0 principle=2 progress=0 prophecy=0 prudence=2 punishment=22 quality=0 quanity=0 reasoning=2 relation=5 religion=166 revolution=0 rhetoric=0 same=1 science=0 sense=5 sign=0 sin=12 slavery=0 soul=15 space=0 state=1 symbol=0 temperance=0 theology=0 time=0 truth=4 tryanny=2 universal=0 vice=5 virtue=1 war=3 wealth=1 will=1 wisdom=1 world=3 coefficient=945 lucretius-of-2983: author=Lucretius title=Of The Nature Of Things words=76628 words=76628 fog=19 kincaid=16 flesch=49 angel=0 animal=1 aristocracy=0 art=1 astronomy=0 beauty=0 being=157 cause=2 chance=3 change=3 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=5 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=11 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=1 form=2 god=3 good=1 government=0 habit=1 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=7 induction=0 infinity=1 judgement=1 justic=0 knowledge=0 labor=0 language=0 law=3 liberty=0 life=3 logic=0 love=2 man=1 many=1 mathematics=0 matter=2 mechanics=0 medicine=1 memory=0 metaphysics=0 mind=7 monarchy=0 nature=4 necessity=0 oligarchy=0 one=0 opinion=0 opposition=1 other=0 pain=3 particular=0 peace=1 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=1 quanity=0 reasoning=1 relation=0 religion=4 revolution=0 rhetoric=0 same=1 science=1 sense=141 sign=3 sin=0 slavery=0 soul=12 space=11 state=1 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=0 virtue=1 war=2 wealth=0 will=0 wisdom=1 world=4 coefficient=418 machiavelli-prince-1728: author=Machiavelli title=Prince words=52234 words=52234 fog=20 kincaid=16 flesch=41 angel=0 animal=0 aristocracy=0 art=1 astronomy=0 beauty=0 being=254 cause=2 chance=3 change=2 citizen=14 constitution=2 contingency=0 convention=1 cosmology=0 courage=6 custom=2 death=4 definition=0 democracy=0 desire=3 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=3 evolution=0 experience=3 family=12 fate=1 form=1 god=2 good=2 government=13 habit=0 happiness=0 history=5 honor=1 hypothesis=0 idea=1 imagination=1 immortality=0 induction=0 infinity=0 judgement=2 justic=1 knowledge=2 labor=0 language=1 law=3 liberty=5 life=1 logic=0 love=2 man=1 many=1 mathematics=0 matter=1 mechanics=0 medicine=0 memory=4 metaphysics=0 mind=2 monarchy=1 nature=1 necessity=4 oligarchy=3 one=1 opinion=2 opposition=3 other=0 pain=0 particular=2 peace=4 philosophy=0 physics=0 pleasure=1 poetry=0 principle=1 progress=1 prophecy=0 prudence=6 punishment=3 quality=3 quanity=0 reasoning=0 relation=0 religion=5 revolution=1 rhetoric=0 same=0 science=0 sense=2 sign=1 sin=0 slavery=2 soul=1 space=1 state=6 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=3 virtue=2 war=9 wealth=0 will=1 wisdom=3 world=1 coefficient=441 marcus-meditations-2646: author=Marcus Aurelius title=Meditations words=74487 words=74487 fog=13 kincaid=10 flesch=60 angel=0 animal=0 aristocracy=0 art=7 astronomy=1 beauty=1 being=302 cause=1 chance=3 change=2 citizen=3 constitution=8 contingency=0 convention=0 cosmology=0 courage=2 custom=1 death=6 definition=0 democracy=0 desire=4 despotism=0 dialectic=1 duty=3 education=3 element=5 emotion=1 equality=2 eternity=3 evil=7 evolution=0 experience=1 family=2 fate=4 form=0 god=8 good=5 government=5 habit=0 happiness=8 history=1 honor=0 hypothesis=0 idea=2 imagination=4 immortality=2 induction=0 infinity=0 judgement=2 justic=4 knowledge=2 labor=0 language=1 law=2 liberty=5 life=5 logic=1 love=4 man=4 many=1 mathematics=0 matter=3 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=6 monarchy=0 nature=7 necessity=4 oligarchy=0 one=0 opinion=8 opposition=1 other=0 pain=5 particular=9 peace=1 philosophy=8 physics=2 pleasure=7 poetry=1 principle=1 progress=1 prophecy=0 prudence=2 punishment=0 quality=2 quanity=0 reasoning=4 relation=2 religion=1 revolution=1 rhetoric=3 same=1 science=0 sense=41 sign=0 sin=6 slavery=1 soul=11 space=1 state=1 symbol=2 temperance=4 theology=0 time=0 truth=2 tryanny=1 universal=0 vice=4 virtue=4 war=2 wealth=3 will=1 wisdom=1 world=8 coefficient=614 marx-capital-1110: author=Marx title=Capital words=345156 words=345156 fog=16 kincaid=13 flesch=42 angel=0 animal=2 aristocracy=1 art=1 astronomy=0 beauty=0 being=123 cause=1 chance=0 change=3 citizen=1 constitution=2 contingency=0 convention=1 cosmology=0 courage=0 custom=1 death=1 definition=8 democracy=0 desire=0 despotism=1 dialectic=1 duty=1 education=4 element=4 emotion=0 equality=3 eternity=0 evil=1 evolution=1 experience=2 family=8 fate=0 form=5 god=0 good=1 government=2 habit=1 happiness=1 history=6 honor=0 hypothesis=1 idea=2 imagination=1 immortality=0 induction=0 infinity=0 judgement=0 justic=1 knowledge=0 labor=9 language=0 law=7 liberty=1 life=1 logic=1 love=0 man=1 many=0 mathematics=1 matter=1 mechanics=13 medicine=0 memory=0 metaphysics=1 mind=0 monarchy=0 nature=2 necessity=3 oligarchy=1 one=0 opinion=1 opposition=2 other=0 pain=0 particular=4 peace=1 philosophy=1 physics=3 pleasure=0 poetry=0 principle=2 progress=5 prophecy=0 prudence=0 punishment=0 quality=2 quanity=29 reasoning=0 relation=13 religion=2 revolution=8 rhetoric=0 same=1 science=3 sense=14 sign=1 sin=0 slavery=4 soul=0 space=2 state=1 symbol=3 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=1 virtue=1 war=2 wealth=10 will=0 wisdom=0 world=1 coefficient=351 marx-manifesto-3427: author=Marx title=Manifesto Of The Communist Party words=17390 words=17390 fog=17 kincaid=14 flesch=35 angel=0 animal=0 aristocracy=38 art=0 astronomy=0 beauty=0 being=101 cause=0 chance=1 change=2 citizen=0 constitution=6 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=1 definition=0 democracy=3 desire=1 despotism=4 dialectic=0 duty=0 education=13 element=8 emotion=0 equality=2 eternity=0 evil=0 evolution=4 experience=2 family=15 fate=0 form=4 god=0 good=0 government=7 habit=0 happiness=0 history=22 honor=6 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=1 knowledge=0 labor=115 language=2 law=6 liberty=2 life=1 logic=0 love=0 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=15 nature=1 necessity=1 oligarchy=0 one=0 opinion=1 opposition=5 other=0 pain=0 particular=2 peace=1 philosophy=2 physics=0 pleasure=0 poetry=0 principle=5 progress=10 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=1 relation=19 religion=6 revolution=36 rhetoric=2 same=0 science=5 sense=21 sign=0 sin=0 slavery=4 soul=0 space=0 state=5 symbol=0 temperance=1 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=3 wealth=3 will=0 wisdom=0 world=2 coefficient=521 melville-moby-2778: author=Melville title=Moby Dick; Or The Whale words=214286 words=214286 fog=13 kincaid=10 flesch=59 angel=2 animal=2 aristocracy=0 art=1 astronomy=0 beauty=1 being=118 cause=0 chance=4 change=0 citizen=0 constitution=0 contingency= convention=0 cosmology=0 courage=1 custom=0 death=2 definition=1 democracy=1 desire=1 despotism=0 dialectic=0 duty=2 education=0 element=2 emotion=2 equality=1 eternity=3 evil=0 evolution=1 experience=1 family=1 fate=2 form=1 god=3 good=1 government=0 habit=0 happiness=0 history=2 honor=0 hypothesis=0 idea=3 imagination=1 immortality=2 induction=0 infinity=0 judgement=1 justic=0 knowledge=0 labor=2 language=0 law=1 liberty=0 life=1 logic=0 love=1 man=2 many=0 mathematics=1 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=1 opposition=1 other=0 pain=1 particular=3 peace=1 philosophy=0 physics=0 pleasure=0 poetry=0 principle=1 progress=1 prophecy=1 prudence=0 punishment=0 quality=1 quanity=2 reasoning=1 relation=1 religion=1 revolution=0 rhetoric=0 same=1 science=1 sense=6 sign=4 sin=1 slavery=0 soul=4 space=2 state=1 symbol=3 temperance=1 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=1 virtue=1 war=1 wealth=0 will=0 wisdom=0 world=2 coefficient=222 mill-considerations-4710: author=Mill title=Considerations On Representative Government words=97143 words=97143 fog=23 kincaid=19 flesch=27 angel=0 animal=0 aristocracy=17 art=0 astronomy=0 beauty=0 being=396 cause=1 chance=4 change=1 citizen=9 constitution=33 contingency=0 convention=0 cosmology=0 courage=1 custom=2 death=0 definition=2 democracy=40 desire=4 despotism=35 dialectic=0 duty=12 education=15 element=7 emotion=0 equality=7 eternity=0 evil=7 evolution=0 experience=5 family=3 fate=1 form=3 god=0 good=3 government=101 habit=6 happiness=0 history=6 honor=6 hypothesis=2 idea=9 imagination=1 immortality=0 induction=0 infinity=0 judgement=5 justic=6 knowledge=6 labor=20 language=2 law=5 liberty=7 life=1 logic=1 love=0 man=1 many=1 mathematics=0 matter=2 mechanics=3 medicine=0 memory=0 metaphysics=4 mind=3 monarchy=11 nature=1 necessity=4 oligarchy=9 one=0 opinion=15 opposition=4 other=0 pain=0 particular=5 peace=1 philosophy=1 physics=0 pleasure=1 poetry=0 principle=15 progress=19 prophecy=0 prudence=2 punishment=1 quality=8 quanity=1 reasoning=1 relation=3 religion=7 revolution=0 rhetoric=0 same=1 science=1 sense=39 sign=1 sin=0 slavery=5 soul=0 space=1 state=5 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=3 universal=0 vice=0 virtue=2 war=2 wealth=2 will=1 wisdom=1 world=1 coefficient=981 mill-on-1350: author=Mill title=On Liberty words=48028 words=48028 fog=22 kincaid=19 flesch=29 angel=0 animal=1 aristocracy=5 art=0 astronomy=0 beauty=1 being=394 cause=1 chance=3 change=1 citizen=3 constitution=5 contingency= convention=1 cosmology=0 courage=1 custom=13 death=1 definition=4 democracy=4 desire=5 despotism=14 dialectic=0 duty=12 education=23 element=5 emotion=0 equality=4 eternity=0 evil=11 evolution=0 experience=11 family=4 fate=0 form=2 god=1 good=2 government=33 habit=4 happiness=2 history=6 honor=0 hypothesis=0 idea=6 imagination=2 immortality=0 induction=0 infinity=1 judgement=12 justic=3 knowledge=3 labor=0 language=2 law=8 liberty=45 life=3 logic=2 love=0 man=1 many=1 mathematics=3 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=4 monarchy=0 nature=2 necessity=4 oligarchy=0 one=0 opinion=43 opposition=4 other=1 pain=2 particular=5 peace=1 philosophy=3 physics=0 pleasure=2 poetry=1 principle=17 progress=12 prophecy=0 prudence=4 punishment=13 quality=4 quanity=1 reasoning=2 relation=4 religion=19 revolution=2 rhetoric=0 same=1 science=1 sense=39 sign=0 sin=1 slavery=2 soul=0 space=1 state=4 symbol=0 temperance=1 theology=5 time=0 truth=11 tryanny=11 universal=0 vice=0 virtue=2 war=1 wealth=0 will=0 wisdom=3 world=3 coefficient=907 mill-utilitarianism-1885: author=Mill title=Utilitarianism words=30639 words=30639 fog=20 kincaid=17 flesch=34 angel=0 animal=6 aristocracy=0 art=1 astronomy=2 beauty=1 being=351 cause=0 chance=3 change=0 citizen=1 constitution=11 contingency=0 convention=0 cosmology=0 courage=0 custom=2 death=0 definition=5 democracy=0 desire=17 despotism=3 dialectic=0 duty=14 education=11 element=8 emotion=0 equality=8 eternity=0 evil=9 evolution=0 experience=7 family=1 fate=1 form=2 god=2 good=4 government=3 habit=6 happiness=45 history=3 honor=0 hypothesis=2 idea=24 imagination=2 immortality=0 induction=0 infinity=2 judgement=4 justic=44 knowledge=2 labor=0 language=4 law=16 liberty=3 life=3 logic=0 love=2 man=0 many=1 mathematics=3 matter=1 mechanics=0 medicine=1 memory=0 metaphysics=0 mind=3 monarchy=0 nature=3 necessity=4 oligarchy=0 one=0 opinion=10 opposition=3 other=1 pain=11 particular=11 peace=0 philosophy=4 physics=0 pleasure=22 poetry=1 principle=35 progress=3 prophecy=0 prudence=3 punishment=20 quality=8 quanity=9 reasoning=1 relation=1 religion=5 revolution=0 rhetoric=0 same=1 science=7 sense=54 sign=0 sin=0 slavery=0 soul=0 space=1 state=3 symbol=0 temperance=0 theology=2 time=0 truth=1 tryanny=1 universal=0 vice=2 virtue=11 war=0 wealth=0 will=0 wisdom=1 world=2 coefficient=885 milton-areopagitica-1852: author=Milton title=Areopagitica words=20942 words=20942 fog=19 kincaid=16 flesch=41 angel=3 animal=0 aristocracy=0 art=2 astronomy=3 beauty=0 being=341 cause=1 chance=1 change=0 citizen=0 constitution=4 contingency=0 convention=0 cosmology=0 courage=1 custom=2 death=1 definition=0 democracy=3 desire=1 despotism=0 dialectic=0 duty=1 education=2 element=0 emotion=0 equality=0 eternity=0 evil=10 evolution=0 experience=1 family=0 fate=0 form=1 god=7 good=4 government=7 habit=0 happiness=3 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=4 induction=0 infinity=0 judgement=7 justic=2 knowledge=7 labor=0 language=3 law=7 liberty=19 life=2 logic=0 love=2 man=2 many=1 mathematics=0 matter=2 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=2 monarchy=0 nature=0 necessity=2 oligarchy=4 one=0 opinion=6 opposition=0 other=0 pain=0 particular=4 peace=3 philosophy=2 physics=0 pleasure=1 poetry=0 principle=0 progress=2 prophecy=2 prudence=6 punishment=5 quality=1 quanity=0 reasoning=2 relation=1 religion=20 revolution=3 rhetoric=0 same=0 science=0 sense=9 sign=0 sin=7 slavery=0 soul=1 space=0 state=3 symbol=0 temperance=6 theology=4 time=0 truth=10 tryanny=5 universal=0 vice=5 virtue=5 war=1 wealth=1 will=1 wisdom=7 world=3 coefficient=592 milton-minor-1692: author=Milton title=Minor Poems words=41619 words=41619 fog=10 kincaid=7 flesch=65 angel=7 animal=0 aristocracy=0 art=2 astronomy=2 beauty=5 being=103 cause=1 chance=2 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=2 death=2 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=3 education=5 element=2 emotion=1 equality=1 eternity=2 evil=2 evolution=2 experience=1 family=5 fate=3 form=2 god=5 good=2 government=3 habit=3 happiness=2 history=4 honor=14 hypothesis=0 idea=3 imagination=0 immortality=8 induction=0 infinity=0 judgement=1 justic=0 knowledge=1 labor=11 language=3 law=4 liberty=3 life=2 logic=0 love=3 man=0 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=1 opposition=1 other=0 pain=1 particular=1 peace=4 philosophy=1 physics=0 pleasure=3 poetry=14 principle=1 progress=0 prophecy=2 prudence=0 punishment=1 quality=0 quanity=0 reasoning=0 relation=2 religion=3 revolution=2 rhetoric=1 same=0 science=1 sense=54 sign=2 sin=3 slavery=0 soul=4 space=0 state=2 symbol=0 temperance=2 theology=3 time=0 truth=1 tryanny=0 universal=0 vice=1 virtue=4 war=2 wealth=1 will=0 wisdom=1 world=1 coefficient=355 milton-paradise-1886: author=Milton title=Paradise Lost words=83093 words=83093 fog=20 kincaid=17 flesch=45 angel=34 animal=1 aristocracy=0 art=2 astronomy=0 beauty=1 being=81 cause=1 chance=3 change=2 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=1 death=7 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=0 education=0 element=2 emotion=0 equality=3 eternity=12 evil=7 evolution=0 experience=1 family=0 fate=5 form=1 god=13 good=2 government=2 habit=2 happiness=8 history=0 honor=0 hypothesis=0 idea=0 imagination=1 immortality=5 induction=0 infinity=0 judgement=0 justic=2 knowledge=3 labor=0 language=0 law=3 liberty=3 life=2 logic=0 love=5 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=2 monarchy=2 nature=1 necessity=1 oligarchy=0 one=0 opinion=0 opposition=1 other=0 pain=6 particular=0 peace=6 philosophy=0 physics=0 pleasure=2 poetry=0 principle=0 progress=1 prophecy=0 prudence=0 punishment=4 quality=0 quanity=0 reasoning=1 relation=2 religion=1 revolution=1 rhetoric=0 same=0 science=0 sense=35 sign=4 sin=13 slavery=0 soul=2 space=3 state=2 symbol=0 temperance=4 theology=0 time=0 truth=1 tryanny=1 universal=0 vice=1 virtue=3 war=6 wealth=1 will=0 wisdom=3 world=4 coefficient=336 milton-samson-2225: author=Milton title=Samson Agonistes words=13998 words=13998 fog=13 kincaid=10 flesch=63 angel=11 animal=0 aristocracy=0 art=4 astronomy=0 beauty=1 being=96 cause=2 chance=4 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=3 custom=0 death=6 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=2 education=0 element=0 emotion=0 equality=0 eternity=0 evil=7 evolution=0 experience=3 family=0 fate=0 form=0 god=16 good=1 government=0 habit=3 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=2 justic=0 knowledge=0 labor=0 language=0 law=5 liberty=8 life=3 logic=0 love=5 man=2 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=3 monarchy=0 nature=0 necessity=1 oligarchy=0 one=0 opinion=0 opposition=1 other=0 pain=4 particular=1 peace=7 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=3 prudence=0 punishment=6 quality=1 quanity=0 reasoning=0 relation=2 religion=7 revolution=0 rhetoric=0 same=0 science=0 sense=42 sign=0 sin=5 slavery=5 soul=1 space=1 state=1 symbol=0 temperance=2 theology=0 time=0 truth=1 tryanny=5 universal=0 vice=0 virtue=0 war=1 wealth=0 will=0 wisdom=5 world=0 coefficient=294 montaigne-essays-1562: author=Montaigne title=Essays words=452490 words=452490 fog=20 kincaid=17 flesch=40 angel=0 animal=2 aristocracy=0 art=2 astronomy=0 beauty=5 being=196 cause=2 chance=1 change=1 citizen=1 constitution=1 contingency=0 convention=0 cosmology=0 courage=7 custom=9 death=7 definition=0 democracy=0 desire=3 despotism=0 dialectic=0 duty=3 education=3 element=0 emotion=2 equality=2 eternity=2 evil=3 evolution=0 experience=4 family=5 fate=0 form=1 god=3 good=3 government=7 habit=1 happiness=3 history=3 honor=0 hypothesis=0 idea=1 imagination=6 immortality=1 induction=0 infinity=1 judgement=10 justic=4 knowledge=4 labor=0 language=2 law=4 liberty=10 life=3 logic=1 love=3 man=2 many=1 mathematics=0 matter=1 mechanics=0 medicine=2 memory=5 metaphysics=0 mind=2 monarchy=1 nature=2 necessity=5 oligarchy=0 one=0 opinion=8 opposition=1 other=0 pain=5 particular=5 peace=1 philosophy=5 physics=4 pleasure=7 poetry=2 principle=0 progress=2 prophecy=0 prudence=7 punishment=3 quality=6 quanity=0 reasoning=2 relation=2 religion=5 revolution=1 rhetoric=2 same=1 science=4 sense=29 sign=2 sin=1 slavery=1 soul=8 space=1 state=1 symbol=0 temperance=2 theology=1 time=0 truth=3 tryanny=2 universal=0 vice=10 virtue=6 war=5 wealth=1 will=1 wisdom=3 world=2 coefficient=505 montesquieu-spirit-2470: author=Montesquieu title=Spirit Of Laws words=261559 words=261559 fog=13 kincaid=10 flesch=55 angel=0 animal=1 aristocracy=16 art=5 astronomy=0 beauty=1 being=209 cause=2 chance=0 change=2 citizen=16 constitution=15 contingency=0 convention=2 cosmology=0 courage=2 custom=21 death=3 definition=0 democracy=15 desire=2 despotism=35 dialectic=0 duty=4 education=6 element=0 emotion=0 equality=4 eternity=0 evil=2 evolution=0 experience=1 family=14 fate=1 form=2 god=1 good=1 government=45 habit=1 happiness=2 history=9 honor=0 hypothesis=0 idea=8 imagination=5 immortality=1 induction=0 infinity=0 judgement=8 justic=4 knowledge=1 labor=0 language=0 law=55 liberty=26 life=2 logic=0 love=2 man=1 many=0 mathematics=0 matter=0 mechanics=1 medicine=0 memory=1 metaphysics=1 mind=1 monarchy=56 nature=4 necessity=4 oligarchy=1 one=0 opinion=2 opposition=2 other=0 pain=1 particular=10 peace=2 philosophy=1 physics=0 pleasure=2 poetry=0 principle=11 progress=2 prophecy=0 prudence=3 punishment=22 quality=1 quanity=4 reasoning=2 relation=15 religion=40 revolution=7 rhetoric=0 same=1 science=0 sense=17 sign=3 sin=1 slavery=19 soul=1 space=1 state=4 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=6 universal=0 vice=4 virtue=5 war=6 wealth=4 will=0 wisdom=1 world=1 coefficient=824 pascal-pensees-1319: author=Pascal title=Pensees words=108239 words=108239 fog=11 kincaid=8 flesch=67 angel=4 animal=3 aristocracy=0 art=1 astronomy=0 beauty=2 being=218 cause=2 chance=4 change=2 citizen=0 constitution=2 contingency=0 convention=0 cosmology=0 courage=0 custom=9 death=4 definition=1 democracy=0 desire=3 despotism=0 dialectic=0 duty=3 education=3 element=2 emotion=2 equality=3 eternity=12 evil=7 evolution=0 experience=3 family=3 fate=0 form=1 god=27 good=3 government=2 habit=1 happiness=9 history=6 honor=0 hypothesis=1 idea=2 imagination=8 immortality=3 induction=0 infinity=11 judgement=5 justic=9 knowledge=7 labor=0 language=1 law=7 liberty=1 life=2 logic=0 love=8 man=3 many=1 mathematics=10 matter=1 mechanics=0 medicine=1 memory=1 metaphysics=0 mind=3 monarchy=3 nature=4 necessity=3 oligarchy=0 one=0 opinion=4 opposition=4 other=0 pain=2 particular=3 peace=2 philosophy=2 physics=1 pleasure=4 poetry=1 principle=8 progress=2 prophecy=31 prudence=0 punishment=2 quality=4 quanity=0 reasoning=5 relation=2 religion=49 revolution=2 rhetoric=0 same=1 science=6 sense=46 sign=9 sin=17 slavery=2 soul=6 space=4 state=2 symbol=2 temperance=0 theology=7 time=0 truth=9 tryanny=3 universal=0 vice=7 virtue=3 war=2 wealth=2 will=1 wisdom=5 world=5 coefficient=704 plato-apology-1243: author=Plato title=Apology words=19007 words=19007 fog=15 kincaid=12 flesch=54 angel=0 animal=0 aristocracy=0 art=1 astronomy=0 beauty=0 being=246 cause=2 chance=2 change=1 citizen=13 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=0 death=19 definition=0 democracy=6 desire=1 despotism=0 dialectic=0 duty=4 education=0 element=0 emotion=0 equality=0 eternity=1 evil=24 evolution=0 experience=0 family=4 fate=0 form=1 god=17 good=5 government=0 habit=3 happiness=2 history=0 honor=0 hypothesis=0 idea=0 imagination=6 immortality=7 induction=0 infinity=0 judgement=2 justic=6 knowledge=3 labor=0 language=1 law=8 liberty=0 life=4 logic=0 love=1 man=3 many=1 mathematics=0 matter=2 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=2 monarchy=0 nature=1 necessity=2 oligarchy=4 one=0 opinion=4 opposition=2 other=0 pain=0 particular=3 peace=1 philosophy=5 physics=0 pleasure=1 poetry=6 principle=1 progress=0 prophecy=5 prudence=0 punishment=4 quality=0 quanity=0 reasoning=0 relation=5 religion=3 revolution=0 rhetoric=7 same=1 science=1 sense=17 sign=9 sin=1 slavery=0 soul=2 space=1 state=4 symbol=0 temperance=0 theology=0 time=0 truth=10 tryanny=0 universal=0 vice=0 virtue=7 war=2 wealth=0 will=1 wisdom=20 world=3 coefficient=533 plato-charmides-1424: author=Plato title=Charmides words=24600 words=24600 fog=15 kincaid=12 flesch=53 angel=0 animal=0 aristocracy=0 art=4 astronomy=0 beauty=11 being=277 cause=0 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=24 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=0 element=9 emotion=0 equality=0 eternity=1 evil=6 evolution=0 experience=1 family=4 fate=0 form=2 god=1 good=5 government=1 habit=0 happiness=6 history=6 honor=0 hypothesis=2 idea=26 imagination=0 immortality=1 induction=0 infinity=0 judgement=1 justic=2 knowledge=33 labor=0 language=20 law=6 liberty=1 life=1 logic=7 love=1 man=1 many=1 mathematics=0 matter=2 mechanics=0 medicine=20 memory=0 metaphysics=39 mind=2 monarchy=0 nature=2 necessity=1 oligarchy=0 one=0 opinion=6 opposition=3 other=0 pain=2 particular=4 peace=0 philosophy=30 physics=0 pleasure=0 poetry=4 principle=3 progress=2 prophecy=2 prudence=2 punishment=0 quality=7 quanity=1 reasoning=1 relation=12 religion=1 revolution=0 rhetoric=0 same=2 science=86 sense=73 sign=0 sin=0 slavery=0 soul=5 space=1 state=3 symbol=0 temperance=95 theology=4 time=0 truth=4 tryanny=0 universal=0 vice=1 virtue=3 war=1 wealth=0 will=1 wisdom=34 world=1 coefficient=925 plato-cratylus-1367: author=Plato title=Cratylus words=55652 words=55652 fog=16 kincaid=12 flesch=50 angel=0 animal=10 aristocracy=0 art=3 astronomy=1 beauty=5 being=256 cause=1 chance=3 change=2 citizen=0 constitution=0 contingency=0 convention=19 cosmology=0 courage=1 custom=5 death=0 definition=4 democracy=0 desire=2 despotism=0 dialectic=8 duty=0 education=3 element=13 emotion=1 equality=0 eternity=0 evil=1 evolution=1 experience=2 family=1 fate=0 form=4 god=6 good=3 government=1 habit=1 happiness=1 history=4 honor=0 hypothesis=1 idea=14 imagination=0 immortality=0 induction=3 infinity=1 judgement=1 justic=4 knowledge=7 labor=0 language=65 law=5 liberty=0 life=1 logic=8 love=1 man=1 many=1 mathematics=0 matter=1 mechanics=0 medicine=1 memory=1 metaphysics=27 mind=4 monarchy=0 nature=5 necessity=3 oligarchy=0 one=0 opinion=3 opposition=0 other=0 pain=0 particular=2 peace=0 philosophy=10 physics=0 pleasure=1 poetry=7 principle=16 progress=5 prophecy=1 prudence=0 punishment=1 quality=2 quanity=4 reasoning=0 relation=8 religion=0 revolution=1 rhetoric=1 same=1 science=6 sense=92 sign=3 sin=1 slavery=0 soul=8 space=1 state=2 symbol=5 temperance=0 theology=2 time=0 truth=6 tryanny=0 universal=0 vice=2 virtue=2 war=1 wealth=1 will=1 wisdom=5 world=2 coefficient=720 plato-critias-1231: author=Plato title=Critias words=12767 words=12767 fog=17 kincaid=14 flesch=47 angel=0 animal=10 aristocracy=0 art=1 astronomy=0 beauty=6 being=111 cause=0 chance=2 change=1 citizen=14 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=1 death=1 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=6 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=8 fate=0 form=1 god=9 good=0 government=7 habit=0 happiness=2 history=4 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=7 justic=1 knowledge=1 labor=0 language=4 law=10 liberty=0 life=2 logic=0 love=1 man=0 many=1 mathematics=0 matter=0 mechanics=0 medicine=0 memory=3 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=0 particular=3 peace=0 philosophy=3 physics=0 pleasure=2 poetry=2 principle=0 progress=2 prophecy=0 prudence=0 punishment=6 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=15 sign=0 sin=0 slavery=0 soul=0 space=0 state=4 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=7 war=9 wealth=5 will=0 wisdom=4 world=2 coefficient=284 plato-crito-1025: author=Plato title=Crito words=8434 words=8434 fog=14 kincaid=11 flesch=58 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=320 cause=0 chance=5 change=1 citizen=15 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=0 death=6 definition=0 democracy=7 desire=1 despotism=0 dialectic=4 duty=3 education=34 element=0 emotion=0 equality=0 eternity=0 evil=48 evolution=0 experience=2 family=0 fate=3 form=2 god=2 good=5 government=11 habit=2 happiness=0 history=0 honor=14 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=4 justic=14 knowledge=0 labor=0 language=0 law=23 liberty=6 life=5 logic=0 love=1 man=1 many=1 mathematics=0 matter=1 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=2 monarchy=0 nature=0 necessity=0 oligarchy=0 one=1 opinion=25 opposition=0 other=1 pain=2 particular=5 peace=3 philosophy=0 physics=0 pleasure=0 poetry=0 principle=14 progress=0 prophecy=0 prudence=0 punishment=5 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=12 sign=0 sin=0 slavery=0 soul=0 space=0 state=5 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=6 war=0 wealth=0 will=2 wisdom=0 world=5 coefficient=634 plato-euthydemus-1581: author=Plato title=Euthydemus words=23835 words=23835 fog=12 kincaid=9 flesch=61 angel=0 animal=9 aristocracy=0 art=14 astronomy=0 beauty=7 being=253 cause=0 chance=0 change=0 citizen=2 constitution=0 contingency=0 convention=0 cosmology=0 courage=3 custom=0 death=0 definition=5 democracy=0 desire=3 despotism=0 dialectic=0 duty=0 education=8 element=0 emotion=0 equality=0 eternity=0 evil=13 evolution=0 experience=2 family=3 fate=0 form=1 god=2 good=9 government=2 habit=0 happiness=12 history=3 honor=0 hypothesis=0 idea=0 imagination=0 immortality=3 induction=0 infinity=0 judgement=1 justic=1 knowledge=22 labor=0 language=6 law=3 liberty=0 life=1 logic=25 love=1 man=2 many=1 mathematics=0 matter=1 mechanics=0 medicine=7 memory=1 metaphysics=5 mind=2 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=3 opposition=0 other=0 pain=0 particular=3 peace=1 philosophy=29 physics=0 pleasure=0 poetry=0 principle=2 progress=1 prophecy=0 prudence=2 punishment=0 quality=5 quanity=0 reasoning=1 relation=2 religion=1 revolution=0 rhetoric=9 same=1 science=13 sense=63 sign=2 sin=0 slavery=0 soul=1 space=1 state=2 symbol=0 temperance=2 theology=0 time=0 truth=3 tryanny=0 universal=0 vice=0 virtue=7 war=3 wealth=4 will=1 wisdom=36 world=1 coefficient=634 plato-euthyphro-1480: author=Plato title=Euthyphro words=12139 words=12139 fog=13 kincaid=10 flesch=58 angel=0 animal=0 aristocracy=0 art=6 astronomy=0 beauty=1 being=239 cause=1 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=1 definition=21 democracy=0 desire=0 despotism=0 dialectic=6 duty=2 education=0 element=2 emotion=0 equality=0 eternity=0 evil=4 evolution=0 experience=0 family=7 fate=0 form=1 god=35 good=3 government=0 habit=1 happiness=0 history=0 honor=0 hypothesis=0 idea=7 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=11 knowledge=3 labor=0 language=1 law=5 liberty=0 life=1 logic=0 love=18 man=1 many=0 mathematics=0 matter=2 mechanics=0 medicine=2 memory=0 metaphysics=0 mind=1 monarchy=0 nature=3 necessity=0 oligarchy=0 one=0 opinion=6 opposition=0 other=0 pain=0 particular=4 peace=0 philosophy=3 physics=0 pleasure=0 poetry=0 principle=1 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=2 religion=32 revolution=0 rhetoric=0 same=1 science=10 sense=9 sign=3 sin=0 slavery=0 soul=0 space=0 state=8 symbol=0 temperance=0 theology=0 time=0 truth=3 tryanny=0 universal=0 vice=0 virtue=2 war=2 wealth=2 will=1 wisdom=8 world=1 coefficient=483 plato-gorgias-1228: author=Plato title=Gorgias words=62222 words=62222 fog=15 kincaid=11 flesch=56 angel=1 animal=4 aristocracy=0 art=16 astronomy=2 beauty=4 being=288 cause=1 chance=2 change=1 citizen=11 constitution=1 contingency=0 convention=6 cosmology=0 courage=4 custom=3 death=6 definition=3 democracy=0 desire=5 despotism=0 dialectic=4 duty=3 education=7 element=3 emotion=1 equality=4 eternity=2 evil=30 evolution=0 experience=7 family=2 fate=3 form=1 god=2 good=9 government=6 habit=3 happiness=12 history=2 honor=0 hypothesis=1 idea=7 imagination=4 immortality=3 induction=0 infinity=0 judgement=6 justic=13 knowledge=5 labor=0 language=4 law=6 liberty=0 life=4 logic=4 love=2 man=3 many=1 mathematics=0 matter=1 mechanics=0 medicine=15 memory=1 metaphysics=4 mind=2 monarchy=0 nature=3 necessity=2 oligarchy=1 one=0 opinion=8 opposition=5 other=0 pain=11 particular=1 peace=0 philosophy=12 physics=0 pleasure=16 poetry=10 principle=5 progress=0 prophecy=0 prudence=1 punishment=26 quality=2 quanity=1 reasoning=0 relation=3 religion=1 revolution=0 rhetoric=109 same=1 science=2 sense=42 sign=0 sin=0 slavery=1 soul=16 space=0 state=3 symbol=0 temperance=10 theology=4 time=0 truth=7 tryanny=3 universal=0 vice=5 virtue=5 war=0 wealth=3 will=1 wisdom=2 world=4 coefficient=871 plato-ion-806: author=Plato title=Ion words=9482 words=9482 fog=13 kincaid=10 flesch=56 angel=0 animal=0 aristocracy=0 art=30 astronomy=0 beauty=7 being=166 cause=0 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=1 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=4 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=2 fate=0 form=1 god=6 good=5 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=3 immortality=0 induction=0 infinity=0 judgement=2 justic=0 knowledge=17 labor=0 language=1 law=6 liberty=0 life=0 logic=0 love=0 man=1 many=1 mathematics=0 matter=1 mechanics=0 medicine=13 memory=3 metaphysics=0 mind=4 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=4 opposition=0 other=0 pain=1 particular=6 peace=0 philosophy=2 physics=0 pleasure=0 poetry=23 principle=0 progress=0 prophecy=4 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=4 same=2 science=0 sense=21 sign=0 sin=0 slavery=0 soul=4 space=0 state=5 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=0 war=2 wealth=0 will=1 wisdom=1 world=1 coefficient=358 plato-laches-1104: author=Plato title=Laches words=15183 words=15183 fog=13 kincaid=10 flesch=57 angel=0 animal=6 aristocracy=0 art=14 astronomy=0 beauty=1 being=247 cause=0 chance=1 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=148 custom=0 death=2 definition=9 democracy=0 desire=3 despotism=0 dialectic=2 duty=3 education=24 element=1 emotion=0 equality=0 eternity=0 evil=10 evolution=0 experience=5 family=1 fate=0 form=1 god=2 good=3 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=2 knowledge=27 labor=0 language=2 law=5 liberty=0 life=1 logic=0 love=0 man=3 many=1 mathematics=0 matter=3 mechanics=0 medicine=5 memory=2 metaphysics=0 mind=2 monarchy=0 nature=2 necessity=0 oligarchy=0 one=0 opinion=13 opposition=0 other=0 pain=4 particular=3 peace=0 philosophy=0 physics=0 pleasure=4 poetry=0 principle=3 progress=0 prophecy=0 prudence=0 punishment=0 quality=12 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=1 science=12 sense=0 sign=0 sin=0 slavery=0 soul=2 space=0 state=3 symbol=0 temperance=5 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=0 virtue=13 war=7 wealth=0 will=1 wisdom=11 world=0 coefficient=635 plato-laws-919: author=Plato title=Laws words=241112 words=241112 fog=17 kincaid=14 flesch=49 angel=0 animal=6 aristocracy=4 art=3 astronomy=2 beauty=3 being=403 cause=1 chance=3 change=1 citizen=29 constitution=6 contingency=0 convention=0 cosmology=0 courage=8 custom=5 death=3 definition=2 democracy=7 desire=3 despotism=3 dialectic=2 duty=4 education=29 element=4 emotion=0 equality=4 eternity=1 evil=10 evolution=0 experience=3 family=11 fate=2 form=1 god=12 good=4 government=10 habit=4 happiness=3 history=1 honor=0 hypothesis=0 idea=5 imagination=4 immortality=3 induction=0 infinity=0 judgement=3 justic=7 knowledge=3 labor=0 language=2 law=36 liberty=1 life=3 logic=0 love=2 man=3 many=1 mathematics=1 matter=3 mechanics=0 medicine=1 memory=1 metaphysics=1 mind=3 monarchy=3 nature=3 necessity=3 oligarchy=4 one=0 opinion=3 opposition=5 other=0 pain=5 particular=2 peace=3 philosophy=3 physics=0 pleasure=9 poetry=2 principle=8 progress=1 prophecy=0 prudence=1 punishment=19 quality=3 quanity=1 reasoning=1 relation=6 religion=5 revolution=3 rhetoric=0 same=1 science=1 sense=36 sign=0 sin=1 slavery=3 soul=12 space=0 state=7 symbol=0 temperance=10 theology=0 time=0 truth=3 tryanny=3 universal=0 vice=4 virtue=9 war=7 wealth=5 will=1 wisdom=5 world=2 coefficient=883 plato-lysis-1044: author=Plato title=Lysis words=15426 words=15426 fog=12 kincaid=9 flesch=64 angel=0 animal=0 aristocracy=0 art=1 astronomy=0 beauty=7 being=322 cause=1 chance=0 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=3 custom=0 death=0 definition=2 democracy=0 desire=10 despotism=0 dialectic=7 duty=0 education=0 element=3 emotion=0 equality=0 eternity=0 evil=60 evolution=0 experience=2 family=3 fate=0 form=1 god=2 good=14 government=0 habit=0 happiness=7 history=0 honor=0 hypothesis=0 idea=2 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=1 knowledge=7 labor=0 language=2 law=4 liberty=2 life=1 logic=5 love=25 man=1 many=1 mathematics=0 matter=2 mechanics=0 medicine=14 memory=2 metaphysics=0 mind=2 monarchy=0 nature=1 necessity=2 oligarchy=0 one=0 opinion=2 opposition=0 other=0 pain=1 particular=3 peace=0 philosophy=1 physics=0 pleasure=0 poetry=4 principle=4 progress=2 prophecy=0 prudence=0 punishment=0 quality=1 quanity=0 reasoning=0 relation=5 religion=0 revolution=0 rhetoric=0 same=0 science=1 sense=41 sign=0 sin=0 slavery=0 soul=3 space=2 state=3 symbol=0 temperance=3 theology=0 time=0 truth=3 tryanny=0 universal=0 vice=0 virtue=3 war=0 wealth=1 will=1 wisdom=12 world=1 coefficient=617 plato-meno-911: author=Plato title=Meno words=25098 words=25098 fog=13 kincaid=10 flesch=58 angel=0 animal=1 aristocracy=0 art=1 astronomy=0 beauty=3 being=275 cause=1 chance=1 change=0 citizen=3 constitution=0 contingency=0 convention=0 cosmology=0 courage=6 custom=1 death=1 definition=26 democracy=0 desire=8 despotism=0 dialectic=6 duty=1 education=11 element=5 emotion=0 equality=6 eternity=0 evil=10 evolution=0 experience=10 family=3 fate=0 form=3 god=3 good=8 government=0 habit=2 happiness=0 history=6 honor=0 hypothesis=17 idea=44 imagination=0 immortality=12 induction=0 infinity=0 judgement=2 justic=11 knowledge=34 labor=0 language=4 law=5 liberty=2 life=2 logic=6 love=0 man=2 many=1 mathematics=11 matter=1 mechanics=0 medicine=0 memory=2 metaphysics=19 mind=4 monarchy=0 nature=4 necessity=1 oligarchy=0 one=0 opinion=12 opposition=5 other=0 pain=0 particular=3 peace=0 philosophy=37 physics=0 pleasure=0 poetry=4 principle=6 progress=2 prophecy=0 prudence=5 punishment=2 quality=4 quanity=0 reasoning=1 relation=7 religion=2 revolution=0 rhetoric=2 same=1 science=9 sense=70 sign=0 sin=1 slavery=0 soul=12 space=18 state=4 symbol=4 temperance=12 theology=8 time=0 truth=6 tryanny=0 universal=0 vice=3 virtue=68 war=0 wealth=3 will=1 wisdom=13 world=3 coefficient=913 plato-parmenides-1544: author=Plato title=Parmenides words=38868 words=38868 fog=12 kincaid=9 flesch=63 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=4 being=658 cause=1 chance=0 change=4 citizen=1 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=0 democracy=0 desire=0 despotism=0 dialectic=14 duty=0 education=0 element=1 emotion=0 equality=20 eternity=0 evil=0 evolution=2 experience=5 family=0 fate=0 form=1 god=3 good=1 government=0 habit=0 happiness=0 history=3 honor=0 hypothesis=39 idea=99 imagination=6 immortality=0 induction=0 infinity=6 judgement=1 justic=1 knowledge=10 labor=0 language=4 law=3 liberty=0 life=0 logic=7 love=0 man=0 many=3 mathematics=3 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=37 mind=4 monarchy=0 nature=3 necessity=2 oligarchy=0 one=3 opinion=4 opposition=11 other=2 pain=0 particular=3 peace=0 philosophy=29 physics=2 pleasure=0 poetry=1 principle=2 progress=3 prophecy=0 prudence=0 punishment=0 quality=2 quanity=0 reasoning=1 relation=29 religion=0 revolution=0 rhetoric=0 same=4 science=2 sense=35 sign=0 sin=0 slavery=2 soul=0 space=5 state=3 symbol=0 temperance=1 theology=4 time=0 truth=5 tryanny=0 universal=0 vice=0 virtue=5 war=0 wealth=0 will=2 wisdom=0 world=2 coefficient=1108 plato-phaedo-1105: author=Plato title=Phaedo words=45650 words=45650 fog=15 kincaid=12 flesch=56 angel=3 animal=8 aristocracy=0 art=1 astronomy=0 beauty=6 being=274 cause=3 chance=1 change=1 citizen=0 constitution=1 contingency=0 convention=0 cosmology=0 courage=5 custom=0 death=15 definition=0 democracy=0 desire=4 despotism=1 dialectic=0 duty=1 education=3 element=11 emotion=0 equality=8 eternity=10 evil=13 evolution=0 experience=5 family=2 fate=2 form=3 god=8 good=3 government=3 habit=3 happiness=1 history=4 honor=0 hypothesis=2 idea=32 imagination=9 immortality=53 induction=0 infinity=3 judgement=1 justic=4 knowledge=11 labor=0 language=4 law=3 liberty=1 life=5 logic=6 love=2 man=2 many=1 mathematics=2 matter=2 mechanics=0 medicine=1 memory=1 metaphysics=0 mind=4 monarchy=0 nature=3 necessity=3 oligarchy=0 one=0 opinion=3 opposition=20 other=0 pain=5 particular=2 peace=1 philosophy=19 physics=3 pleasure=7 poetry=2 principle=10 progress=7 prophecy=3 prudence=0 punishment=6 quality=1 quanity=0 reasoning=2 relation=6 religion=4 revolution=0 rhetoric=2 same=1 science=2 sense=108 sign=0 sin=1 slavery=1 soul=57 space=1 state=3 symbol=2 temperance=7 theology=3 time=0 truth=5 tryanny=1 universal=0 vice=4 virtue=3 war=0 wealth=0 will=1 wisdom=4 world=6 coefficient=871 plato-phaedrus-1340: author=Plato title=Phaedrus words=41049 words=41049 fog=16 kincaid=13 flesch=50 angel=0 animal=6 aristocracy=0 art=13 astronomy=1 beauty=12 being=252 cause=1 chance=1 change=0 citizen=0 constitution=0 contingency=0 convention=3 cosmology=0 courage=1 custom=0 death=0 definition=5 democracy=0 desire=6 despotism=0 dialectic=11 duty=1 education=7 element=7 emotion=4 equality=3 eternity=0 evil=5 evolution=0 experience=2 family=2 fate=2 form=2 god=9 good=3 government=1 habit=2 happiness=3 history=3 honor=0 hypothesis=1 idea=12 imagination=6 immortality=15 induction=0 infinity=4 judgement=4 justic=6 knowledge=9 labor=0 language=5 law=5 liberty=1 life=2 logic=0 love=19 man=1 many=1 mathematics=0 matter=2 mechanics=0 medicine=4 memory=5 metaphysics=0 mind=4 monarchy=0 nature=4 necessity=2 oligarchy=0 one=0 opinion=5 opposition=2 other=0 pain=3 particular=3 peace=0 philosophy=15 physics=0 pleasure=5 poetry=9 principle=7 progress=3 prophecy=5 prudence=1 punishment=0 quality=2 quanity=1 reasoning=2 relation=3 religion=4 revolution=6 rhetoric=70 same=1 science=2 sense=74 sign=3 sin=0 slavery=0 soul=25 space=0 state=2 symbol=1 temperance=7 theology=2 time=0 truth=11 tryanny=0 universal=0 vice=1 virtue=1 war=1 wealth=1 will=1 wisdom=5 world=4 coefficient=768 plato-philebus-1340: author=Plato title=Philebus words=48318 words=48318 fog=15 kincaid=11 flesch=54 angel=0 animal=6 aristocracy=0 art=6 astronomy=1 beauty=7 being=298 cause=3 chance=2 change=1 citizen=0 constitution=1 contingency=0 convention=0 cosmology=0 courage=1 custom=1 death=0 definition=0 democracy=0 desire=5 despotism=3 dialectic=15 duty=4 education=3 element=24 emotion=0 equality=3 eternity=0 evil=4 evolution=0 experience=8 family=3 fate=0 form=1 god=5 good=7 government=1 habit=2 happiness=21 history=3 honor=0 hypothesis=1 idea=25 imagination=7 immortality=0 induction=0 infinity=18 judgement=2 justic=3 knowledge=15 labor=0 language=4 law=6 liberty=0 life=4 logic=2 love=2 man=1 many=1 mathematics=4 matter=1 mechanics=0 medicine=1 memory=9 metaphysics=29 mind=9 monarchy=0 nature=4 necessity=2 oligarchy=0 one=0 opinion=14 opposition=10 other=0 pain=32 particular=3 peace=0 philosophy=18 physics=4 pleasure=96 poetry=2 principle=20 progress=3 prophecy=0 prudence=0 punishment=0 quality=7 quanity=9 reasoning=1 relation=10 religion=9 revolution=1 rhetoric=4 same=1 science=19 sense=67 sign=0 sin=0 slavery=0 soul=9 space=1 state=3 symbol=2 temperance=5 theology=2 time=0 truth=8 tryanny=0 universal=0 vice=3 virtue=4 war=1 wealth=1 will=1 wisdom=21 world=4 coefficient=984 plato-protagoras-1570: author=Plato title=Protagoras words=30875 words=30875 fog=15 kincaid=12 flesch=55 angel=0 animal=5 aristocracy=0 art=9 astronomy=2 beauty=0 being=289 cause=1 chance=1 change=0 citizen=5 constitution=0 contingency=0 convention=0 cosmology=0 courage=29 custom=0 death=1 definition=0 democracy=0 desire=3 despotism=0 dialectic=9 duty=0 education=9 element=0 emotion=0 equality=2 eternity=0 evil=27 evolution=0 experience=1 family=0 fate=0 form=1 god=2 good=10 government=3 habit=1 happiness=1 history=0 honor=0 hypothesis=0 idea=4 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=17 knowledge=21 labor=0 language=2 law=4 liberty=1 life=1 logic=0 love=3 man=3 many=1 mathematics=0 matter=1 mechanics=0 medicine=2 memory=3 metaphysics=0 mind=2 monarchy=0 nature=2 necessity=1 oligarchy=0 one=0 opinion=8 opposition=17 other=1 pain=17 particular=3 peace=1 philosophy=9 physics=0 pleasure=22 poetry=3 principle=4 progress=0 prophecy=0 prudence=3 punishment=10 quality=7 quanity=0 reasoning=0 relation=6 religion=0 revolution=0 rhetoric=3 same=1 science=3 sense=32 sign=0 sin=0 slavery=0 soul=5 space=0 state=3 symbol=0 temperance=20 theology=0 time=0 truth=3 tryanny=0 universal=0 vice=0 virtue=31 war=3 wealth=1 will=1 wisdom=16 world=2 coefficient=714 plato-republic-1334: author=Plato title=Republic words=218495 words=218495 fog=15 kincaid=12 flesch=56 angel=0 animal=7 aristocracy=5 art=6 astronomy=6 beauty=6 being=333 cause=1 chance=2 change=2 citizen=14 constitution=6 contingency=0 convention=1 cosmology=0 courage=6 custom=1 death=2 definition=4 democracy=17 desire=5 despotism=0 dialectic=8 duty=3 education=26 element=7 emotion=1 equality=4 eternity=2 evil=14 evolution=1 experience=5 family=6 fate=2 form=2 god=6 good=5 government=9 habit=4 happiness=6 history=4 honor=0 hypothesis=1 idea=21 imagination=8 immortality=4 induction=1 infinity=1 judgement=2 justic=20 knowledge=11 labor=0 language=3 law=7 liberty=2 life=4 logic=4 love=3 man=2 many=1 mathematics=7 matter=1 mechanics=0 medicine=6 memory=1 metaphysics=8 mind=4 monarchy=1 nature=4 necessity=5 oligarchy=14 one=0 opinion=7 opposition=6 other=0 pain=5 particular=3 peace=2 philosophy=17 physics=0 pleasure=10 poetry=12 principle=13 progress=2 prophecy=0 prudence=0 punishment=3 quality=6 quanity=1 reasoning=2 relation=7 religion=6 revolution=3 rhetoric=2 same=1 science=13 sense=62 sign=1 sin=2 slavery=3 soul=15 space=2 state=8 symbol=3 temperance=8 theology=2 time=0 truth=6 tryanny=9 universal=0 vice=6 virtue=8 war=5 wealth=5 will=2 wisdom=5 world=4 coefficient=962 plato-seventh-1901: author=Plato title=Seventh Letter words=13740 words=13740 fog=19 kincaid=15 flesch=47 angel=0 animal=0 aristocracy=0 art=0 astronomy=0 beauty=0 being=210 cause=2 chance=1 change=2 citizen=0 constitution=12 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=2 definition=12 democracy=0 desire=7 despotism=0 dialectic=0 duty=3 education=14 element=0 emotion=0 equality=3 eternity=0 evil=7 evolution=0 experience=2 family=2 fate=0 form=3 god=2 good=3 government=16 habit=0 happiness=5 history=2 honor=0 hypothesis=0 idea=3 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=6 knowledge=7 labor=0 language=5 law=8 liberty=0 life=7 logic=0 love=1 man=3 many=1 mathematics=0 matter=3 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=3 monarchy=0 nature=2 necessity=0 oligarchy=0 one=0 opinion=6 opposition=0 other=0 pain=0 particular=3 peace=2 philosophy=29 physics=0 pleasure=3 poetry=0 principle=0 progress=2 prophecy=0 prudence=0 punishment=0 quality=5 quanity=0 reasoning=2 relation=0 religion=2 revolution=8 rhetoric=0 same=1 science=0 sense=16 sign=0 sin=0 slavery=3 soul=6 space=0 state=4 symbol=0 temperance=9 theology=0 time=0 truth=3 tryanny=12 universal=0 vice=4 virtue=6 war=2 wealth=3 will=1 wisdom=3 world=0 coefficient=496 plato-sophist-1258: author=Plato title=Sophist words=48105 words=48105 fog=14 kincaid=11 flesch=54 angel=0 animal=18 aristocracy=0 art=14 astronomy=0 beauty=3 being=389 cause=1 chance=2 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=0 definition=10 democracy=0 desire=1 despotism=0 dialectic=17 duty=0 education=9 element=9 emotion=0 equality=0 eternity=1 evil=2 evolution=6 experience=6 family=1 fate=0 form=3 god=3 good=2 government=0 habit=1 happiness=0 history=8 honor=0 hypothesis=4 idea=32 imagination=7 immortality=0 induction=2 infinity=6 judgement=0 justic=2 knowledge=12 labor=0 language=12 law=3 liberty=0 life=1 logic=25 love=0 man=1 many=1 mathematics=3 matter=1 mechanics=5 medicine=2 memory=0 metaphysics=47 mind=6 monarchy=0 nature=3 necessity=4 oligarchy=0 one=1 opinion=11 opposition=16 other=1 pain=0 particular=3 peace=1 philosophy=40 physics=5 pleasure=1 poetry=1 principle=11 progress=3 prophecy=0 prudence=0 punishment=0 quality=4 quanity=4 reasoning=2 relation=10 religion=5 revolution=0 rhetoric=2 same=1 science=12 sense=144 sign=2 sin=0 slavery=0 soul=10 space=2 state=1 symbol=0 temperance=0 theology=3 time=0 truth=4 tryanny=2 universal=0 vice=3 virtue=3 war=2 wealth=3 will=1 wisdom=2 world=4 coefficient=1006 plato-statesman-1456: author=Plato title=Statesman words=43005 words=43005 fog=15 kincaid=12 flesch=53 angel=0 animal=30 aristocracy=15 art=26 astronomy=1 beauty=2 being=275 cause=1 chance=0 change=2 citizen=5 constitution=2 contingency=0 convention=0 cosmology=0 courage=9 custom=5 death=0 definition=3 democracy=17 desire=1 despotism=0 dialectic=15 duty=3 education=14 element=10 emotion=0 equality=0 eternity=0 evil=7 evolution=0 experience=3 family=1 fate=2 form=3 god=5 good=3 government=32 habit=0 happiness=1 history=2 honor=0 hypothesis=0 idea=9 imagination=4 immortality=3 induction=0 infinity=3 judgement=1 justic=3 knowledge=10 labor=0 language=4 law=22 liberty=0 life=2 logic=0 love=1 man=2 many=1 mathematics=0 matter=1 mechanics=0 medicine=6 memory=0 metaphysics=8 mind=2 monarchy=11 nature=4 necessity=4 oligarchy=14 one=0 opinion=3 opposition=9 other=0 pain=0 particular=6 peace=2 philosophy=5 physics=0 pleasure=0 poetry=2 principle=11 progress=2 prophecy=0 prudence=0 punishment=0 quality=3 quanity=0 reasoning=1 relation=3 religion=1 revolution=3 rhetoric=4 same=1 science=59 sense=28 sign=1 sin=0 slavery=1 soul=2 space=1 state=5 symbol=1 temperance=8 theology=2 time=0 truth=3 tryanny=6 universal=0 vice=0 virtue=4 war=2 wealth=2 will=1 wisdom=5 world=4 coefficient=801 plato-symposium-1494: author=Plato title=Symposium words=35463 words=35463 fog=16 kincaid=13 flesch=50 angel=0 animal=6 aristocracy=0 art=4 astronomy=3 beauty=36 being=242 cause=1 chance=1 change=1 citizen=0 constitution=1 contingency=0 convention=0 cosmology=0 courage=4 custom=6 death=1 definition=0 democracy=0 desire=13 despotism=0 dialectic=0 duty=1 education=6 element=10 emotion=0 equality=2 eternity=7 evil=9 evolution=0 experience=2 family=3 fate=1 form=2 god=14 good=5 government=0 habit=0 happiness=5 history=1 honor=0 hypothesis=0 idea=6 imagination=7 immortality=21 induction=0 infinity=0 judgement=0 justic=2 knowledge=6 labor=0 language=3 law=5 liberty=1 life=2 logic=0 love=52 man=2 many=1 mathematics=0 matter=1 mechanics=0 medicine=8 memory=4 metaphysics=0 mind=3 monarchy=0 nature=3 necessity=2 oligarchy=0 one=0 opinion=2 opposition=0 other=0 pain=1 particular=2 peace=1 philosophy=13 physics=0 pleasure=1 poetry=10 principle=6 progress=1 prophecy=4 prudence=0 punishment=2 quality=0 quanity=3 reasoning=1 relation=4 religion=1 revolution=0 rhetoric=5 same=1 science=6 sense=30 sign=0 sin=0 slavery=1 soul=8 space=1 state=2 symbol=0 temperance=8 theology=0 time=0 truth=5 tryanny=1 universal=0 vice=1 virtue=8 war=2 wealth=4 will=1 wisdom=12 world=2 coefficient=666 plato-theaetetus-1564: author=Plato title=Theaetetus words=68589 words=68589 fog=15 kincaid=12 flesch=53 angel=0 animal=5 aristocracy=0 art=2 astronomy=2 beauty=1 being=259 cause=1 chance=0 change=1 citizen=0 constitution=1 contingency=0 convention=0 cosmology=0 courage=3 custom=0 death=1 definition=21 democracy=0 desire=1 despotism=0 dialectic=8 duty=1 education=7 element=13 emotion=1 equality=4 eternity=1 evil=4 evolution=0 experience=11 family=1 fate=0 form=2 god=3 good=2 government=0 habit=4 happiness=1 history=4 honor=0 hypothesis=6 idea=18 imagination=8 immortality=1 induction=0 infinity=2 judgement=3 justic=1 knowledge=38 labor=0 language=11 law=3 liberty=0 life=1 logic=8 love=1 man=3 many=1 mathematics=8 matter=1 mechanics=0 medicine=0 memory=7 metaphysics=21 mind=12 monarchy=0 nature=3 necessity=3 oligarchy=0 one=1 opinion=27 opposition=3 other=0 pain=1 particular=3 peace=1 philosophy=25 physics=5 pleasure=1 poetry=2 principle=4 progress=3 prophecy=1 prudence=0 punishment=0 quality=5 quanity=1 reasoning=2 relation=9 religion=3 revolution=1 rhetoric=2 same=1 science=18 sense=251 sign=1 sin=0 slavery=0 soul=4 space=17 state=2 symbol=4 temperance=1 theology=1 time=0 truth=8 tryanny=0 universal=0 vice=1 virtue=2 war=1 wealth=1 will=1 wisdom=7 world=3 coefficient=949 plato-timaeus-1240: author=Plato title=Timaeus words=75334 words=75334 fog=18 kincaid=15 flesch=44 angel=0 animal=21 aristocracy=0 art=1 astronomy=9 beauty=2 being=241 cause=4 chance=1 change=1 citizen=5 constitution=3 contingency=0 convention=0 cosmology=0 courage=1 custom=2 death=1 definition=0 democracy=0 desire=2 despotism=0 dialectic=2 duty=0 education=11 element=43 emotion=0 equality=5 eternity=17 evil=5 evolution=1 experience=5 family=1 fate=1 form=5 god=11 good=1 government=2 habit=2 happiness=1 history=3 honor=0 hypothesis=2 idea=16 imagination=7 immortality=9 induction=2 infinity=1 judgement=0 justic=0 knowledge=5 labor=0 language=5 law=6 liberty=0 life=1 logic=1 love=1 man=1 many=1 mathematics=10 matter=2 mechanics=2 medicine=6 memory=2 metaphysics=13 mind=5 monarchy=0 nature=6 necessity=7 oligarchy=0 one=0 opinion=4 opposition=10 other=0 pain=5 particular=2 peace=0 philosophy=17 physics=12 pleasure=3 poetry=2 principle=12 progress=4 prophecy=2 prudence=0 punishment=0 quality=3 quanity=0 reasoning=3 relation=7 religion=2 revolution=14 rhetoric=1 same=1 science=7 sense=96 sign=0 sin=0 slavery=1 soul=21 space=13 state=2 symbol=4 temperance=0 theology=6 time=0 truth=4 tryanny=0 universal=0 vice=4 virtue=1 war=2 wealth=0 will=0 wisdom=2 world=8 coefficient=796 plotinus-six-1904: author=Plotinus title=Six Enneads words=302531 words=302531 fog=19 kincaid=16 flesch=41 angel=0 animal=9 aristocracy=0 art=1 astronomy=0 beauty=17 being=487 cause=2 chance=3 change=2 citizen=0 constitution=12 contingency=0 convention=0 cosmology=0 courage=1 custom=0 death=1 definition=12 democracy=0 desire=4 despotism=0 dialectic=2 duty=0 education=0 element=12 emotion=4 equality=3 eternity=17 evil=11 evolution=0 experience=8 family=0 fate=2 form=5 god=5 good=5 government=2 habit=2 happiness=4 history=0 honor=0 hypothesis=3 idea=18 imagination=3 immortality=3 induction=0 infinity=6 judgement=0 justic=2 knowledge=6 labor=0 language=0 law=1 liberty=0 life=6 logic=1 love=3 man=1 many=0 mathematics=0 matter=9 mechanics=0 medicine=0 memory=8 metaphysics=0 mind=2 monarchy=0 nature=5 necessity=4 oligarchy=0 one=1 opinion=1 opposition=2 other=0 pain=3 particular=9 peace=1 philosophy=2 physics=0 pleasure=2 poetry=0 principle=35 progress=5 prophecy=0 prudence=0 punishment=1 quality=27 quanity=25 reasoning=3 relation=9 religion=0 revolution=1 rhetoric=0 same=1 science=3 sense=152 sign=1 sin=1 slavery=0 soul=66 space=8 state=2 symbol=2 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=5 virtue=10 war=0 wealth=1 will=1 wisdom=6 world=2 coefficient=1104 plutarch-lives-1350: author=Plutarch title=Lives words=742048 words=742048 fog=23 kincaid=20 flesch=33 angel=0 animal=1 aristocracy=1 art=1 astronomy=0 beauty=2 being=180 cause=1 chance=2 change=1 citizen=12 constitution=1 contingency=0 convention=0 cosmology=0 courage=8 custom=3 death=4 definition=0 democracy=2 desire=4 despotism=1 dialectic=0 duty=1 education=2 element=0 emotion=0 equality=2 eternity=0 evil=1 evolution=0 experience=1 family=6 fate=2 form=0 god=2 good=2 government=9 habit=2 happiness=2 history=2 honor=41 hypothesis=0 idea=0 imagination=2 immortality=1 induction=0 infinity=0 judgement=2 justic=3 knowledge=1 labor=7 language=2 law=4 liberty=7 life=1 logic=0 love=1 man=1 many=1 mathematics=0 matter=1 mechanics=1 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=3 nature=1 necessity=2 oligarchy=1 one=0 opinion=2 opposition=2 other=0 pain=1 particular=2 peace=4 philosophy=2 physics=0 pleasure=2 poetry=0 principle=0 progress=0 prophecy=1 prudence=2 punishment=5 quality=1 quanity=3 reasoning=1 relation=4 religion=1 revolution=2 rhetoric=1 same=0 science=0 sense=11 sign=2 sin=0 slavery=1 soul=1 space=2 state=1 symbol=0 temperance=6 theology=0 time=0 truth=1 tryanny=4 universal=0 vice=1 virtue=3 war=15 wealth=3 will=0 wisdom=1 world=1 coefficient=432 rabelais-gargantua-3107: author=Rabelais title=Gargantua And Pantagruel words=320901 words=320901 fog=13 kincaid=10 flesch=59 angel=4 animal=2 aristocracy=0 art=2 astronomy=0 beauty=1 being=150 cause=2 chance=3 change=0 citizen=1 constitution=1 contingency= convention=2 cosmology=0 courage=2 custom=2 death=1 definition=0 democracy=0 desire=1 despotism=0 dialectic=1 duty=1 education=0 element=1 emotion=0 equality=0 eternity=2 evil=1 evolution=0 experience=1 family=2 fate=1 form=0 god=5 good=4 government=1 habit=1 happiness=2 history=2 honor=0 hypothesis=0 idea=1 imagination=1 immortality=1 induction=0 infinity=0 judgement=3 justic=1 knowledge=1 labor=0 language=2 law=3 liberty=1 life=1 logic=0 love=2 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=1 memory=2 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=2 opposition=1 other=0 pain=1 particular=1 peace=2 philosophy=1 physics=0 pleasure=2 poetry=0 principle=0 progress=1 prophecy=1 prudence=0 punishment=1 quality=1 quanity=1 reasoning=0 relation=2 religion=1 revolution=0 rhetoric=1 same=0 science=1 sense=21 sign=4 sin=1 slavery=0 soul=3 space=2 state=1 symbol=1 temperance=1 theology=0 time=0 truth=1 tryanny=1 universal=0 vice=1 virtue=3 war=2 wealth=0 will=1 wisdom=1 world=2 coefficient=290 rousseau-discourse-7821: author=Rousseau title=Discourse Upon The Origin And The Foundation Of The Inequality Among Mankind words=29993 words=29993 fog=23 kincaid=19 flesch=31 angel=0 animal=29 aristocracy=2 art=3 astronomy=0 beauty=1 being=176 cause=2 chance=1 change=1 citizen=7 constitution=11 contingency=0 convention=9 cosmology=0 courage=2 custom=2 death=1 definition=4 democracy=2 desire=3 despotism=10 dialectic=0 duty=4 education=7 element=2 emotion=3 equality=7 eternity=0 evil=3 evolution=0 experience=6 family=6 fate=1 form=3 god=1 good=2 government=10 habit=4 happiness=7 history=4 honor=0 hypothesis=3 idea=22 imagination=4 immortality=1 induction=4 infinity=0 judgement=1 justic=3 knowledge=3 labor=0 language=12 law=13 liberty=20 life=2 logic=2 love=2 man=4 many=1 mathematics=0 matter=1 mechanics=5 medicine=2 memory=1 metaphysics=15 mind=3 monarchy=0 nature=8 necessity=11 oligarchy=0 one=0 opinion=2 opposition=2 other=1 pain=4 particular=5 peace=3 philosophy=6 physics=0 pleasure=3 poetry=0 principle=3 progress=13 prophecy=0 prudence=1 punishment=2 quality=6 quanity=3 reasoning=2 relation=5 religion=3 revolution=14 rhetoric=0 same=1 science=2 sense=43 sign=0 sin=0 slavery=10 soul=2 space=2 state=7 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=1 universal=0 vice=9 virtue=7 war=2 wealth=0 will=0 wisdom=2 world=1 coefficient=647 rousseau-discourse-3744: author=Rousseau title=Discourse On Political Economy words=15834 words=15834 fog=21 kincaid=17 flesch=37 angel=0 animal=1 aristocracy=5 art=2 astronomy=0 beauty=1 being=335 cause=3 chance=2 change=1 citizen=54 constitution=0 contingency=0 convention=7 cosmology=0 courage=5 custom=5 death=1 definition=0 democracy=11 desire=3 despotism=0 dialectic=0 duty=34 education=13 element=0 emotion=0 equality=4 eternity=0 evil=6 evolution=0 experience=4 family=25 fate=1 form=1 god=1 good=3 government=70 habit=2 happiness=9 history=6 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=4 judgement=2 justic=7 knowledge=1 labor=0 language=0 law=27 liberty=24 life=2 logic=0 love=5 man=1 many=1 mathematics=0 matter=1 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=2 necessity=6 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=3 particular=11 peace=2 philosophy=1 physics=3 pleasure=1 poetry=0 principle=4 progress=0 prophecy=0 prudence=3 punishment=14 quality=0 quanity=9 reasoning=0 relation=9 religion=0 revolution=0 rhetoric=0 same=1 science=0 sense=27 sign=2 sin=0 slavery=8 soul=1 space=0 state=10 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=13 universal=0 vice=10 virtue=13 war=3 wealth=8 will=1 wisdom=4 world=3 coefficient=865 rousseau-social-2320: author=Rousseau title=Social Contract words=44914 words=44914 fog=17 kincaid=14 flesch=46 angel=0 animal=2 aristocracy=42 art=1 astronomy=0 beauty=0 being=291 cause=1 chance=2 change=3 citizen=49 constitution=21 contingency=0 convention=17 cosmology=0 courage=1 custom=5 death=2 definition=1 democracy=25 desire=1 despotism=14 dialectic=0 duty=6 education=1 element=0 emotion=0 equality=7 eternity=0 evil=1 evolution=0 experience=1 family=6 fate=0 form=4 god=5 good=4 government=90 habit=1 happiness=3 history=6 honor=0 hypothesis=0 idea=6 imagination=0 immortality=0 induction=0 infinity=0 judgement=3 justic=4 knowledge=1 labor=0 language=2 law=28 liberty=34 life=2 logic=2 love=2 man=2 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=13 nature=4 necessity=3 oligarchy=2 one=0 opinion=4 opposition=3 other=0 pain=0 particular=15 peace=4 philosophy=0 physics=0 pleasure=1 poetry=0 principle=13 progress=1 prophecy=0 prudence=5 punishment=7 quality=2 quanity=2 reasoning=1 relation=19 religion=19 revolution=6 rhetoric=0 same=1 science=0 sense=41 sign=1 sin=0 slavery=16 soul=1 space=1 state=12 symbol=0 temperance=0 theology=6 time=0 truth=1 tryanny=7 universal=0 vice=2 virtue=2 war=11 wealth=1 will=1 wisdom=1 world=1 coefficient=932 shakespeare-alls-3298: author=Shakespeare title=All's Well That Ends Well words=24471 words=24471 fog=10 kincaid=7 flesch=72 angel=3 animal=0 aristocracy=0 art=3 astronomy=0 beauty=1 being=163 cause=0 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=0 death=4 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=3 education=1 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=2 family=0 fate=0 form=0 god=4 good=6 government=0 habit=0 happiness=2 history=0 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=3 justic=2 knowledge=2 labor=0 language=3 law=2 liberty=0 life=2 logic=0 love=14 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=3 memory=0 metaphysics=0 mind=1 monarchy=2 nature=2 necessity=1 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=2 particular=2 peace=1 philosophy=0 physics=0 pleasure=3 poetry=0 principle=0 progress=1 prophecy=0 prudence=0 punishment=0 quality=3 quanity=0 reasoning=0 relation=0 religion=1 revolution=0 rhetoric=0 same=0 science=1 sense=38 sign=0 sin=5 slavery=0 soul=1 space=4 state=0 symbol=0 temperance=0 theology=0 time=0 truth=3 tryanny=1 universal=0 vice=0 virtue=5 war=8 wealth=2 will=1 wisdom=3 world=2 coefficient=322 shakespeare-antony-3027: author=Shakespeare title=Antony And Cleopatra words=27127 words=27127 fog=10 kincaid=7 flesch=68 angel=1 animal=0 aristocracy=0 art=3 astronomy=0 beauty=1 being=138 cause=1 chance=3 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=1 death=6 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=2 education=0 element=2 emotion=0 equality=1 eternity=1 evil=0 evolution=0 experience=1 family=0 fate=2 form=0 god=5 good=5 government=0 habit=0 happiness=2 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=3 justic=1 knowledge=1 labor=0 language=0 law=0 liberty=1 life=1 logic=0 love=8 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=1 memory=1 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=1 particular=1 peace=6 philosophy=0 physics=0 pleasure=3 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=2 quality=2 quanity=0 reasoning=0 relation=0 religion=1 revolution=1 rhetoric=0 same=0 science=0 sense=9 sign=0 sin=1 slavery=0 soul=1 space=2 state=0 symbol=0 temperance=2 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=1 virtue=1 war=11 wealth=0 will=1 wisdom=1 world=4 coefficient=253 shakespeare-as-2303: author=Shakespeare title=As You Like It words=22935 words=22935 fog=10 kincaid=7 flesch=72 angel=0 animal=2 aristocracy=0 art=5 astronomy=0 beauty=1 being=177 cause=1 chance=0 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=1 death=2 definition=0 democracy=0 desire=3 despotism=0 dialectic=0 duty=2 education=2 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=2 family=0 fate=0 form=0 god=5 good=7 government=0 habit=1 happiness=3 history=1 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=2 justic=1 knowledge=2 labor=0 language=0 law=0 liberty=3 life=2 logic=0 love=26 man=3 many=1 mathematics=0 matter=2 mechanics=0 medicine=1 memory=1 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=1 particular=0 peace=2 philosophy=1 physics=0 pleasure=1 poetry=4 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=1 revolution=0 rhetoric=2 same=0 science=0 sense=0 sign=0 sin=4 slavery=0 soul=1 space=1 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=3 war=0 wealth=2 will=1 wisdom=1 world=4 coefficient=296 shakespeare-comedy-2623: author=Shakespeare title=Comedy Of Errors words=16239 words=16239 fog=11 kincaid=8 flesch=69 angel=6 animal=0 aristocracy=0 art=5 astronomy=0 beauty=2 being=119 cause=1 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=3 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=2 evolution=0 experience=1 family=0 fate=0 form=0 god=4 good=3 government=0 habit=1 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=0 justic=3 knowledge=0 labor=0 language=0 law=2 liberty=9 life=2 logic=0 love=5 man=2 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=2 particular=0 peace=2 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=2 prudence=0 punishment=1 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=11 sign=0 sin=4 slavery=0 soul=5 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=1 virtue=1 war=2 wealth=6 will=1 wisdom=1 world=1 coefficient=217 shakespeare-coriolanus-2187: author=Shakespeare title=Coriolanus words=29277 words=29277 fog=10 kincaid=8 flesch=68 angel=0 animal=0 aristocracy=0 art=2 astronomy=0 beauty=0 being=164 cause=1 chance=4 change=1 citizen=81 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=4 death=4 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=2 education=0 element=0 emotion=0 equality=0 eternity=1 evil=0 evolution=0 experience=0 family=0 fate=0 form=0 god=8 good=5 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=2 justic=1 knowledge=1 labor=0 language=0 law=1 liberty=3 life=1 logic=0 love=7 man=1 many=0 mathematics=0 matter=1 mechanics=1 medicine=0 memory=2 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=0 particular=2 peace=14 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=3 sign=2 sin=1 slavery=0 soul=1 space=0 state=2 symbol=0 temperance=3 theology=0 time=0 truth=1 tryanny=1 universal=0 vice=1 virtue=2 war=13 wealth=1 will=1 wisdom=1 world=2 coefficient=357 shakespeare-cymbeline-2052: author=Shakespeare title=Cymbeline words=28906 words=28906 fog=10 kincaid=8 flesch=70 angel=4 animal=0 aristocracy=0 art=4 astronomy=0 beauty=2 being=202 cause=1 chance=4 change=1 citizen=1 constitution=0 contingency=0 convention=0 cosmology=0 courage=4 custom=1 death=4 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=2 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=1 family=0 fate=0 form=0 god=5 good=4 government=0 habit=1 happiness=3 history=1 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=3 justic=1 knowledge=1 labor=0 language=1 law=2 liberty=1 life=2 logic=0 love=6 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=2 memory=1 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=1 opposition=1 other=0 pain=1 particular=0 peace=6 philosophy=0 physics=0 pleasure=3 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=2 quality=2 quanity=1 reasoning=0 relation=0 religion=1 revolution=0 rhetoric=0 same=0 science=0 sense=25 sign=2 sin=4 slavery=0 soul=2 space=1 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=3 virtue=3 war=5 wealth=1 will=1 wisdom=0 world=2 coefficient=339 shakespeare-first-4160: author=Shakespeare title=First Part Of King Henry The Sixth words=26101 words=26101 fog=9 kincaid=7 flesch=74 angel=5 animal=0 aristocracy=0 art=9 astronomy=0 beauty=1 being=154 cause=0 chance=1 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=0 death=4 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=0 god=7 good=4 government=3 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=2 infinity=0 judgement=0 justic=1 knowledge=0 labor=0 language=1 law=0 liberty=0 life=2 logic=0 love=6 man=2 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=1 opposition=1 other=0 pain=0 particular=0 peace=6 philosophy=0 physics=0 pleasure=1 poetry=1 principle=0 progress=1 prophecy=0 prudence=0 punishment=0 quality=1 quanity=1 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=0 sign=0 sin=4 slavery=0 soul=4 space=2 state=1 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=1 virtue=2 war=4 wealth=1 will=1 wisdom=1 world=2 coefficient=244 shakespeare-hamlet-1735: author=Shakespeare title=Hamlet words=32146 words=32146 fog=9 kincaid=7 flesch=72 angel=7 animal=0 aristocracy=0 art=2 astronomy=0 beauty=2 being=141 cause=1 chance=2 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=4 death=6 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=5 education=0 element=1 emotion=0 equality=0 eternity=2 evil=1 evolution=0 experience=0 family=0 fate=2 form=1 god=5 good=5 government=0 habit=2 happiness=1 history=1 honor=0 hypothesis=0 idea=0 imagination=2 immortality=0 induction=0 infinity=0 judgement=5 justic=0 knowledge=0 labor=0 language=0 law=1 liberty=3 life=2 logic=0 love=11 man=1 many=0 mathematics=0 matter=2 mechanics=0 medicine=1 memory=4 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=1 opposition=1 other=0 pain=0 particular=2 peace=3 philosophy=1 physics=0 pleasure=1 poetry=0 principle=0 progress=1 prophecy=0 prudence=0 punishment=0 quality=2 quanity=3 reasoning=0 relation=0 religion=1 revolution=1 rhetoric=0 same=0 science=0 sense=36 sign=0 sin=2 slavery=0 soul=9 space=1 state=1 symbol=0 temperance=1 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=2 virtue=3 war=1 wealth=1 will=1 wisdom=3 world=2 coefficient=308 shakespeare-julius-2391: author=Shakespeare title=Julius Caesar words=20918 words=20918 fog=9 kincaid=7 flesch=72 angel=3 animal=0 aristocracy=0 art=4 astronomy=0 beauty=0 being=142 cause=2 chance=3 change=1 citizen=70 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=1 death=7 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=0 element=2 emotion=0 equality=0 eternity=0 evil=2 evolution=0 experience=0 family=0 fate=0 form=0 god=5 good=5 government=0 habit=0 happiness=0 history=1 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=1 knowledge=0 labor=0 language=0 law=0 liberty=5 life=1 logic=0 love=9 man=2 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=1 oligarchy=0 one=0 opinion=2 opposition=0 other=0 pain=0 particular=0 peace=8 philosophy=2 physics=0 pleasure=2 poetry=0 principle=0 progress=1 prophecy=0 prudence=0 punishment=0 quality=2 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=2 same=0 science=0 sense=0 sign=3 sin=0 slavery=0 soul=2 space=1 state=1 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=5 universal=0 vice=0 virtue=2 war=2 wealth=0 will=1 wisdom=2 world=2 coefficient=315 shakespeare-king-1945: author=Shakespeare title=King Lear words=27739 words=27739 fog=8 kincaid=6 flesch=77 angel=1 animal=1 aristocracy=0 art=6 astronomy=0 beauty=1 being=119 cause=1 chance=2 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=1 death=3 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=5 education=0 element=2 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=0 form=0 god=0 good=4 government=0 habit=0 happiness=0 history=1 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=3 justic=4 knowledge=1 labor=0 language=0 law=1 liberty=1 life=2 logic=0 love=9 man=2 many=0 mathematics=0 matter=1 mechanics=0 medicine=2 memory=0 metaphysics=0 mind=1 monarchy=0 nature=2 necessity=2 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=1 particular=1 peace=4 philosophy=0 physics=0 pleasure=2 poetry=0 principle=0 progress=0 prophecy=3 prudence=0 punishment=2 quality=3 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=28 sign=0 sin=1 slavery=0 soul=1 space=3 state=1 symbol=0 temperance=2 theology=0 time=0 truth=1 tryanny=2 universal=0 vice=0 virtue=2 war=1 wealth=1 will=1 wisdom=4 world=2 coefficient=249 shakespeare-life-3410: author=Shakespeare title=Life And Death Of King John words=21818 words=21818 fog=10 kincaid=8 flesch=71 angel=6 animal=0 aristocracy=0 art=4 astronomy=0 beauty=3 being=159 cause=1 chance=2 change=1 citizen=13 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=0 death=7 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=1 element=0 emotion=0 equality=1 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=0 form=1 god=2 good=3 government=0 habit=1 happiness=3 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=1 labor=0 language=0 law=4 liberty=4 life=2 logic=0 love=9 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=1 memory=0 metaphysics=0 mind=0 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=0 particular=0 peace=21 philosophy=1 physics=0 pleasure=1 poetry=0 principle=0 progress=2 prophecy=0 prudence=0 punishment=0 quality=1 quanity=1 reasoning=0 relation=0 religion=2 revolution=0 rhetoric=0 same=0 science=0 sense=4 sign=0 sin=11 slavery=0 soul=9 space=0 state=1 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=1 virtue=2 war=10 wealth=1 will=1 wisdom=1 world=3 coefficient=311 shakespeare-life-3658: author=Shakespeare title=Life Of King Henry The Eighth words=26091 words=26091 fog=11 kincaid=8 flesch=68 angel=10 animal=0 aristocracy=0 art=1 astronomy=0 beauty=3 being=149 cause=2 chance=1 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=2 death=2 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=4 education=0 element=1 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=2 form=0 god=5 good=7 government=1 habit=3 happiness=4 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=3 justic=4 knowledge=1 labor=0 language=2 law=3 liberty=1 life=2 logic=0 love=7 man=2 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=2 opposition=0 other=0 pain=1 particular=1 peace=8 philosophy=0 physics=0 pleasure=6 poetry=0 principle=0 progress=2 prophecy=4 prudence=0 punishment=1 quality=1 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=0 sign=2 sin=5 slavery=1 soul=6 space=0 state=2 symbol=0 temperance=2 theology=0 time=0 truth=4 tryanny=0 universal=0 vice=0 virtue=4 war=1 wealth=3 will=1 wisdom=3 world=2 coefficient=291 shakespeare-life-3554: author=Shakespeare title=Life Of King Henry The Fifth words=27479 words=27479 fog=11 kincaid=9 flesch=69 angel=4 animal=0 aristocracy=0 art=2 astronomy=0 beauty=1 being=129 cause=1 chance=0 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=4 custom=1 death=3 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=2 education=0 element=1 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=1 fate=1 form=0 god=10 good=5 government=1 habit=0 happiness=3 history=1 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=0 knowledge=1 labor=0 language=0 law=3 liberty=1 life=1 logic=0 love=7 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=2 monarchy=3 nature=1 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=0 particular=2 peace=6 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=2 quality=2 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=13 sign=0 sin=7 slavery=0 soul=5 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=1 virtue=0 war=11 wealth=0 will=1 wisdom=1 world=2 coefficient=251 shakespeare-loves-2941: author=Shakespeare title=Love's Labour's Lost words=22956 words=22956 fog=9 kincaid=7 flesch=72 angel=7 animal=1 aristocracy=0 art=3 astronomy=0 beauty=7 being=124 cause=1 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=2 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=2 education=0 element=0 emotion=0 equality=0 eternity=2 evil=1 evolution=0 experience=1 family=0 fate=1 form=1 god=5 good=3 government=0 habit=3 happiness=1 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=1 labor=0 language=1 law=1 liberty=2 life=0 logic=0 love=23 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=2 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=2 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=3 particular=0 peace=6 philosophy=1 physics=0 pleasure=2 poetry=1 principle=0 progress=0 prophecy=0 prudence=0 punishment=2 quality=0 quanity=1 reasoning=0 relation=0 religion=1 revolution=0 rhetoric=6 same=0 science=0 sense=34 sign=3 sin=5 slavery=0 soul=3 space=2 state=0 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=1 virtue=2 war=1 wealth=2 will=1 wisdom=2 world=3 coefficient=288 shakespeare-macbeth-1824: author=Shakespeare title=Macbeth words=18257 words=18257 fog=8 kincaid=6 flesch=76 angel=7 animal=0 aristocracy=0 art=4 astronomy=0 beauty=0 being=146 cause=1 chance=4 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=3 custom=2 death=5 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=6 form=0 god=4 good=4 government=0 habit=0 happiness=2 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=2 knowledge=1 labor=0 language=0 law=0 liberty=0 life=2 logic=0 love=5 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=2 memory=1 metaphysics=0 mind=2 monarchy=0 nature=2 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=2 particular=1 peace=6 philosophy=0 physics=3 pleasure=2 poetry=0 principle=0 progress=0 prophecy=2 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=2 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=28 sign=2 sin=3 slavery=0 soul=3 space=1 state=1 symbol=0 temperance=3 theology=0 time=0 truth=2 tryanny=5 universal=0 vice=2 virtue=1 war=2 wealth=1 will=1 wisdom=5 world=1 coefficient=289 shakespeare-measure-2935: author=Shakespeare title=Measure For Measure words=23177 words=23177 fog=10 kincaid=7 flesch=69 angel=4 animal=0 aristocracy=0 art=6 astronomy=0 beauty=2 being=195 cause=1 chance=2 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=1 death=10 definition=0 democracy=0 desire=4 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=5 evolution=0 experience=0 family=0 fate=1 form=0 god=0 good=7 government=2 habit=4 happiness=2 history=1 honor=0 hypothesis=0 idea=0 imagination=3 immortality=0 induction=0 infinity=0 judgement=3 justic=15 knowledge=2 labor=0 language=1 law=7 liberty=5 life=4 logic=0 love=6 man=2 many=0 mathematics=0 matter=1 mechanics=0 medicine=2 memory=0 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=1 particular=1 peace=5 philosophy=0 physics=0 pleasure=3 poetry=0 principle=0 progress=1 prophecy=2 prudence=0 punishment=3 quality=1 quanity=0 reasoning=0 relation=0 religion=1 revolution=0 rhetoric=0 same=0 science=1 sense=51 sign=1 sin=16 slavery=0 soul=5 space=0 state=1 symbol=0 temperance=1 theology=0 time=0 truth=3 tryanny=3 universal=0 vice=12 virtue=5 war=1 wealth=0 will=1 wisdom=3 world=2 coefficient=428 shakespeare-merchant-2797: author=Shakespeare title=Merchant Of Venice words=22303 words=22303 fog=10 kincaid=8 flesch=70 angel=4 animal=0 aristocracy=0 art=2 astronomy=0 beauty=2 being=179 cause=0 chance=2 change=1 citizen=1 constitution=1 contingency=0 convention=0 cosmology=0 courage=2 custom=1 death=2 definition=0 democracy=0 desire=3 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=0 form=0 god=4 good=5 government=0 habit=2 happiness=2 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=6 justic=8 knowledge=0 labor=0 language=0 law=5 liberty=0 life=2 logic=0 love=13 man=2 many=1 mathematics=0 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=2 monarchy=0 nature=0 necessity=1 oligarchy=0 one=0 opinion=2 opposition=0 other=0 pain=2 particular=0 peace=1 philosophy=0 physics=0 pleasure=1 poetry=1 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=2 quanity=0 reasoning=1 relation=0 religion=1 revolution=0 rhetoric=0 same=1 science=0 sense=8 sign=1 sin=5 slavery=0 soul=6 space=0 state=1 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=2 universal=0 vice=1 virtue=2 war=0 wealth=6 will=1 wisdom=2 world=2 coefficient=308 shakespeare-merry-3204: author=Shakespeare title=Merry Wives Of Windsor words=23726 words=23726 fog=7 kincaid=6 flesch=77 angel=0 animal=0 aristocracy=0 art=2 astronomy=0 beauty=1 being=168 cause=1 chance=1 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=1 death=1 definition=0 democracy=0 desire=5 despotism=0 dialectic=0 duty=0 education=0 element=1 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=1 family=0 fate=2 form=0 god=1 good=8 government=0 habit=1 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=1 justic=3 knowledge=0 labor=0 language=0 law=0 liberty=1 life=1 logic=0 love=9 man=2 many=0 mathematics=0 matter=2 mechanics=0 medicine=1 memory=1 metaphysics=0 mind=2 monarchy=0 nature=0 necessity=1 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=1 particular=0 peace=7 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=1 quality=1 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=11 sign=0 sin=4 slavery=0 soul=2 space=1 state=0 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=0 virtue=0 war=0 wealth=3 will=2 wisdom=0 world=1 coefficient=258 shakespeare-midsummer-3253: author=Shakespeare title=Midsummer Nights Dream words=17186 words=17186 fog=10 kincaid=7 flesch=73 angel=2 animal=0 aristocracy=0 art=4 astronomy=0 beauty=2 being=124 cause=0 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=4 definition=0 democracy=0 desire=3 despotism=0 dialectic=0 duty=3 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=5 form=0 god=2 good=3 government=1 habit=0 happiness=0 history=1 honor=0 hypothesis=0 idea=0 imagination=5 immortality=0 induction=0 infinity=0 judgement=1 justic=0 knowledge=0 labor=0 language=0 law=2 liberty=0 life=1 logic=0 love=30 man=2 many=0 mathematics=0 matter=0 mechanics=0 medicine=1 memory=0 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=1 particular=0 peace=1 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=1 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=20 sign=0 sin=0 slavery=0 soul=5 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=0 virtue=1 war=1 wealth=0 will=1 wisdom=0 world=1 coefficient=234 shakespeare-much-3135: author=Shakespeare title=Much Ado About Nothing words=22590 words=22590 fog=9 kincaid=7 flesch=72 angel=3 animal=0 aristocracy=0 art=2 astronomy=0 beauty=2 being=174 cause=0 chance=2 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=1 death=4 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=2 education=0 element=1 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=1 form=0 god=12 good=6 government=0 habit=1 happiness=3 history=0 honor=0 hypothesis=0 idea=1 imagination=1 immortality=0 induction=0 infinity=0 judgement=2 justic=0 knowledge=0 labor=0 language=0 law=0 liberty=1 life=1 logic=0 love=23 man=4 many=0 mathematics=0 matter=2 mechanics=0 medicine=3 memory=0 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=1 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=0 particular=1 peace=4 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=2 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=4 sign=3 sin=6 slavery=0 soul=5 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=1 virtue=3 war=2 wealth=1 will=2 wisdom=2 world=2 coefficient=300 shakespeare-othello-1859: author=Shakespeare title=Othello words=27874 words=27874 fog=10 kincaid=7 flesch=70 angel=2 animal=0 aristocracy=0 art=3 astronomy=0 beauty=2 being=167 cause=1 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=2 death=2 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=5 education=2 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=1 fate=5 form=0 god=2 good=5 government=2 habit=0 happiness=3 history=1 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=3 justic=2 knowledge=0 labor=0 language=0 law=1 liberty=1 life=1 logic=0 love=16 man=1 many=0 mathematics=0 matter=2 mechanics=0 medicine=3 memory=0 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=1 opposition=1 other=0 pain=2 particular=0 peace=3 philosophy=0 physics=0 pleasure=3 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=1 quality=2 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=59 sign=1 sin=6 slavery=1 soul=11 space=0 state=1 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=1 universal=0 vice=6 virtue=3 war=4 wealth=0 will=1 wisdom=2 world=3 coefficient=356 shakespeare-pericles,-3305: author=Shakespeare title=Pericles, Prince Of Tyre words=19690 words=19690 fog=10 kincaid=7 flesch=73 angel=0 animal=0 aristocracy=0 art=3 astronomy=0 beauty=2 being=146 cause=1 chance=2 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=4 custom=3 death=4 definition=0 democracy=0 desire=3 despotism=0 dialectic=0 duty=1 education=2 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=1 family=0 fate=3 form=0 god=11 good=5 government=4 habit=1 happiness=5 history=1 honor=0 hypothesis=0 idea=0 imagination=2 immortality=4 induction=0 infinity=0 judgement=1 justic=2 knowledge=1 labor=0 language=1 law=2 liberty=0 life=3 logic=0 love=7 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=2 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=2 particular=0 peace=7 philosophy=0 physics=0 pleasure=3 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=1 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=18 sign=1 sin=11 slavery=0 soul=2 space=1 state=1 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=2 virtue=3 war=3 wealth=0 will=1 wisdom=2 world=2 coefficient=294 shakespeare-romeo-2606: author=Shakespeare title=Romeo And Juliet words=25902 words=25902 fog=8 kincaid=6 flesch=76 angel=3 animal=0 aristocracy=0 art=8 astronomy=0 beauty=6 being=161 cause=0 chance=2 change=1 citizen=6 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=1 death=13 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=1 form=0 god=4 good=4 government=0 habit=0 happiness=5 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=0 knowledge=0 labor=0 language=0 law=2 liberty=2 life=1 logic=0 love=24 man=2 many=0 mathematics=0 matter=1 mechanics=0 medicine=1 memory=0 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=1 other=0 pain=1 particular=0 peace=7 philosophy=2 physics=0 pleasure=1 poetry=0 principle=0 progress=1 prophecy=0 prudence=1 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=1 revolution=0 rhetoric=0 same=0 science=0 sense=13 sign=0 sin=8 slavery=0 soul=4 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=2 virtue=1 war=0 wealth=1 will=1 wisdom=2 world=2 coefficient=301 shakespeare-second-4244: author=Shakespeare title=Second Part Of King Henry The Sixth words=27907 words=27907 fog=9 kincaid=7 flesch=74 angel=3 animal=0 aristocracy=0 art=4 astronomy=0 beauty=0 being=139 cause=1 chance=3 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=0 death=4 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=0 element=1 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=1 form=0 god=9 good=8 government=1 habit=0 happiness=4 history=1 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=2 infinity=0 judgement=2 justic=6 knowledge=0 labor=0 language=1 law=2 liberty=0 life=2 logic=0 love=4 man=2 many=0 mathematics=0 matter=1 mechanics=0 medicine=2 memory=2 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=2 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=1 particular=1 peace=15 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=1 prophecy=3 prudence=0 punishment=0 quality=2 quanity=0 reasoning=0 relation=0 religion=1 revolution=1 rhetoric=0 same=0 science=0 sense=9 sign=1 sin=3 slavery=0 soul=2 space=0 state=1 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=2 universal=0 vice=2 virtue=1 war=5 wealth=0 will=1 wisdom=1 world=2 coefficient=274 shakespeare-sonnets-1878: author=Shakespeare title=Sonnets words=17654 words=17654 fog=12 kincaid=10 flesch=70 angel=8 animal=0 aristocracy=0 art=11 astronomy=3 beauty=38 being=176 cause=0 chance=1 change=2 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=5 definition=0 democracy=0 desire=3 despotism=0 dialectic=0 duty=2 education=0 element=0 emotion=0 equality=0 eternity=11 evil=2 evolution=0 experience=0 family=0 fate=1 form=1 god=0 good=1 government=0 habit=1 happiness=7 history=1 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=5 justic=0 knowledge=1 labor=0 language=0 law=0 liberty=2 life=2 logic=0 love=48 man=0 many=0 mathematics=0 matter=0 mechanics=0 medicine=1 memory=6 metaphysics=0 mind=3 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=3 particular=0 peace=1 philosophy=0 physics=0 pleasure=5 poetry=0 principle=0 progress=1 prophecy=0 prudence=0 punishment=0 quality=1 quanity=0 reasoning=0 relation=0 religion=0 revolution=2 rhetoric=2 same=0 science=0 sense=24 sign=0 sin=14 slavery=2 soul=5 space=1 state=1 symbol=0 temperance=0 theology=0 time=0 truth=6 tryanny=2 universal=0 vice=2 virtue=3 war=3 wealth=6 will=1 wisdom=1 world=5 coefficient=434 shakespeare-taming-2827: author=Shakespeare title=Taming Of The Shrew words=22160 words=22160 fog=10 kincaid=7 flesch=69 angel=1 animal=0 aristocracy=0 art=2 astronomy=0 beauty=5 being=185 cause=1 chance=3 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=1 death=1 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=8 education=2 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=1 family=0 fate=0 form=0 god=4 good=6 government=0 habit=2 happiness=3 history=1 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=7 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=0 law=1 liberty=2 life=2 logic=1 love=14 man=1 many=0 mathematics=5 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=5 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=1 particular=0 peace=3 philosophy=2 physics=0 pleasure=2 poetry=3 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=1 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=2 same=0 science=0 sense=12 sign=2 sin=0 slavery=0 soul=0 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=2 war=1 wealth=2 will=1 wisdom=1 world=3 coefficient=306 shakespeare-tempest-1870: author=Shakespeare title=Tempest words=17411 words=17411 fog=10 kincaid=7 flesch=72 angel=0 animal=0 aristocracy=0 art=7 astronomy=0 beauty=1 being=160 cause=0 chance=0 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=2 death=2 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=3 form=0 god=2 good=4 government=2 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=3 law=0 liberty=3 life=2 logic=0 love=5 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=2 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=0 particular=1 peace=3 philosophy=0 physics=0 pleasure=2 poetry=0 principle=0 progress=0 prophecy=0 prudence=2 punishment=0 quality=2 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=30 sign=0 sin=3 slavery=2 soul=3 space=5 state=1 symbol=0 temperance=3 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=2 war=0 wealth=0 will=1 wisdom=0 world=1 coefficient=266 shakespeare-third-4147: author=Shakespeare title=Third Part Of King Henry The Sixth words=26150 words=26150 fog=9 kincaid=7 flesch=74 angel=0 animal=0 aristocracy=0 art=3 astronomy=0 beauty=1 being=149 cause=1 chance=1 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=5 custom=0 death=7 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=1 fate=0 form=0 god=5 good=2 government=3 habit=0 happiness=0 history=1 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=1 justic=1 knowledge=0 labor=0 language=0 law=2 liberty=3 life=2 logic=0 love=8 man=1 many=1 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=1 particular=0 peace=5 philosophy=0 physics=0 pleasure=2 poetry=0 principle=0 progress=0 prophecy=3 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=3 sign=2 sin=4 slavery=0 soul=5 space=0 state=1 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=1 war=7 wealth=1 will=1 wisdom=1 world=1 coefficient=241 shakespeare-timon-2507: author=Shakespeare title=Timon Of Athens words=19688 words=19688 fog=9 kincaid=7 flesch=73 angel=0 animal=0 aristocracy=0 art=7 astronomy=0 beauty=0 being=125 cause=0 chance=1 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=0 death=2 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=2 form=0 god=9 good=4 government=0 habit=2 happiness=4 history=0 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=2 justic=1 knowledge=0 labor=0 language=0 law=3 liberty=2 life=1 logic=0 love=8 man=2 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=0 nature=2 necessity=2 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=2 particular=2 peace=4 philosophy=0 physics=0 pleasure=2 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=2 quanity=2 reasoning=0 relation=0 religion=3 revolution=0 rhetoric=0 same=0 science=0 sense=13 sign=0 sin=7 slavery=0 soul=2 space=0 state=1 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=2 war=4 wealth=11 will=1 wisdom=1 world=2 coefficient=246 shakespeare-titus-2747: author=Shakespeare title=Titus Andronicus words=21788 words=21788 fog=11 kincaid=9 flesch=68 angel=0 animal=0 aristocracy=0 art=4 astronomy=0 beauty=0 being=128 cause=1 chance=3 change=0 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=6 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=1 family=2 fate=0 form=0 god=5 good=3 government=0 habit=0 happiness=2 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=9 knowledge=0 labor=0 language=0 law=1 liberty=0 life=2 logic=0 love=8 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=1 particular=0 peace=5 philosophy=0 physics=0 pleasure=1 poetry=1 principle=0 progress=0 prophecy=0 prudence=0 punishment=1 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=0 sign=7 sin=2 slavery=0 soul=4 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=4 universal=0 vice=0 virtue=3 war=3 wealth=1 will=1 wisdom=1 world=1 coefficient=216 shakespeare-tragedy-4180: author=Shakespeare title=Tragedy Of King Richard The Second words=24013 words=24013 fog=11 kincaid=9 flesch=70 angel=2 animal=0 aristocracy=0 art=4 astronomy=0 beauty=0 being=136 cause=1 chance=0 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=8 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=6 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=0 family=0 fate=0 form=0 god=10 good=3 government=1 habit=0 happiness=6 history=0 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=0 justic=2 knowledge=0 labor=0 language=0 law=1 liberty=0 life=2 logic=0 love=6 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=1 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=3 particular=0 peace=8 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=3 sign=2 sin=7 slavery=0 soul=11 space=0 state=1 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=0 virtue=1 war=7 wealth=0 will=1 wisdom=0 world=2 coefficient=242 shakespeare-tragedy-4083: author=Shakespeare title=Tragedy Of King Richard The Third words=31640 words=31640 fog=10 kincaid=8 flesch=71 angel=7 animal=0 aristocracy=0 art=3 astronomy=0 beauty=3 being=143 cause=1 chance=0 change=1 citizen=23 constitution=0 contingency=0 convention=0 cosmology=0 courage=2 custom=0 death=11 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=2 education=0 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=0 form=0 god=13 good=5 government=1 habit=0 happiness=7 history=1 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=3 infinity=0 judgement=0 justic=1 knowledge=0 labor=0 language=0 law=2 liberty=3 life=2 logic=0 love=10 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=2 monarchy=3 nature=0 necessity=0 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=2 particular=0 peace=8 philosophy=0 physics=0 pleasure=2 poetry=0 principle=0 progress=0 prophecy=3 prudence=0 punishment=1 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=0 sign=1 sin=5 slavery=0 soul=14 space=1 state=1 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=4 universal=0 vice=1 virtue=1 war=3 wealth=0 will=1 wisdom=1 world=3 coefficient=307 shakespeare-troilus-3039: author=Shakespeare title=Troilus And Cressida words=27576 words=27576 fog=9 kincaid=7 flesch=72 angel=0 animal=0 aristocracy=0 art=4 astronomy=0 beauty=5 being=134 cause=1 chance=3 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=4 custom=1 death=3 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=1 evil=1 evolution=0 experience=0 family=0 fate=3 form=0 god=5 good=4 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=3 justic=1 knowledge=0 labor=0 language=0 law=1 liberty=0 life=1 logic=0 love=12 man=2 many=0 mathematics=0 matter=2 mechanics=0 medicine=2 memory=1 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=0 oligarchy=0 one=0 opinion=2 opposition=0 other=0 pain=1 particular=2 peace=6 philosophy=1 physics=0 pleasure=2 poetry=0 principle=0 progress=0 prophecy=1 prudence=0 punishment=0 quality=1 quanity=0 reasoning=0 relation=1 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=31 sign=0 sin=1 slavery=0 soul=5 space=1 state=1 symbol=0 temperance=0 theology=0 time=0 truth=3 tryanny=0 universal=0 vice=3 virtue=3 war=6 wealth=1 will=1 wisdom=2 world=2 coefficient=277 shakespeare-twelfth-2404: author=Shakespeare title=Twelfth Night words=21427 words=21427 fog=9 kincaid=7 flesch=72 angel=0 animal=0 aristocracy=0 art=5 astronomy=0 beauty=4 being=190 cause=0 chance=1 change=0 citizen=0 constitution=1 contingency=0 convention=0 cosmology=0 courage=1 custom=0 death=2 definition=0 democracy=0 desire=3 despotism=0 dialectic=0 duty=2 education=0 element=4 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=3 form=0 god=3 good=5 government=0 habit=2 happiness=0 history=1 honor=0 hypothesis=0 idea=0 imagination=2 immortality=0 induction=0 infinity=0 judgement=1 justic=0 knowledge=1 labor=0 language=0 law=1 liberty=0 life=1 logic=0 love=16 man=2 many=0 mathematics=0 matter=2 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=1 oligarchy=0 one=0 opinion=2 opposition=0 other=0 pain=0 particular=0 peace=12 philosophy=0 physics=0 pleasure=2 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=1 quanity=1 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=17 sign=0 sin=3 slavery=0 soul=7 space=0 state=1 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=3 virtue=2 war=1 wealth=0 will=1 wisdom=2 world=2 coefficient=315 shakespeare-two-3269: author=Shakespeare title=Two Gentlemen Of Verona words=18344 words=18344 fog=9 kincaid=6 flesch=74 angel=0 animal=0 aristocracy=0 art=4 astronomy=0 beauty=5 being=177 cause=0 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=2 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=4 education=0 element=0 emotion=0 equality=0 eternity=0 evil=0 evolution=0 experience=1 family=0 fate=0 form=0 god=0 good=4 government=0 habit=2 happiness=6 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=2 justic=1 knowledge=0 labor=0 language=0 law=1 liberty=0 life=1 logic=0 love=42 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=2 monarchy=0 nature=0 necessity=1 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=0 particular=0 peace=4 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=3 quanity=0 reasoning=1 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=5 sign=1 sin=0 slavery=0 soul=2 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=4 virtue=4 war=1 wealth=4 will=1 wisdom=0 world=1 coefficient=295 shakespeare-winters-2341: author=Shakespeare title=Winter's Tale words=25928 words=25928 fog=10 kincaid=8 flesch=71 angel=0 animal=0 aristocracy=0 art=4 astronomy=0 beauty=2 being=215 cause=1 chance=2 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=3 death=5 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=2 evil=2 evolution=0 experience=0 family=0 fate=2 form=0 god=2 good=6 government=0 habit=0 happiness=0 history=1 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=1 justic=3 knowledge=3 labor=0 language=1 law=1 liberty=1 life=3 logic=0 love=6 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=2 memory=1 metaphysics=0 mind=1 monarchy=0 nature=1 necessity=2 oligarchy=0 one=0 opinion=1 opposition=0 other=0 pain=0 particular=1 peace=1 philosophy=0 physics=2 pleasure=1 poetry=0 principle=0 progress=0 prophecy=3 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=1 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=25 sign=1 sin=2 slavery=0 soul=2 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=4 universal=0 vice=4 virtue=2 war=0 wealth=0 will=1 wisdom=1 world=1 coefficient=335 smith-inquiry-5795: author=Smith title=Inquiry Into The Nature And Causes Of The Wealth Of Nations words=380252 words=380252 fog=19 kincaid=16 flesch=39 angel=0 animal=2 aristocracy=1 art=1 astronomy=0 beauty=1 being=237 cause=1 chance=1 change=1 citizen=3 constitution=4 contingency=0 convention=0 cosmology=0 courage=0 custom=7 death=0 definition=0 democracy=0 desire=0 despotism=1 dialectic=0 duty=15 education=6 element=0 emotion=0 equality=8 eternity=0 evil=0 evolution=0 experience=2 family=7 fate=0 form=0 god=0 good=4 government=16 habit=1 happiness=1 history=2 honor=0 hypothesis=0 idea=0 imagination=2 immortality=0 induction=0 infinity=0 judgement=1 justic=3 knowledge=1 labor=0 language=1 law=5 liberty=5 life=1 logic=0 love=0 man=1 many=1 mathematics=0 matter=0 mechanics=2 medicine=0 memory=0 metaphysics=1 mind=0 monarchy=3 nature=3 necessity=3 oligarchy=0 one=0 opinion=1 opposition=1 other=0 pain=0 particular=14 peace=3 philosophy=2 physics=1 pleasure=1 poetry=0 principle=2 progress=6 prophecy=0 prudence=1 punishment=1 quality=2 quanity=64 reasoning=1 relation=1 religion=2 revolution=3 rhetoric=1 same=2 science=2 sense=4 sign=0 sin=0 slavery=1 soul=0 space=0 state=3 symbol=0 temperance=1 theology=1 time=0 truth=0 tryanny=0 universal=0 vice=1 virtue=0 war=6 wealth=9 will=0 wisdom=1 world=1 coefficient=494 sophocles-ajax-1332: author=Sophocles title=Ajax words=12067 words=12067 fog=9 kincaid=6 flesch=75 angel=0 animal=0 aristocracy=0 art=4 astronomy=0 beauty=0 being=107 cause=1 chance=2 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=3 custom=0 death=6 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=6 evolution=0 experience=0 family=0 fate=14 form=0 god=9 good=1 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=3 justic=2 knowledge=2 labor=0 language=0 law=2 liberty=0 life=2 logic=0 love=4 man=3 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=3 metaphysics=0 mind=2 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=1 particular=0 peace=0 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=6 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=28 sign=1 sin=0 slavery=0 soul=7 space=0 state=0 symbol=0 temperance=1 theology=0 time=0 truth=3 tryanny=3 universal=0 vice=0 virtue=0 war=1 wealth=4 will=1 wisdom=5 world=0 coefficient=240 sophocles-seven-2010: author=Sophocles title=Seven Plays words=94217 words=94217 fog=7 kincaid=4 flesch=81 angel=0 animal=0 aristocracy=0 art=6 astronomy=0 beauty=1 being=119 cause=2 chance=1 change=0 citizen=3 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=0 death=8 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=1 education=0 element=1 emotion=1 equality=0 eternity=3 evil=7 evolution=0 experience=1 family=0 fate=11 form=1 god=5 good=1 government=1 habit=1 happiness=2 history=0 honor=0 hypothesis=0 idea=0 imagination=1 immortality=0 induction=0 infinity=0 judgement=0 justic=2 knowledge=1 labor=0 language=0 law=3 liberty=1 life=4 logic=0 love=4 man=1 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=2 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=8 particular=0 peace=2 philosophy=1 physics=0 pleasure=1 poetry=2 principle=0 progress=0 prophecy=8 prudence=1 punishment=2 quality=0 quanity=0 reasoning=0 relation=0 religion=1 revolution=0 rhetoric=0 same=0 science=0 sense=28 sign=1 sin=5 slavery=0 soul=5 space=0 state=1 symbol=0 temperance=0 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=0 virtue=0 war=2 wealth=2 will=1 wisdom=4 world=1 coefficient=277 sophocles-trachiniae-1960: author=Sophocles title=Trachiniae words=12041 words=12041 fog=11 kincaid=9 flesch=70 angel=0 animal=0 aristocracy=0 art=7 astronomy=0 beauty=2 being=126 cause=1 chance=0 change=0 citizen=2 constitution=0 contingency=0 convention=0 cosmology=0 courage=1 custom=0 death=6 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=4 education=0 element=0 emotion=0 equality=0 eternity=0 evil=4 evolution=0 experience=0 family=0 fate=10 form=1 god=6 good=1 government=0 habit=0 happiness=3 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=1 knowledge=4 labor=0 language=0 law=0 liberty=0 life=2 logic=0 love=4 man=3 many=1 mathematics=0 matter=0 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=8 particular=0 peace=2 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=10 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=0 sign=0 sin=5 slavery=0 soul=4 space=5 state=0 symbol=0 temperance=0 theology=0 time=0 truth=5 tryanny=0 universal=0 vice=0 virtue=0 war=2 wealth=2 will=1 wisdom=0 world=1 coefficient=239 spinoza-ethics-1348: author=Spinoza title=Ethics words=90666 words=90666 fog=12 kincaid=9 flesch=59 angel=0 animal=3 aristocracy=0 art=0 astronomy=0 beauty=1 being=321 cause=10 chance=0 change=1 citizen=1 constitution=15 contingency= convention=0 cosmology=0 courage=2 custom=1 death=1 definition=24 democracy=0 desire=14 despotism=0 dialectic=0 duty=1 education=1 element=1 emotion=212 equality=0 eternity=28 evil=12 evolution=0 experience=4 family=0 fate=0 form=2 god=28 good=3 government=0 habit=1 happiness=1 history=0 honor=1 hypothesis=11 idea=103 imagination=18 immortality=0 induction=0 infinity=12 judgement=2 justic=1 knowledge=18 labor=0 language=0 law=3 liberty=0 life=1 logic=0 love=16 man=4 many=1 mathematics=1 matter=1 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=19 monarchy=0 nature=9 necessity=10 oligarchy=0 one=0 opinion=1 opposition=1 other=0 pain=23 particular=9 peace=0 philosophy=0 physics=0 pleasure=23 poetry=0 principle=1 progress=0 prophecy=0 prudence=2 punishment=0 quality=4 quanity=3 reasoning=4 relation=4 religion=3 revolution=0 rhetoric=0 same=2 science=0 sense=12 sign=1 sin=2 slavery=0 soul=1 space=1 state=2 symbol=0 temperance=1 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=4 virtue=10 war=0 wealth=1 will=1 wisdom=0 world=0 coefficient=1037 sterne-life-3941: author=Sterne title=Life And Opinions Of Tristram Shandy words=182015 words=182015 fog=20 kincaid=18 flesch=41 angel=2 animal=2 aristocracy=0 art=1 astronomy=0 beauty=1 being=144 cause=1 chance=1 change=1 citizen=0 constitution=1 contingency= convention=3 cosmology=0 courage=1 custom=1 death=2 definition=1 democracy=0 desire=1 despotism=0 dialectic=0 duty=1 education=2 element=1 emotion=1 equality=1 eternity=3 evil=2 evolution=0 experience=1 family=9 fate=2 form=1 god=3 good=2 government=3 habit=1 happiness=1 history=3 honor=0 hypothesis=8 idea=7 imagination=7 immortality=0 induction=0 infinity=1 judgement=3 justic=2 knowledge=2 labor=0 language=1 law=1 liberty=2 life=2 logic=1 love=3 man=2 many=1 mathematics=0 matter=2 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=2 monarchy=1 nature=2 necessity=1 oligarchy=0 one=0 opinion=4 opposition=2 other=0 pain=3 particular=3 peace=2 philosophy=2 physics=0 pleasure=2 poetry=0 principle=3 progress=1 prophecy=0 prudence=0 punishment=0 quality=0 quanity=1 reasoning=1 relation=1 religion=4 revolution=1 rhetoric=0 same=1 science=3 sense=24 sign=1 sin=3 slavery=0 soul=5 space=1 state=1 symbol=0 temperance=3 theology=1 time=0 truth=2 tryanny=0 universal=0 vice=1 virtue=1 war=2 wealth=0 will=0 wisdom=1 world=5 coefficient=337 swift-gullivers-2290: author=Swift title=Gulliver's Travels words=106664 words=106664 fog=19 kincaid=16 flesch=43 angel=0 animal=14 aristocracy=0 art=1 astronomy=2 beauty=1 being=180 cause=1 chance=1 change=0 citizen=0 constitution=1 contingency=0 convention=0 cosmology=0 courage=1 custom=5 death=2 definition=0 democracy=0 desire=6 despotism=0 dialectic=0 duty=1 education=5 element=0 emotion=1 equality=2 eternity=0 evil=2 evolution=0 experience=2 family=11 fate=1 form=1 god=0 good=2 government=6 habit=2 happiness=2 history=3 honor=0 hypothesis=0 idea=3 imagination=4 immortality=0 induction=0 infinity=0 judgement=2 justic=4 knowledge=2 labor=0 language=8 law=4 liberty=8 life=1 logic=0 love=1 man=1 many=1 mathematics=6 matter=1 mechanics=4 medicine=1 memory=2 metaphysics=0 mind=1 monarchy=0 nature=2 necessity=2 oligarchy=0 one=0 opinion=4 opposition=1 other=0 pain=2 particular=6 peace=1 philosophy=1 physics=0 pleasure=1 poetry=1 principle=1 progress=3 prophecy=0 prudence=2 punishment=4 quality=6 quanity=5 reasoning=2 relation=5 religion=3 revolution=2 rhetoric=0 same=1 science=2 sense=13 sign=6 sin=0 slavery=0 soul=0 space=2 state=1 symbol=0 temperance=2 theology=0 time=0 truth=2 tryanny=0 universal=0 vice=6 virtue=4 war=3 wealth=0 will=0 wisdom=2 world=2 coefficient=410 tacitus-annals-1338: author=Tacitus title=Annals words=158216 words=158216 fog=18 kincaid=15 flesch=41 angel=0 animal=0 aristocracy=1 art=1 astronomy=0 beauty=2 being=147 cause=1 chance=2 change=1 citizen=9 constitution=2 contingency= convention=0 cosmology=0 courage=4 custom=3 death=6 definition=0 democracy=0 desire=1 despotism=6 dialectic=0 duty=3 education=0 element=1 emotion=2 equality=3 eternity=0 evil=2 evolution=0 experience=2 family=10 fate=2 form=0 god=1 good=1 government=4 habit=1 happiness=0 history=2 honor=0 hypothesis=0 idea=1 imagination=1 immortality=0 induction=0 infinity=0 judgement=1 justic=1 knowledge=1 labor=0 language=2 law=4 liberty=2 life=2 logic=0 love=2 man=1 many=1 mathematics=0 matter=1 mechanics=0 medicine=0 memory=4 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=2 oligarchy=0 one=0 opinion=1 opposition=2 other=0 pain=0 particular=1 peace=5 philosophy=1 physics=0 pleasure=1 poetry=1 principle=1 progress=1 prophecy=0 prudence=1 punishment=10 quality=0 quanity=1 reasoning=0 relation=4 religion=1 revolution=4 rhetoric=0 same=1 science=1 sense=6 sign=1 sin=0 slavery=5 soul=0 space=2 state=2 symbol=0 temperance=5 theology=0 time=0 truth=1 tryanny=1 universal=0 vice=4 virtue=2 war=13 wealth=9 will=0 wisdom=1 world=0 coefficient=336 tacitus-histories-1687: author=Tacitus title=Histories words=115722 words=115722 fog=13 kincaid=9 flesch=54 angel=0 animal=1 aristocracy=1 art=1 astronomy=0 beauty=1 being=83 cause=2 chance=3 change=1 citizen=5 constitution=1 contingency=0 convention=0 cosmology=0 courage=6 custom=3 death=3 definition=0 democracy=0 desire=1 despotism=1 dialectic=0 duty=2 education=0 element=0 emotion=1 equality=1 eternity=1 evil=2 evolution=0 experience=1 family=7 fate=3 form=1 god=1 good=2 government=6 habit=1 happiness=1 history=4 honor=0 hypothesis=0 idea=2 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=1 labor=0 language=2 law=1 liberty=2 life=1 logic=0 love=0 man=1 many=0 mathematics=0 matter=1 mechanics=0 medicine=0 memory=3 metaphysics=0 mind=0 monarchy=1 nature=1 necessity=1 oligarchy=0 one=0 opinion=1 opposition=2 other=0 pain=0 particular=1 peace=9 philosophy=1 physics=0 pleasure=1 poetry=1 principle=0 progress=1 prophecy=2 prudence=2 punishment=5 quality=1 quanity=1 reasoning=0 relation=0 religion=1 revolution=3 rhetoric=2 same=0 science=0 sense=17 sign=2 sin=1 slavery=3 soul=0 space=1 state=1 symbol=1 temperance=0 theology=0 time=0 truth=1 tryanny=1 universal=0 vice=4 virtue=1 war=21 wealth=4 will=0 wisdom=0 world=1 coefficient=257 thucydides-history-4067: author=Thucydides title=History Of The Peloponnesian War words=207596 words=207596 fog=22 kincaid=18 flesch=34 angel=0 animal=0 aristocracy=1 art=0 astronomy=0 beauty=0 being=210 cause=1 chance=3 change=1 citizen=9 constitution=2 contingency= convention=4 cosmology=0 courage=4 custom=2 death=2 definition=0 democracy=13 desire=2 despotism=0 dialectic=0 duty=2 education=1 element=1 emotion=0 equality=3 eternity=0 evil=1 evolution=0 experience=2 family=2 fate=2 form=1 god=1 good=1 government=6 habit=2 happiness=0 history=4 honor=0 hypothesis=0 idea=5 imagination=1 immortality=0 induction=0 infinity=0 judgement=2 justic=2 knowledge=1 labor=0 language=1 law=2 liberty=2 life=0 logic=0 love=0 man=1 many=1 mathematics=0 matter=2 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=2 oligarchy=13 one=0 opinion=2 opposition=3 other=0 pain=0 particular=2 peace=6 philosophy=0 physics=0 pleasure=0 poetry=0 principle=1 progress=2 prophecy=0 prudence=0 punishment=4 quality=0 quanity=2 reasoning=0 relation=1 religion=0 revolution=5 rhetoric=0 same=1 science=1 sense=6 sign=1 sin=0 slavery=1 soul=0 space=2 state=2 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=2 universal=0 vice=0 virtue=0 war=25 wealth=1 will=0 wisdom=1 world=0 coefficient=392 tolstoy-war-1881: author=Tolstoy title=War And Peace words=562760 words=562760 fog=12 kincaid=9 flesch=62 angel=1 animal=4 aristocracy=0 art=0 astronomy=1 beauty=3 being=108 cause=1 chance=2 change=1 citizen=0 constitution=1 contingency=0 convention=1 cosmology=0 courage=1 custom=0 death=2 definition=3 democracy=0 desire=1 despotism=0 dialectic=0 duty=3 education=2 element=1 emotion=3 equality=1 eternity=1 evil=1 evolution=0 experience=1 family=6 fate=3 form=0 god=2 good=1 government=2 habit=1 happiness=6 history=6 honor=13 hypothesis=0 idea=3 imagination=4 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=1 labor=2 language=0 law=2 liberty=1 life=2 logic=1 love=5 man=2 many=0 mathematics=1 matter=1 mechanics=1 medicine=1 memory=2 metaphysics=1 mind=1 monarchy=0 nature=0 necessity=1 oligarchy=0 one=0 opinion=2 opposition=1 other=0 pain=2 particular=2 peace=3 philosophy=0 physics=2 pleasure=2 poetry=0 principle=0 progress=1 prophecy=0 prudence=0 punishment=2 quality=1 quanity=1 reasoning=1 relation=3 religion=1 revolution=2 rhetoric=0 same=1 science=2 sense=14 sign=2 sin=1 slavery=0 soul=2 space=2 state=1 symbol=0 temperance=0 theology=0 time=0 truth=1 tryanny=0 universal=0 vice=1 virtue=1 war=6 wealth=1 will=0 wisdom=0 world=1 coefficient=277 virgil-aeneid-1203: author=Virgil title=Aeneid words=101915 words=101915 fog=14 kincaid=11 flesch=60 angel=0 animal=0 aristocracy=0 art=2 astronomy=0 beauty=4 being=51 cause=0 chance=2 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=4 custom=0 death=7 definition=0 democracy=0 desire=2 despotism=0 dialectic=0 duty=1 education=0 element=0 emotion=0 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=2 fate=15 form=0 god=8 good=1 government=1 habit=0 happiness=0 history=1 honor=0 hypothesis=0 idea=0 imagination=0 immortality=2 induction=0 infinity=0 judgement=0 justic=1 knowledge=0 labor=0 language=0 law=1 liberty=0 life=1 logic=0 love=2 man=0 many=1 mathematics=0 matter=0 mechanics=0 medicine=0 memory=1 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=2 particular=0 peace=4 philosophy=0 physics=0 pleasure=0 poetry=1 principle=0 progress=0 prophecy=2 prudence=0 punishment=2 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=13 sign=2 sin=1 slavery=0 soul=4 space=5 state=1 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=0 war=13 wealth=1 will=0 wisdom=0 world=1 coefficient=165 virgil-eclogues-1444: author=Virgil title=Eclogues words=8434 words=8434 fog=10 kincaid=8 flesch=72 angel=0 animal=0 aristocracy=0 art=3 astronomy=0 beauty=0 being=64 cause=0 chance=3 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=0 death=2 definition=0 democracy=0 desire=0 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=0 equality=0 eternity=0 evil=2 evolution=0 experience=0 family=0 fate=0 form=1 god=9 good=0 government=0 habit=0 happiness=0 history=0 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=1 knowledge=0 labor=0 language=0 law=0 liberty=0 life=0 logic=0 love=17 man=0 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=4 metaphysics=0 mind=1 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=0 particular=0 peace=2 philosophy=0 physics=0 pleasure=1 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=19 sign=5 sin=0 slavery=0 soul=1 space=0 state=0 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=0 virtue=1 war=0 wealth=0 will=1 wisdom=0 world=2 coefficient=140 virgil-georgics-1440: author=Virgil title=Georgics words=24122 words=24122 fog=15 kincaid=13 flesch=56 angel=0 animal=0 aristocracy=0 art=1 astronomy=0 beauty=0 being=56 cause=0 chance=1 change=1 citizen=0 constitution=0 contingency=0 convention=0 cosmology=0 courage=0 custom=1 death=2 definition=0 democracy=0 desire=1 despotism=0 dialectic=0 duty=0 education=0 element=0 emotion=1 equality=0 eternity=0 evil=1 evolution=0 experience=0 family=0 fate=6 form=1 god=3 good=0 government=0 habit=0 happiness=0 history=1 honor=0 hypothesis=0 idea=0 imagination=0 immortality=0 induction=0 infinity=0 judgement=0 justic=0 knowledge=0 labor=0 language=0 law=3 liberty=0 life=1 logic=0 love=4 man=0 many=0 mathematics=0 matter=0 mechanics=0 medicine=0 memory=0 metaphysics=0 mind=0 monarchy=0 nature=0 necessity=0 oligarchy=0 one=0 opinion=0 opposition=0 other=0 pain=2 particular=1 peace=1 philosophy=0 physics=0 pleasure=0 poetry=0 principle=0 progress=0 prophecy=0 prudence=0 punishment=0 quality=0 quanity=0 reasoning=0 relation=0 religion=0 revolution=0 rhetoric=0 same=0 science=0 sense=0 sign=7 sin=0 slavery=0 soul=1 space=5 state=1 symbol=0 temperance=0 theology=0 time=0 truth=0 tryanny=0 universal=0 vice=1 virtue=0 war=3 wealth=3 will=0 wisdom=0 world=1 coefficient=110