在 quantmod 中使用 reChart

发布于 2025-01-02 08:18:10 字数 243 浏览 0 评论 0原文

我正在尝试使用 quantmod 中的 reChart 工具来放大我的图表,遵循此处的示例: http://www.quantmod.com/documentation/chartSeries.html

但是,当我尝试缩小回到原始图表,它不起作用。是否有一个示例可以展示如何缩小回原始图表

I am trying to use the reChart tool in quantmod to zoom into my chart, following the example from here:
http://www.quantmod.com/documentation/chartSeries.html

however, when I try to zoom back out to the original chart, it doesn't work. Is there an example that could show how to zoom back out to the original chart

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

为你拒绝所有暧昧 2025-01-09 08:18:10

使用 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

Use subset=""

Also, see ?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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文