Here is the code generating a plot of an xts object:
require("quantmod")
getSymbols("SPY")
plot(Cl(SPY))
Which yields the following plot:

Can you remove the y-axis values (the prices) from a plot of an xts object?
Hint: passing yaxt='n' doesn’t work.
Removing the y-axis is easy, but it also removes the x-axis. A couple options:
1) Easy — use
plot.zoo:2) Harder-ish — take pieces from
plot.xts:3) Customize-ish — modify
plot.xtssoaxes=accepts a vector of axes to plot and/orTRUE/FALSE.