Learn R Programming

TopicScore (version 0.0.1)

W_from_AD: 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.

Examples

Run this code
# NOT RUN {
data("AP")
K <- 3
tscore_obj <- topic_score(K, AP)
W_hat <- W_from_AD(tscore_obj$A_hat, AP)
# }

Run the code above in your browser using DataLab