Skip to content

Zoo Plot Can't Get Rid of Box

3 messages · jimdare, Gabor Grothendieck

#
Its hard coded in but you can circumvent it if you really want like this:

library(zoo)

# make a copy of plot.zoo
plot.zoo <- zoo:::plot.zoo
environment(plot.zoo) <- .GlobalEnv
box <- list

z <- zoo(1:5)
plot(z, bty = "n")

rm(box)
On Wed, Jan 14, 2009 at 7:16 PM, jimdare <jamesdare26 at gmail.com> wrote:
#
Thanks for that :)
Gabor Grothendieck wrote: