plot.TRMF {TRMF} | R Documentation |
Plot Latent Time Series for a TRMF Object
Description
Plots all the time series in Xm from a trained TRMF object.
Usage
## S3 method for class 'TRMF'
plot(x, ...)
Arguments
x |
a trained TRMF object. |
... |
ignored. |
Value
No return value, called for side effects
Author(s)
Chad Hammerquist
See Also
create_TRMF
, TRMF_columns
, TRMF_trend
Examples
xm = poly(x = (-10:10)/10,degree=4)
fm = matrix(runif(40),4,10)
Am = xm%*%fm+rnorm(210,0,.2)
# create model
obj = create_TRMF(Am)
out = train(obj)
plot(out)
[Package TRMF version 0.2.1 Index]