fortify.MSM.lm | R Documentation |
MSwM::MSM.lm
to data.frame
Convert MSwM::MSM.lm
to data.frame
## S3 method for class 'MSM.lm'
fortify(model, data = NULL, melt = FALSE, ...)
model |
|
data |
original dataset, if needed |
melt |
Logical flag indicating whether to melt each models |
... |
other arguments passed to methods |
data.frame
## Not run:
library(MSwM)
d <- data.frame(Data = c(rnorm(50, mean = -10), rnorm(50, mean = 10)),
exog = cos(seq(-pi/2, pi/2, length.out = 100)))
d.mswm <- MSwM::msmFit(lm(Data ~.-1, data = d), k=2, sw=rep(TRUE, 2),
control = list(parallelization = FALSE))
fortify(d.mswm)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.