For a given set of covariates X
; parameters Eta
,
rho
, and err
; and document-specific time stamps tD
,
simulate a document-by-topic matrix. Additional structuring variables
(numbers of topics (k), documents (M), segments (S), and
covariates per segment (C)) are inferred from input objects.
sim_TS_data(X, Eta, rho, tD, err = 0, seed = NULL)
X |
|
---|---|
Eta |
|
rho | Vector of integer-conformable time locations of changepoints or
|
tD | Vector of integer-conformable times of the documents. Must be
of length M (as determined by |
err | Additive error on the link-scale. Must be a non-negative
|
seed | Input to |
A document-by-topic matrix
of probabilities (dim: M x k).
tD <- c(1, 3, 4, 6) rho <- 3 X <- cbind(rep(1, 4), 1:4) Eta <- cbind(c(0.5, 0.3, 0.9, 0.5), c(1.2, 1.1, 0.1, 0.5)) sim_TS_data(X, Eta, rho, tD, err = 1)