Title: | Textual Statistics for the Quantitative Analysis of Textual Data |
---|---|
Description: | Textual statistics functions formerly in the 'quanteda' package. Textual statistics for characterizing and comparing textual data. Includes functions for measuring term and document frequency, the co-occurrence of words, similarity and distance between features and documents, feature entropy, keyword occurrence, readability, and lexical diversity. These functions extend the 'quanteda' package and are specially designed for sparse textual data. |
Authors: | Kenneth Benoit [cre, aut, cph] , Kohei Watanabe [aut] , Haiyan Wang [aut] , Jiong Wei Lua [aut], Jouni Kuha [aut] , European Research Council [fnd] (ERC-2011-StG 283794-QUANTESS) |
Maintainer: | Kenneth Benoit <[email protected]> |
License: | GPL-3 |
Version: | 0.97.3 |
Built: | 2024-11-03 05:21:41 UTC |
Source: | https://github.com/quanteda/quanteda.textstats |
data_char_wordlists
provides word lists used in some readability indexes;
it is a named list of character vectors where each list element
corresponds to a different readability index.
data_char_wordlists
data_char_wordlists
A list of length two:
DaleChall
The long Dale-Chall list of 3,000 familiar (English) words needed to compute the Dale-Chall Readability Formula.
Spache
The revised Spache word list (see Klare 1975, 73; Spache 1974) needed to compute the Spache Revised Formula of readability (Spache 1953).
Chall, J.S., & Dale, E. (1995). Readability Revisited: The New Dale-Chall Readability Formula. Brookline Books.
Dale, E. & Chall, J.S. (1948). A Formula for Predicting Readability. Educational Research Bulletin, 27(1): 11–20.
Dale, E. & Chall, J.S. (1948). A Formula for Predicting Readability: Instructions. Educational Research Bulletin, 27(2): 37–54.
Klare, G.R. (1975). Assessing Readability. Reading Research Quarterly 10(1), 62–102.
Spache, G. (1953). A New Readability Formula for Primary-Grade Reading Materials. The Elementary School Journal, 53, 410–413.
Spache, G. (1974). Good reading for poor readers. (Rvd. 9th Ed.) Champaign, Illinois: Garrard, 1974.
Identify and score multi-word expressions, or adjacent fixed-length collocations, from text.
textstat_collocations( x, method = "lambda", size = 2, min_count = 2, smoothing = 0.5, tolower = TRUE, ... )
textstat_collocations( x, method = "lambda", size = 2, min_count = 2, smoothing = 0.5, tolower = TRUE, ... )
x |
a character, corpus, or
tokens object whose collocations will be scored. The
tokens object should include punctuation, and if any words have been
removed, these should have been removed with |
method |
association measure for detecting collocations. Currently this
is limited to |
size |
integer; the length of the collocations to be scored |
min_count |
numeric; minimum frequency of collocations that will be scored |
smoothing |
numeric; a smoothing parameter added to the observed counts (default is 0.5) |
tolower |
logical; if |
... |
additional arguments passed to tokens() |
Documents are grouped for the purposes of scoring, but collocations will not
span sentences. If x
is a tokens object and some tokens
have been removed, this should be done using [tokens_remove](x, pattern, padding = TRUE)
so that counts will still be accurate, but the pads will
prevent those collocations from being scored.
The lambda
computed for a size = -word target multi-word expression
the coefficient for the
-way interaction parameter in the saturated
log-linear model fitted to the counts of the terms forming the set of
eligible multi-word expressions. This is the same as the "lambda" computed in
Blaheta and Johnson's (2001), where all multi-word expressions are considered
(rather than just verbs, as in that paper). The
z
is the Wald
-statistic computed as the quotient of
lambda
and the Wald statistic
for lambda
as described below.
In detail:
Consider a -word target expression
, and let
be any
-word expression. Define a comparison function
such that the
th element of
is 1 if the
th word in
is equal to the
th word in
, and 0
otherwise. Let
,
, be the possible values of
, with
. Consider the set of
across all expressions
in a corpus of text, and let
, for
,
denote the number of the
which equal
, plus the
smoothing constant
smoothing
. The are the counts in a
contingency table whose dimensions are defined by the
.
: The
-way interaction parameter in the saturated
loglinear model fitted to the
. It can be calculated as
where is the number of the elements of
which are
equal to 1.
Wald test -statistic
is calculated as:
textstat_collocations
returns a data.frame of collocations and
their scores and statistics. This consists of the collocations, their
counts, length, and and
statistics. When
size
is a
vector, then count_nested
counts the lower-order collocations that occur
within a higher-order collocation (but this does not affect the
statistics).
Kenneth Benoit, Jouni Kuha, Haiyan Wang, and Kohei Watanabe
Blaheta, D. & Johnson, M. (2001). Unsupervised learning of multi-word verbs. Presented at the ACLEACL Workshop on the Computational Extraction, Analysis and Exploitation of Collocations.
library("quanteda") corp <- data_corpus_inaugural[1:2] head(cols <- textstat_collocations(corp, size = 2, min_count = 2), 10) head(cols <- textstat_collocations(corp, size = 3, min_count = 2), 10) # extracting multi-part proper nouns (capitalized terms) toks1 <- tokens(data_corpus_inaugural) toks2 <- tokens_remove(toks1, pattern = stopwords("english"), padding = TRUE) toks3 <- tokens_select(toks2, pattern = "^([A-Z][a-z\\-]{2,})", valuetype = "regex", case_insensitive = FALSE, padding = TRUE) tstat <- textstat_collocations(toks3, size = 3, tolower = FALSE) head(tstat, 10) # vectorized size txt <- c(". . . . a b c . . a b c . . . c d e", "a b . . a b . . a b . . a b . a b", "b c d . . b c . b c . . . b c") textstat_collocations(txt, size = 2:3) # compounding tokens from collocations toks <- tokens("This is the European Union.") colls <- tokens("The new European Union is not the old European Union.") %>% textstat_collocations(size = 2, min_count = 1, tolower = FALSE) colls tokens_compound(toks, colls, case_insensitive = FALSE) #' # from a collocations object (coll <- textstat_collocations(tokens("a b c a b d e b d a b"))) phrase(coll)
library("quanteda") corp <- data_corpus_inaugural[1:2] head(cols <- textstat_collocations(corp, size = 2, min_count = 2), 10) head(cols <- textstat_collocations(corp, size = 3, min_count = 2), 10) # extracting multi-part proper nouns (capitalized terms) toks1 <- tokens(data_corpus_inaugural) toks2 <- tokens_remove(toks1, pattern = stopwords("english"), padding = TRUE) toks3 <- tokens_select(toks2, pattern = "^([A-Z][a-z\\-]{2,})", valuetype = "regex", case_insensitive = FALSE, padding = TRUE) tstat <- textstat_collocations(toks3, size = 3, tolower = FALSE) head(tstat, 10) # vectorized size txt <- c(". . . . a b c . . a b c . . . c d e", "a b . . a b . . a b . . a b . a b", "b c d . . b c . b c . . . b c") textstat_collocations(txt, size = 2:3) # compounding tokens from collocations toks <- tokens("This is the European Union.") colls <- tokens("The new European Union is not the old European Union.") %>% textstat_collocations(size = 2, min_count = 1, tolower = FALSE) colls tokens_compound(toks, colls, case_insensitive = FALSE) #' # from a collocations object (coll <- textstat_collocations(tokens("a b c a b d e b d a b"))) phrase(coll)
Compute entropies of documents or features
textstat_entropy(x, margin = c("documents", "features"), base = 2)
textstat_entropy(x, margin = c("documents", "features"), base = 2)
x |
a |
margin |
character indicating for which margin to compute entropy |
base |
base for logarithm function |
a data.frame of entropies for the given document or feature
library("quanteda") textstat_entropy(data_dfm_lbgexample) textstat_entropy(data_dfm_lbgexample, "features")
library("quanteda") textstat_entropy(data_dfm_lbgexample) textstat_entropy(data_dfm_lbgexample, "features")
Produces counts and document frequencies summaries of the features in a dfm, optionally grouped by a docvars variable or other supplied grouping variable.
textstat_frequency( x, n = NULL, groups = NULL, ties_method = c("min", "average", "first", "random", "max", "dense"), ... )
textstat_frequency( x, n = NULL, groups = NULL, ties_method = c("min", "average", "first", "random", "max", "dense"), ... )
x |
a dfm object |
n |
(optional) integer specifying the top |
groups |
grouping variable for sampling, equal in length to the number
of documents. This will be evaluated in the docvars data.frame, so that
docvars may be referred to by name without quoting. This also changes
previous behaviours for |
ties_method |
character string specifying how ties are treated. See
|
... |
additional arguments passed to dfm_group().
This can be useful in passing |
a data.frame containing the following variables:
feature
(character) the feature
frequency
count of the feature
rank
rank of the feature, where 1 indicates the greatest frequency
docfreq
document frequency of the feature, as a count (the number of documents in which this feature occurred at least once)
docfreq
document frequency of the feature, as a count
group
(only if groups
is specified) the label of the group.
If the features have been grouped, then all counts, ranks, and document
frequencies are within group. If groups is not specified, the group
column is omitted from the returned data.frame.
textstat_frequency
returns a data.frame of features and
their term and document frequencies within groups.
library("quanteda") set.seed(20) dfmat1 <- dfm(tokens(c("a a b b c d", "a d d d", "a a a"))) textstat_frequency(dfmat1) textstat_frequency(dfmat1, groups = c("one", "two", "one"), ties_method = "first") textstat_frequency(dfmat1, groups = c("one", "two", "one"), ties_method = "average") dfmat2 <- corpus_subset(data_corpus_inaugural, President == "Obama") %>% tokens(remove_punct = TRUE) %>% tokens_remove(stopwords("en")) %>% dfm() tstat1 <- textstat_frequency(dfmat2) head(tstat1, 10) dfmat3 <- head(data_corpus_inaugural) %>% tokens(remove_punct = TRUE) %>% tokens_remove(stopwords("en")) %>% dfm() textstat_frequency(dfmat3, n = 2, groups = President) ## Not run: # plot 20 most frequent words library("ggplot2") ggplot(tstat1[1:20, ], aes(x = reorder(feature, frequency), y = frequency)) + geom_point() + coord_flip() + labs(x = NULL, y = "Frequency") # plot relative frequencies by group dfmat3 <- data_corpus_inaugural %>% corpus_subset(Year > 2000) %>% tokens(remove_punct = TRUE) %>% tokens_remove(stopwords("en")) %>% dfm() %>% dfm_group(groups = President) %>% dfm_weight(scheme = "prop") # calculate relative frequency by president tstat2 <- textstat_frequency(dfmat3, n = 10, groups = President) # plot frequencies ggplot(data = tstat2, aes(x = factor(nrow(tstat2):1), y = frequency)) + geom_point() + facet_wrap(~ group, scales = "free") + coord_flip() + scale_x_discrete(breaks = nrow(tstat2):1, labels = tstat2$feature) + labs(x = NULL, y = "Relative frequency") ## End(Not run)
library("quanteda") set.seed(20) dfmat1 <- dfm(tokens(c("a a b b c d", "a d d d", "a a a"))) textstat_frequency(dfmat1) textstat_frequency(dfmat1, groups = c("one", "two", "one"), ties_method = "first") textstat_frequency(dfmat1, groups = c("one", "two", "one"), ties_method = "average") dfmat2 <- corpus_subset(data_corpus_inaugural, President == "Obama") %>% tokens(remove_punct = TRUE) %>% tokens_remove(stopwords("en")) %>% dfm() tstat1 <- textstat_frequency(dfmat2) head(tstat1, 10) dfmat3 <- head(data_corpus_inaugural) %>% tokens(remove_punct = TRUE) %>% tokens_remove(stopwords("en")) %>% dfm() textstat_frequency(dfmat3, n = 2, groups = President) ## Not run: # plot 20 most frequent words library("ggplot2") ggplot(tstat1[1:20, ], aes(x = reorder(feature, frequency), y = frequency)) + geom_point() + coord_flip() + labs(x = NULL, y = "Frequency") # plot relative frequencies by group dfmat3 <- data_corpus_inaugural %>% corpus_subset(Year > 2000) %>% tokens(remove_punct = TRUE) %>% tokens_remove(stopwords("en")) %>% dfm() %>% dfm_group(groups = President) %>% dfm_weight(scheme = "prop") # calculate relative frequency by president tstat2 <- textstat_frequency(dfmat3, n = 10, groups = President) # plot frequencies ggplot(data = tstat2, aes(x = factor(nrow(tstat2):1), y = frequency)) + geom_point() + facet_wrap(~ group, scales = "free") + coord_flip() + scale_x_discrete(breaks = nrow(tstat2):1, labels = tstat2$feature) + labs(x = NULL, y = "Relative frequency") ## End(Not run)
Calculate "keyness", a score for features that occur differentially across different categories. Here, the categories are defined by reference to a "target" document index in the dfm, with the reference group consisting of all other documents.
textstat_keyness( x, target = 1L, measure = c("chi2", "exact", "lr", "pmi"), sort = TRUE, correction = c("default", "yates", "williams", "none"), ... )
textstat_keyness( x, target = 1L, measure = c("chi2", "exact", "lr", "pmi"), sort = TRUE, correction = c("default", "yates", "williams", "none"), ... )
x |
a dfm containing the features to be examined for keyness |
target |
the document index (numeric, character or logical) identifying the document forming the "target" for computing keyness; all other documents' feature frequencies will be combined for use as a reference |
measure |
(signed) association measure to be used for computing keyness.
Currently available: |
sort |
logical; if |
correction |
if |
... |
not used |
a data.frame of computed statistics and associated p-values, where
the features scored name each row, and the number of occurrences for both
the target and reference groups. For measure = "chi2"
this is the
chi-squared value, signed positively if the observed value in the target
exceeds its expected value; for measure = "exact"
this is the
estimate of the odds ratio; for measure = "lr"
this is the
likelihood ratio statistic; for
"pmi"
this is the pointwise
mutual information statistics.
textstat_keyness
returns a data.frame of features and
their keyness scores and frequency counts.
Bondi, M. & Scott, M. (eds) (2010). Keyness in Texts. Amsterdam, Philadelphia: John Benjamins.
Stubbs, M. (2010). Three Concepts of Keywords. In Keyness in Texts, Bondi, M. & Scott, M. (eds): 1–42. Amsterdam, Philadelphia: John Benjamins.
Scott, M. & Tribble, C. (2006). Textual Patterns: Keyword and Corpus Analysis in Language Education. Amsterdam: Benjamins: 55.
Dunning, T. (1993). Accurate Methods for the Statistics of Surprise and Coincidence. Computational Linguistics, 19(1): 61–74.
library("quanteda") # compare pre- v. post-war terms using grouping period <- ifelse(docvars(data_corpus_inaugural, "Year") < 1945, "pre-war", "post-war") dfmat1 <- tokens(data_corpus_inaugural) %>% dfm() %>% dfm_group(groups = period) head(dfmat1) # make sure 'post-war' is in the first row head(tstat1 <- textstat_keyness(dfmat1), 10) tail(tstat1, 10) # compare pre- v. post-war terms using logical vector dfmat2 <- dfm(tokens(data_corpus_inaugural)) head(textstat_keyness(dfmat2, docvars(data_corpus_inaugural, "Year") >= 1945), 10) # compare Trump 2017 to other post-war preseidents dfmat3 <- dfm(tokens(corpus_subset(data_corpus_inaugural, period == "post-war"))) head(textstat_keyness(dfmat3, target = "2017-Trump"), 10) # using the likelihood ratio method head(textstat_keyness(dfm_smooth(dfmat3), measure = "lr", target = "2017-Trump"), 10)
library("quanteda") # compare pre- v. post-war terms using grouping period <- ifelse(docvars(data_corpus_inaugural, "Year") < 1945, "pre-war", "post-war") dfmat1 <- tokens(data_corpus_inaugural) %>% dfm() %>% dfm_group(groups = period) head(dfmat1) # make sure 'post-war' is in the first row head(tstat1 <- textstat_keyness(dfmat1), 10) tail(tstat1, 10) # compare pre- v. post-war terms using logical vector dfmat2 <- dfm(tokens(data_corpus_inaugural)) head(textstat_keyness(dfmat2, docvars(data_corpus_inaugural, "Year") >= 1945), 10) # compare Trump 2017 to other post-war preseidents dfmat3 <- dfm(tokens(corpus_subset(data_corpus_inaugural, period == "post-war"))) head(textstat_keyness(dfmat3, target = "2017-Trump"), 10) # using the likelihood ratio method head(textstat_keyness(dfm_smooth(dfmat3), measure = "lr", target = "2017-Trump"), 10)
Calculate the lexical diversity of text(s).
textstat_lexdiv( x, measure = c("TTR", "C", "R", "CTTR", "U", "S", "K", "I", "D", "Vm", "Maas", "MATTR", "MSTTR", "all"), remove_numbers = TRUE, remove_punct = TRUE, remove_symbols = TRUE, remove_hyphens = FALSE, log.base = 10, MATTR_window = 100L, MSTTR_segment = 100L, ... )
textstat_lexdiv( x, measure = c("TTR", "C", "R", "CTTR", "U", "S", "K", "I", "D", "Vm", "Maas", "MATTR", "MSTTR", "all"), remove_numbers = TRUE, remove_punct = TRUE, remove_symbols = TRUE, remove_hyphens = FALSE, log.base = 10, MATTR_window = 100L, MSTTR_segment = 100L, ... )
x |
an dfm or tokens input object for whose documents lexical diversity will be computed |
measure |
a character vector defining the measure to compute |
remove_numbers |
logical; if |
remove_punct |
logical; if |
remove_symbols |
logical; if |
remove_hyphens |
logical; if |
log.base |
a numeric value defining the base of the logarithm (for measures using logarithms) |
MATTR_window |
a numeric value defining the size of the moving window for computation of the Moving-Average Type-Token Ratio (Covington & McFall, 2010) |
MSTTR_segment |
a numeric value defining the size of the each segment for the computation of the the Mean Segmental Type-Token Ratio (Johnson, 1944) |
... |
not used directly |
textstat_lexdiv
calculates the lexical diversity of documents
using a variety of indices.
In the following formulas, refers to the total number of
tokens,
to the number of types, and
to the numbers
of types occurring
times in a sample of length
.
"TTR"
:The ordinary Type-Token Ratio:
"C"
:Herdan's C (Herdan, 1960, as cited in Tweedie & Baayen, 1998; sometimes referred to as LogTTR):
"R"
:Guiraud's Root TTR (Guiraud, 1954, as cited in Tweedie & Baayen, 1998):
"CTTR"
:Carroll's Corrected TTR:
"U"
:Dugast's Uber Index (Dugast, 1978, as cited in Tweedie & Baayen, 1998):
"S"
:Summer's index:
"K"
:Yule's K (Yule, 1944, as presented in Tweedie & Baayen, 1998, Eq. 16) is calculated by:
"I"
:Yule's I (Yule, 1944) is calculated by:
"D"
:Simpson's D (Simpson 1949, as presented in Tweedie & Baayen, 1998, Eq. 17) is calculated by:
"Vm"
:Herdan's (Herdan 1955, as presented in
Tweedie & Baayen, 1998, Eq. 18) is calculated by:
"Maas"
:Maas' indices (,
&
):
The measure was derived from a formula by
Mueller (1969, as cited in Maas, 1972). is equivalent
to
, only with
as the base for the logarithms. Also
calculated are
,
(both not the same as before) and
as measures of relative vocabulary growth while the text
progresses. To calculate these measures, the first half of the text and the
full text will be examined (see Maas, 1972, p. 67 ff. for details). Note:
for the current method (for a dfm) there is no computation on separate
halves of the text.
"MATTR"
:The Moving-Average Type-Token Ratio (Covington & McFall, 2010) calculates TTRs for a moving window of tokens from the first to the last token, computing a TTR for each window. The MATTR is the mean of the TTRs of each window.
"MSTTR"
:Mean Segmental Type-Token Ratio (sometimes referred to as Split TTR) splits the tokens into segments of the given size, TTR for each segment is calculated and the mean of these values returned. When this value is < 1.0, it splits the tokens into equal, non-overlapping sections of that size. When this value is > 1, it defines the segments as windows of that size. Tokens at the end which do not make a full segment are ignored.
A data.frame of documents and their lexical diversity scores.
Kenneth Benoit and Jiong Wei Lua. Many of the formulas have been reimplemented from functions written by Meik Michalke in the koRpus package.
Covington, M.A. & McFall, J.D. (2010). Cutting the Gordian Knot: The Moving-Average Type-Token Ratio (MATTR) Journal of Quantitative Linguistics, 17(2), 94–100. doi:10.1080/09296171003643098
Herdan, G. (1955). A New Derivation and Interpretation of Yule's 'Characteristic' K. Zeitschrift für angewandte Mathematik und Physik, 6(4): 332–334.
Maas, H.D. (1972). Über den Zusammenhang zwischen Wortschatzumfang und Länge eines Textes. Zeitschrift für Literaturwissenschaft und Linguistik, 2(8), 73–96.
McCarthy, P.M. & Jarvis, S. (2007). vocd: A Theoretical and Empirical Evaluation. Language Testing, 24(4), 459–488. doi:10.1177/0265532207080767
McCarthy, P.M. & Jarvis, S. (2010). MTLD, vocd-D, and HD-D: A Validation Study of Sophisticated Approaches to Lexical Diversity Assessment. Behaviour Research Methods, 42(2), 381–392.
Michalke, M. (2014). koRpus: An R Package for Text Analysis (Version 0.05-4). Available from https://reaktanz.de/?c=hacking&s=koRpus.
Simpson, E.H. (1949). Measurement of Diversity. Nature, 163: 688. doi:10.1038/163688a0
Tweedie. F.J. and Baayen, R.H. (1998). How Variable May a Constant Be? Measures of Lexical Richness in Perspective. Computers and the Humanities, 32(5), 323–352. doi:10.1023/A:1001749303137
Yule, G. U. (1944) The Statistical Study of Literary Vocabulary. Cambridge: Cambridge University Press.
library("quanteda") txt <- c("Anyway, like I was sayin', shrimp is the fruit of the sea. You can barbecue it, boil it, broil it, bake it, saute it.", "There's shrimp-kabobs, shrimp creole, shrimp gumbo. Pan fried, deep fried, stir-fried. There's pineapple shrimp, lemon shrimp, coconut shrimp, pepper shrimp, shrimp soup, shrimp stew, shrimp salad, shrimp and potatoes, shrimp burger, shrimp sandwich.") tokens(txt) %>% textstat_lexdiv(measure = c("TTR", "CTTR", "K")) dfm(tokens(txt)) %>% textstat_lexdiv(measure = c("TTR", "CTTR", "K")) toks <- tokens(corpus_subset(data_corpus_inaugural, Year > 2000)) textstat_lexdiv(toks, c("CTTR", "TTR", "MATTR"), MATTR_window = 100)
library("quanteda") txt <- c("Anyway, like I was sayin', shrimp is the fruit of the sea. You can barbecue it, boil it, broil it, bake it, saute it.", "There's shrimp-kabobs, shrimp creole, shrimp gumbo. Pan fried, deep fried, stir-fried. There's pineapple shrimp, lemon shrimp, coconut shrimp, pepper shrimp, shrimp soup, shrimp stew, shrimp salad, shrimp and potatoes, shrimp burger, shrimp sandwich.") tokens(txt) %>% textstat_lexdiv(measure = c("TTR", "CTTR", "K")) dfm(tokens(txt)) %>% textstat_lexdiv(measure = c("TTR", "CTTR", "K")) toks <- tokens(corpus_subset(data_corpus_inaugural, Year > 2000)) textstat_lexdiv(toks, c("CTTR", "TTR", "MATTR"), MATTR_window = 100)
Calculate the readability of text(s) using one of a variety of computed indexes.
textstat_readability( x, measure = "Flesch", remove_hyphens = TRUE, min_sentence_length = 1, max_sentence_length = 10000, intermediate = FALSE, ... )
textstat_readability( x, measure = "Flesch", remove_hyphens = TRUE, min_sentence_length = 1, max_sentence_length = 10000, intermediate = FALSE, ... )
x |
a character or corpus object containing the texts |
measure |
character vector defining the readability measure to calculate. Matches are case-insensitive. See other valid measures under Details. |
remove_hyphens |
if |
min_sentence_length , max_sentence_length
|
set the minimum and maximum sentence lengths (in tokens, excluding punctuation) to include in the computation of readability. This makes it easy to exclude "sentences" that may not really be sentences, such as section titles, table elements, and other cruft that might be in the texts following conversion. For finer-grained control, consider filtering sentences prior first, including through pattern-matching, using corpus_trim(). |
intermediate |
if |
... |
not used |
The following readability formulas have been implemented, where
Nw = = number of words
Nc = = number of characters
Nst = = number of sentences
Nsy = = number of syllables
Nwf = = number of words matching the Dale-Chall List
of 3000 "familiar words"
ASL = Average Sentence Length: number of words / number of sentences
AWL = Average Word Length: number of characters / number of words
AFW = Average Familiar Words: count of words matching the Dale-Chall list of 3000 "familiar words" / number of all words
Nwd = = number of "difficult" words not matching the
Dale-Chall list of "familiar" words
"ARI"
:Automated Readability Index (Senter and Smith 1967)
"ARI.Simple"
:A simplified version of Senter and Smith's (1967) Automated Readability Index.
"Bormuth.MC"
:Bormuth's (1969) Mean Cloze Formula.
"Bormuth.GP"
:Bormuth's (1969) Grade Placement score.
where is the Bormuth Mean Cloze Formula as in
"Bormuth"
above, and is the Cloze Criterion Score (Bormuth,
1968).
"Coleman"
:Coleman's (1971) Readability Formula 1.
where = Nwsy1 = the number of one-syllable words. The
scaling by 100 in this and the other Coleman-derived measures arises
because the Coleman measures are calculated on a per 100 words basis.
"Coleman.C2"
:Coleman's (1971) Readability Formula 2.
"Coleman.Liau.ECP"
:Coleman-Liau Estimated Cloze Percent (ECP) (Coleman and Liau 1975).
"Coleman.Liau.grade"
:Coleman-Liau Grade Level (Coleman and Liau 1975).
"Coleman.Liau.short"
:Coleman-Liau Index (Coleman and Liau 1975).
"Dale.Chall"
:The New Dale-Chall Readability formula (Chall and Dale 1995).
"Dale.Chall.Old"
:The original Dale-Chall Readability formula (Dale and Chall (1948).
The additional constant 3.6365 is only added if (Nwd / Nw) > 0.05.
"Dale.Chall.PSK"
:The Powers-Sumner-Kearl Variation of the Dale and Chall Readability formula (Powers, Sumner and Kearl, 1958).
"Danielson.Bryan"
:Danielson-Bryan's (1963) Readability Measure 1.
where = Nblank = the number of blanks.
"Danielson.Bryan2"
:Danielson-Bryan's (1963) Readability Measure 2.
where = Nblank = the number of blanks.
"Dickes.Steiwer"
:Dickes-Steiwer Index (Dicks and Steiwer 1977).
where TTR is the Type-Token Ratio (see textstat_lexdiv()
)
"DRP"
:Degrees of Reading Power.
where Bormuth.MC refers to Bormuth's (1969) Mean Cloze Formula (documented above)
"ELF"
:Easy Listening Formula (Fang 1966):
where = Nwmin2sy = the number of words with 2 syllables or more.
"Farr.Jenkins.Paterson"
:Farr-Jenkins-Paterson's Simplification of Flesch's Reading Ease Score (Farr, Jenkins and Paterson 1951).
where = Nwsy1 = the number of one-syllable words.
"Flesch"
:Flesch's Reading Ease Score (Flesch 1948).
"Flesch.PSK"
:The Powers-Sumner-Kearl's Variation of Flesch Reading Ease Score (Powers, Sumner and Kearl, 1958).
"Flesch.Kincaid"
:Flesch-Kincaid Readability Score (Flesch and Kincaid 1975).
"FOG"
:Gunning's Fog Index (Gunning 1952).
where = Nwmin3sy = the number of words with 3-syllables or more.
The scaling by 100 arises because the original FOG index is based on
just a sample of 100 words)
"FOG.PSK"
:The Powers-Sumner-Kearl Variation of Gunning's Fog Index (Powers, Sumner and Kearl, 1958).
where = Nwmin3sy = the number of words with 3-syllables or more.
The scaling by 100 arises because the original FOG index is based on
just a sample of 100 words)
"FOG.NRI"
:The Navy's Adaptation of Gunning's Fog Index (Kincaid, Fishburne, Rogers and Chissom 1975).
where = Nwless3sy = the number of words with less than 3 syllables, and
= Nw3sy = the number of 3-syllable words. The scaling by 100
arises because the original FOG index is based on just a sample of 100 words)
"FORCAST"
:FORCAST (Simplified Version of FORCAST.RGL) (Caylor and Sticht 1973).
where = Nwsy1 = the number of one-syllable words. The scaling by 150
arises because the original FORCAST index is based on just a sample of 150 words.
"FORCAST.RGL"
:FORCAST.RGL (Caylor and Sticht 1973).
where = Nwsy1 = the number of one-syllable words. The scaling by 150 arises
because the original FORCAST index is based on just a sample of 150 words.
"Fucks"
:Fucks' (1955) Stilcharakteristik (Style Characteristic).
"Linsear.Write"
:Linsear Write (Klare 1975).
where = Nwless3sy = the number of words with less than 3 syllables, and
= Nwmin3sy = the number of words with 3-syllables or more. The scaling
by 100 arises because the original Linsear.Write measure is based on just a sample of 100 words)
"LIW"
:Björnsson's (1968) Läsbarhetsindex (For Swedish Texts).
where = Nwmin7sy = the number of words with 7-syllables or more. The scaling
by 100 arises because the Läsbarhetsindex index is based on just a sample of 100 words)
"nWS"
:Neue Wiener Sachtextformeln 1 (Bamberger and Vanecek 1984).
where = Nwmin3sy = the number of words with 3 syllables or more,
= Nwmin6char = the number of words with 6 characters or more, and
= Nwsy1 = the number of one-syllable words.
"nWS.2"
:Neue Wiener Sachtextformeln 2 (Bamberger and Vanecek 1984).
where = Nwmin3sy = the number of words with 3 syllables or more, and
= Nwmin6char = the number of words with 6 characters or more.
"nWS.3"
:Neue Wiener Sachtextformeln 3 (Bamberger and Vanecek 1984).
where = Nwmin3sy = the number of words with 3 syllables or more.
"nWS.4"
:Neue Wiener Sachtextformeln 4 (Bamberger and Vanecek 1984).
where = Nwmin3sy = the number of words with 3 syllables or more.
"RIX"
:Anderson's (1983) Readability Index.
where = Nwmin7sy = the number of words with 7-syllables or more.
"Scrabble"
:Scrabble Measure.
. Scrabble values are for English. There is no reference for this, as we created it experimentally. It's not part of any accepted readability index!
"SMOG"
:Simple Measure of Gobbledygook (SMOG) (McLaughlin 1969).
where = Nwmin3sy = the number of words with 3 syllables or more.
This measure is regression equation D in McLaughlin's original paper.
"SMOG.C"
:SMOG (Regression Equation C) (McLaughlin's 1969)
where = Nwmin3sy = the number of words with 3 syllables or more.
This measure is regression equation C in McLaughlin's original paper.
"SMOG.simple"
:Simplified Version of McLaughlin's (1969) SMOG Measure.
"SMOG.de"
:Adaptation of McLaughlin's (1969) SMOG Measure for German Texts.
"Spache"
:Spache's (1952) Readability Measure.
where = Nwnotinspache = number of unique words not in the Spache word list.
"Spache.old"
:Spache's (1952) Readability Measure (Old).
where = Nwnotinspache = number of unique words not in the Spache word list.
"Strain"
:Strain Index (Solomon 2006).
The scaling by 3 arises because the original Strain index is based on just the first 3 sentences.
"Traenkle.Bailer"
:Tränkle & Bailer's (1984) Readability Measure 1.
where = Nprep = the number of prepositions. The scaling by 100 arises because the original
Tränkle & Bailer index is based on just a sample of 100 words.
"Traenkle.Bailer2"
:Tränkle & Bailer's (1984) Readability Measure 2.
where = Nprep = the number of prepositions,
= Nconj = the number of conjunctions,
The scaling by 100 arises because the original Tränkle & Bailer index is based on
just a sample of 100 words)
"Wheeler.Smith"
:Wheeler & Smith's (1954) Readability Measure.
where = Nwmin2sy = the number of words with 2 syllables or more.
"meanSentenceLength"
:Average Sentence Length (ASL).
"meanWordSyllables"
:Average Word Syllables (AWL).
textstat_readability
returns a data.frame of documents and
their readability scores.
Kenneth Benoit, re-engineered from Meik Michalke's koRpus package.
Anderson, J. (1983). Lix and rix: Variations on a little-known readability
index. Journal of Reading, 26(6),
490–496. https://www.jstor.org/stable/40031755
Bamberger, R. & Vanecek, E. (1984). Lesen-Verstehen-Lernen-Schreiben. Wien: Jugend und Volk.
Björnsson, C. H. (1968). Läsbarhet. Stockholm: Liber.
Bormuth, J.R. (1969). Development of Readability Analysis.
Bormuth, J.R. (1968). Cloze test readability: Criterion reference
scores. Journal of educational
measurement, 5(3), 189–196. https://www.jstor.org/stable/1433978
Caylor, J.S. (1973). Methodologies for Determining Reading Requirements of
Military Occupational Specialities. https://eric.ed.gov/?id=ED074343
Caylor, J.S. & Sticht, T.G. (1973). Development of a Simple Readability
Index for Job Reading Material
https://archive.org/details/ERIC_ED076707
Coleman, E.B. (1971). Developing a technology of written instruction: Some determiners of the complexity of prose. Verbal learning research and the technology of written instruction, 155–204.
Coleman, M. & Liau, T.L. (1975). A Computer Readability Formula Designed for Machine Scoring. Journal of Applied Psychology, 60(2), 283. doi:10.1037/h0076540
Dale, E. and Chall, J.S. (1948). A Formula for Predicting Readability:
Instructions. Educational Research
Bulletin, 37-54. https://www.jstor.org/stable/1473169
Chall, J.S. and Dale, E. (1995). Readability Revisited: The New Dale-Chall Readability Formula. Brookline Books.
Dickes, P. & Steiwer, L. (1977). Ausarbeitung von Lesbarkeitsformeln für die Deutsche Sprache. Zeitschrift für Entwicklungspsychologie und Pädagogische Psychologie 9(1), 20–28.
Danielson, W.A., & Bryan, S.D. (1963). Computer Automation of Two Readability Formulas. Journalism Quarterly, 40(2), 201–206. doi:10.1177/107769906304000207
DuBay, W.H. (2004). The Principles of Readability.
Fang, I. E. (1966). The "Easy listening formula". Journal of Broadcasting & Electronic Media, 11(1), 63–68. doi:10.1080/08838156609363529
Farr, J. N., Jenkins, J.J., & Paterson, D.G. (1951). Simplification of Flesch Reading Ease Formula. Journal of Applied Psychology, 35(5): 333. doi:10.1037/h0057532
Flesch, R. (1948). A New Readability Yardstick. Journal of Applied Psychology, 32(3), 221. doi:10.1037/h0057532
Fucks, W. (1955). Der Unterschied des Prosastils von Dichtern und anderen Schriftstellern. Sprachforum, 1, 233-244.
Gunning, R. (1952). The Technique of Clear Writing. New York: McGraw-Hill.
Klare, G.R. (1975). Assessing Readability. Reading Research Quarterly, 10(1), 62-102. doi:10.2307/747086
Kincaid, J. P., Fishburne Jr, R.P., Rogers, R.L., & Chissom, B.S. (1975). Derivation of New Readability Formulas (Automated Readability Index, FOG count and Flesch Reading Ease Formula) for Navy Enlisted Personnel.
McLaughlin, G.H. (1969). SMOG Grading: A New Readability Formula. Journal of Reading, 12(8), 639-646.
Michalke, M. (2014). koRpus: An R Package for Text Analysis (Version 0.05-4). Available from https://reaktanz.de/?c=hacking&s=koRpus.
Powers, R.D., Sumner, W.A., and Kearl, B.E. (1958). A Recalculation of Four Adult Readability Formulas. Journal of Educational Psychology, 49(2), 99. doi:10.1037/h0043254
Senter, R. J., & Smith, E. A. (1967). Automated readability index. Wright-Patterson Air Force Base. Report No. AMRL-TR-6620.
*Solomon, N. W. (2006). Qualitative Analysis of Media Language. India.
Spache, G. (1953). "A new readability formula for primary-grade reading
materials." The Elementary School Journal, 53, 410–413.
https://www.jstor.org/stable/998915
Tränkle, U. & Bailer, H. (1984). Kreuzvalidierung und Neuberechnung von Lesbarkeitsformeln für die deutsche Sprache. Zeitschrift für Entwicklungspsychologie und Pädagogische Psychologie, 16(3), 231–244.
Wheeler, L.R. & Smith, E.H. (1954). A Practical Readability Formula for the
Classroom Teacher in the Primary Grades. Elementary English, 31,
397–399. https://www.jstor.org/stable/41384251
*Nimaldasan is the pen name of N. Watson Solomon, Assistant Professor of Journalism, School of Media Studies, SRM University, India.
txt <- c(doc1 = "Readability zero one. Ten, Eleven.", doc2 = "The cat in a dilapidated tophat.") textstat_readability(txt, measure = "Flesch") textstat_readability(txt, measure = c("FOG", "FOG.PSK", "FOG.NRI")) textstat_readability(quanteda::data_corpus_inaugural[48:58], measure = c("Flesch.Kincaid", "Dale.Chall.old"))
txt <- c(doc1 = "Readability zero one. Ten, Eleven.", doc2 = "The cat in a dilapidated tophat.") textstat_readability(txt, measure = "Flesch") textstat_readability(txt, measure = c("FOG", "FOG.PSK", "FOG.NRI")) textstat_readability(quanteda::data_corpus_inaugural[48:58], measure = c("Flesch.Kincaid", "Dale.Chall.old"))
These functions compute matrixes of distances and similarities between documents or features from a dfm and return a matrix of similarities or distances in a sparse format. These methods are fast and robust because they operate directly on the sparse dfm objects. The output can easily be coerced to an ordinary matrix, a data.frame of pairwise comparisons, or a dist format.
textstat_simil( x, y = NULL, selection = NULL, margin = c("documents", "features"), method = c("correlation", "cosine", "jaccard", "ejaccard", "dice", "edice", "hamann", "simple matching"), min_simil = NULL, ... ) textstat_dist( x, y = NULL, selection = NULL, margin = c("documents", "features"), method = c("euclidean", "manhattan", "maximum", "canberra", "minkowski"), p = 2, ... )
textstat_simil( x, y = NULL, selection = NULL, margin = c("documents", "features"), method = c("correlation", "cosine", "jaccard", "ejaccard", "dice", "edice", "hamann", "simple matching"), min_simil = NULL, ... ) textstat_dist( x, y = NULL, selection = NULL, margin = c("documents", "features"), method = c("euclidean", "manhattan", "maximum", "canberra", "minkowski"), p = 2, ... )
x , y
|
a dfm objects; |
selection |
(deprecated - use |
margin |
identifies the margin of the dfm on which similarity or
difference will be computed: |
method |
character; the method identifying the similarity or distance measure to be used; see Details. |
min_simil |
numeric; a threshold for the similarity values below which similarity values will not be returned |
... |
unused |
p |
The power of the Minkowski distance. |
textstat_simil
options are: "correlation"
(default),
"cosine"
, "jaccard"
, "ejaccard"
, "dice"
,
"edice"
, "simple matching"
, and "hamann"
.
textstat_dist
options are: "euclidean"
(default),
"manhattan"
, "maximum"
, "canberra"
,
and "minkowski"
.
A sparse matrix from the Matrix package that will be symmetric
unless y
is specified.
The output objects from textstat_simil()
and textstat_dist()
can be
transformed easily into a list format using
as.list()
, which returns a list for each unique
element of the second of the pairs, a data.frame using
as.data.frame()
, which returns pairwise
scores, as.dist()
for a dist object,
or as.matrix()
to convert it into an ordinary matrix.
If you want to compute similarity on a "normalized" dfm object
(controlling for variable document lengths, for methods such as correlation
for which different document lengths matter), then wrap the input dfm in
[dfm_weight](x, "prop")
.
as.list.textstat_proxy()
, as.data.frame.textstat_proxy()
,
stats::as.dist()
# similarities for documents library("quanteda") dfmat <- corpus_subset(data_corpus_inaugural, Year > 2000) %>% tokens(remove_punct = TRUE) %>% tokens_remove(stopwords("english")) %>% dfm() (tstat1 <- textstat_simil(dfmat, method = "cosine", margin = "documents")) as.matrix(tstat1) as.list(tstat1) as.list(tstat1, diag = TRUE) # min_simil (tstat2 <- textstat_simil(dfmat, method = "cosine", margin = "documents", min_simil = 0.6)) as.matrix(tstat2) # similarities for for specific documents textstat_simil(dfmat, dfmat["2017-Trump", ], margin = "documents") textstat_simil(dfmat, dfmat["2017-Trump", ], method = "cosine", margin = "documents") textstat_simil(dfmat, dfmat[c("2009-Obama", "2013-Obama"), ], margin = "documents") # compute some term similarities tstat3 <- textstat_simil(dfmat, dfmat[, c("fair", "health", "terror")], method = "cosine", margin = "features") head(as.matrix(tstat3), 10) as.list(tstat3, n = 6) # distances for documents (tstat4 <- textstat_dist(dfmat, margin = "documents")) as.matrix(tstat4) as.list(tstat4) as.dist(tstat4) # distances for specific documents textstat_dist(dfmat, dfmat["2017-Trump", ], margin = "documents") (tstat5 <- textstat_dist(dfmat, dfmat[c("2009-Obama" , "2013-Obama"), ], margin = "documents")) as.matrix(tstat5) as.list(tstat5) ## Not run: # plot a dendrogram after converting the object into distances plot(hclust(as.dist(tstat4))) ## End(Not run)
# similarities for documents library("quanteda") dfmat <- corpus_subset(data_corpus_inaugural, Year > 2000) %>% tokens(remove_punct = TRUE) %>% tokens_remove(stopwords("english")) %>% dfm() (tstat1 <- textstat_simil(dfmat, method = "cosine", margin = "documents")) as.matrix(tstat1) as.list(tstat1) as.list(tstat1, diag = TRUE) # min_simil (tstat2 <- textstat_simil(dfmat, method = "cosine", margin = "documents", min_simil = 0.6)) as.matrix(tstat2) # similarities for for specific documents textstat_simil(dfmat, dfmat["2017-Trump", ], margin = "documents") textstat_simil(dfmat, dfmat["2017-Trump", ], method = "cosine", margin = "documents") textstat_simil(dfmat, dfmat[c("2009-Obama", "2013-Obama"), ], margin = "documents") # compute some term similarities tstat3 <- textstat_simil(dfmat, dfmat[, c("fair", "health", "terror")], method = "cosine", margin = "features") head(as.matrix(tstat3), 10) as.list(tstat3, n = 6) # distances for documents (tstat4 <- textstat_dist(dfmat, margin = "documents")) as.matrix(tstat4) as.list(tstat4) as.dist(tstat4) # distances for specific documents textstat_dist(dfmat, dfmat["2017-Trump", ], margin = "documents") (tstat5 <- textstat_dist(dfmat, dfmat[c("2009-Obama" , "2013-Obama"), ], margin = "documents")) as.matrix(tstat5) as.list(tstat5) ## Not run: # plot a dendrogram after converting the object into distances plot(hclust(as.dist(tstat4))) ## End(Not run)
Count syntactic and lexical features of documents such as tokens, types, sentences, and character categories.
textstat_summary(x, ...)
textstat_summary(x, ...)
x |
corpus to be summarized |
... |
additional arguments passed through to dfm() |
Count the total number of characters, tokens and sentences as well as special tokens such as numbers, punctuation marks, symbols, tags and emojis.
chars = number of characters; equal to nchar()
sents
= number of sentences; equal ntoken(tokens(x), what = "sentence")
tokens = number of tokens; equal to ntoken()
types = number of unique tokens; equal to ntype()
puncts = number of punctuation marks (^\p{P}+$
)
numbers = number of numeric tokens
(^\p{Sc}{0,1}\p{N}+([.,]*\p{N})*\p{Sc}{0,1}$
)
symbols = number of symbols (^\p{S}$
)
tags = number of tags; sum of pattern_username
and pattern_hashtag
in quanteda::quanteda_options()
emojis = number of emojis (^\p{Emoji_Presentation}+$
)
if (Sys.info()["sysname"] != "SunOS") { library("quanteda") corp <- data_corpus_inaugural[1:5] textstat_summary(corp) toks <- tokens(corp) textstat_summary(toks) dfmat <- dfm(toks) textstat_summary(dfmat) }
if (Sys.info()["sysname"] != "SunOS") { library("quanteda") corp <- data_corpus_inaugural[1:5] textstat_summary(corp) toks <- tokens(corp) textstat_summary(toks) dfmat <- dfm(toks) textstat_summary(dfmat) }