W_from_AD {TopicScore}R Documentation

Estimation of W from A and X

Description

This function estimates the topic-document matrix W from the word-topic matrix A and the word-document X through quadratic programming.

Usage

W_from_AD(A, X)

Arguments

A

The p-by-K word-topic matrix.

X

The p-by-n word-document matrix.

Value

The estimated K-by-n topic-document matrix W_hat.

Author(s)

Minzhe Wang

Examples

data("AP")
K <- 3
tscore_obj <- topic_score(K, AP)
W_hat <- W_from_AD(tscore_obj$A_hat, AP)

[Package TopicScore version 0.0.1 Index]