我正在尝试理解意识形态扩展的逻辑。我有一个数据集,其中包含与货币和财政政策有关的文本,其维度为t(=时间)和j(机构)。我想使用wordfish缩放文本。
Quanteda包装的示例:
irish_dfm <- dfm(data_corpus_irishbudget2010, remove_punct = TRUE)
wf <- textmodel_wordfish(irish_dfm, dir = c(6,5))
summary(wf)
我不清楚dir = c(6,5)的设置。
在https://www.rdocumentation.org/packages/quanteda/versions/1.3.4/topics/textmodel_wordfish
据说
”通过指定一对的索引来设置全局标识 文档,例如^θdir[1] <^θdir[2]。”
这是否意味着我必须挑选两个文档并阅读并强加doc 1的theta低于doc 2的theta?