I have little knowledge on time series or ananlysis of economic data. But I am interested to do (all kinds of) plots in R. I find it quite rare that one given plot cannot be implemented in R. There must be a reason that the author of the packages make it impossible to add another axis in the plot yet I am not able to give any hint.
With all that said, if you do want to do the plot in your way you may need to construct it piece by piece all by YOURSELF. The following code will produce something that is quite similar to what you will get from plot.xts (at least to me). There is no time series structure involved as I am not familiar with it. BTW, the "Canada" data is provided with
vars package not with R base installation.
Here I have mapped all the data into the range [0, 6] and the quarterly time to [0, 83]. The result follows:
I am sure there are simpler/better solutions. This just serves as an exmaple showing the super flexibility of R graphic.
I have not tried Rsweave but would probably expect little change in the codes. As far as I am aware of there is no limit on number of packages loaded in older version of R.
Here is my session info:
Good luck.