Skip to content
Back to formatted view

Raw Message

Message-ID: <CAAmySGM-NoqcfTEHSvJ3ixHQRyj8e8pqZOa881pz2Dz7hJvA3w@mail.gmail.com>
Date: 2012-05-15T02:31:39Z
From: R. Michael Weylandt
Subject: StructTS Examples

In the examples for StructTS -- ($RHOME)/library/stats/man/StructTS.Rd -- could

par(mfrow = c(4, 1))
plot(log10(UKgas))
plot(cbind(fitted(fit), resids=resid(fit)), main = "UK gas consumption")

become

plot(log10(UKgas))
par(mfrow = c(4, 1))
plot(cbind(fitted(fit), resids=resid(fit)), main = "UK gas consumption")

## Note that par was moved down

This makes the plot of UKgas use the whole plot screen (as opposed to
one small panel while three remain empty) which seems like an
improvement.

Best,
Michael