On Thu, 20 Mar 2014, Gabor Grothendieck wrote:

Try this:
opar <- par(pin = c(5, 2))
plot(zoo(1:3))
par(opar)

Gabor,

opar <- par(pin = c(5, 2))
plot(s95.z(1:3))
Error in plot(s95.z(1:3)) :
  error in evaluating the argument 'x' in selecting a method for function
'plot': Error: could not find function "s95.z"
par(opar)

or this:
windows(width = 5, height = 2) # or x11
plot(zoo(1:3))
dev.off() # close window

windows(width = 5, height = 2)
Error: could not find function "windows"

... and ?window confirms that it's a function to extract a subset from a zoo (or
other) ts object. What have I missed? Are there additional zoo docs I could
read to further my understanding?

Thanks,

Rich

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to