このスレッドhereに関連する data.table パッケージを利用して、スパース行列と quanteda と呼ばれるパッケージを使用して、行列の乗算を作成しようとしています。そう
require(quanteda)
mytext <- c("Let the big dogs hunt", "No holds barred", "My child is an honor student")
myMatrix <-dfm(mytext, ignoredFeatures = stopwords("english"), stem = TRUE) #a data.table
as.matrix(myMatrix) %*% transpose(as.matrix(myMatrix))
ここで quanteda パッケージとスパース行列を使用して、行列の乗算をどのように機能させることができますか?