我正在尝试使用 quantmod 中的 reChart 工具放大我的图表,遵循此处的示例: http ://www.quantmod.com/documentation/chartSeries.html
但是,当我尝试缩小到原始图表时,它不起作用。是否有一个示例可以显示如何缩小到原始图表
我正在尝试使用 quantmod 中的 reChart 工具放大我的图表,遵循此处的示例: http ://www.quantmod.com/documentation/chartSeries.html
但是,当我尝试缩小到原始图表时,它不起作用。是否有一个示例可以显示如何缩小到原始图表
采用subset=""
另见?zoomChart
> library(quantmod)
> getSymbols("SPY", src='yahoo', from='2011-01-01', to='2012-01-01')
[1] "SPY"
> chartSeries(SPY)
> zoomChart("last 1 week") # zoom in
> reChart(subset="") # zoom out
> zoomChart("last 2 months") # zoom in
> zoomChart() # zoom out