ggfortify (version 0.4.11)

autoplot.MSM.lm: Autoplot MSwM::MSM.lm

Description

Autoplot MSwM::MSM.lm

Usage

# S3 method for MSM.lm
autoplot(object, prob.colour = "#FF0000", prob.linetype = "dashed", ...)

Arguments

object

MSwM::MSM.lm instance

prob.colour

Line colour for probabilities

prob.linetype

Line type for probabilities

...

other arguments passed to autoplot.ts

Value

ggplot

Examples

Run this code
# 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))
autoplot(d.mswm)
# }

Run the code above in your browser using DataCamp Workspace