plot.TRMF | R Documentation |
Plots all the time series in Xm from a trained TRMF object.
## S3 method for class 'TRMF'
plot(x, ...)
x |
a trained TRMF object. |
... |
ignored. |
No return value, called for side effects
Chad Hammerquist
create_TRMF
, TRMF_columns
, TRMF_trend
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.