sim_TS_data {LDATS} | R Documentation |
Simulate TS data from a TS model structure given parameters
Description
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.
Usage
sim_TS_data(X, Eta, rho, tD, err = 0, seed = NULL)
Arguments
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 |
Value
A document-by-topic matrix
of probabilities (dim: M x k).
Examples
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)