Determining Repetition #108
Answered
by
sanjayaksaxena
Chaddeus
asked this question in
Help on coding
-
How might I use WinkNLP to determine if a writer's content contains too much repetition? I was thinking maybe something along the lines of a calculation of a the relative frequency a "proper" word (not a, the, an, etc) appears in the content. But I think it would also be important to consider pairs of words, or even three-word sets. |
Beta Was this translation helpful? Give feedback.
Answered by
sanjayaksaxena
Dec 22, 2022
Replies: 1 comment 2 replies
-
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
sanjayaksaxena
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
its.lemma
&as.freqTable
to build a frequency table and shortlist outliers or tokens > 75%tile and highlight them.index()
method.