Displaying 1 result from an estimated 1 matches for "rich12equal".
2010 Jul 28
2
Axes=F and plotting dual y axes
...s2
As a note, I converted my original xts/zoo dataset into a dataframe
thinking it could be weirdness on the part of that. I just did this here
to have something reproducible since it's not feasible to put my entire
original dataset in the email.
plot(testdf1[,1], main="Woo", col=rich12equal, xlab="", ylab="", axes=F,
type='l')
It still displays the x and y axes. What I'm trying to do:
par(new=T)
plot(testdf1[,2], ...)
and from there I can manually label the axes, title, etc.
Any idea what's going on? I'm using R 2.10.1 on ubuntu (I probabl...