有没有计算STTR较好的测算软件

各位老师,我想要研究教材的STTR值,翻了一下网站之前的资料,打不开,除了wordsmith和Readability_Analyzer_1.0外,有没有可以推荐的较好的软件计算STTR值。谢谢大家!
 
谢谢ArthurW的分享。有关MSTTR和MATTR,可见https://cran.r-project.org/web/packages/koRpus/koRpus.pdf
的66页和67页。

MSTTR (Mean Segmental Type-Token Ratio):
(1) segments the text into fixed-length segments (e.g., 100 words per segment).
(2) For each segment, the TTR is calculated as the ratio of unique words (types) to the total number of words (tokens) in that segment.
(3) The TTR values from all the segments are averaged to produce the MSTTR.
这个基本上是WordSmith中STTR(Standardized TTR)的做法。

MATTR (Moving-Average Type-Token Ratio) 中的Moving-Average又叫Moving-Window。
(1) A window size (e.g., 100 words) is chosen.
(2) The TTR is calculated for the first window of words (e.g., the first 100 words).
(3) The window is then shifted by one word, and the TTR is recalculated for the new window.
(4) The final MATTR value is the average TTR across all the windows.

两种方法均旨在克服TTR受文本长度或语料库规模影响较大的问题。

Cf. Limitations of TTR: https://www.sketchengine.eu/glossary/type-token-ratio-ttr/
 
Last edited:
ArthurW老师说的应该是陆小飞老师的Lexical Complexity Analyzer https://sites.psu.edu/xxl13/lca/

另外,还可关注一下Kristopher Kyle的两个工具
The Tool for the Automatic Analysis if Lexical Diversity (TAALED)
The Tool for the Automatic Analysis of Lexical Sophistication (TAALES)
 
ArthurW老师说的应该是陆小飞老师的Lexical Complexity Analyzer https://sites.psu.edu/xxl13/lca/

另外,还可关注一下Kristopher Kyle的两个工具
The Tool for the Automatic Analysis if Lexical Diversity (TAALED)
The Tool for the Automatic Analysis of Lexical Sophistication (TAALES)
是chuepeng老师提到的
 
ArthurW老师说的应该是陆小飞老师的Lexical Complexity Analyzer https://sites.psu.edu/xxl13/lca/

另外,还可关注一下Kristopher Kyle的两个工具
The Tool for the Automatic Analysis if Lexical Diversity (TAALED)
The Tool for the Automatic Analysis of Lexical Sophistication (TAALES)
万分感谢徐教授的无私分享
 
求助各位大佬,想问问wordsmith 9.0里面形次比计算的问题?首先软件里面得出的ttr是百分数形式,但大部分论文给的数据都没有出现百分号。求大佬们解答~
 
求助各位大佬,想问问wordsmith 9.0里面形次比计算的问题?首先软件里面得出的ttr是百分数形式,但大部分论文给的数据都没有出现百分号。求大佬们解答~
TTR以小数、百分数、整数出现都是可能的。小数和百分数是对应的。如果是整数,一般会是100以下的一个整数,在表头处标明为百分比(%)更严谨。
 
Back
顶部