从 quantmod 包访问 Chart_Series ()
R quantmod 包文档描述了chartSeries() 和chart_Series() 函数。但在需要 quantmod 后,只有 ChartSeries() 函数可用。除了 install.packages() 或 update.packages() 之外,还有其他特殊方法可以访问 R 包函数吗?
The R quantmod package documentation describes both the chartSeries() and chart_Series() functions. But after requiring quantmod, only the chartSeries() function is available. Is there a special way to get access to an R package function besides install.packages() or update.packages()?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用什么版本的 quantmod?
chart_Series
在 quantmod_0.3-14 中导出(在 CRAN 上)。如果您使用的是早期版本的 quantmod,则可能无法导出chart_Series
函数。在这种情况下,您可以通过quantmod:::chart_Series
访问它。更新:
我不太熟悉 OSX 上 32 位和 64 位 R 之间的差异,但如果您最初使用 32 位 R 安装了 quantmod,则可以尝试使用 64 位 R 重新安装 quantmod。
What version of quantmod are you using?
chart_Series
is exported in quantmod_0.3-14 (on CRAN). If you're using an earlier version of quantmod, thechart_Series
function may not be exported. In that case, you can access it viaquantmod:::chart_Series
.Update:
I'm not intimately familiar with the differences between 32- and 64-bit R on OSX, but you could try to re-install quantmod using 64-bit R if you initially installed it with 32-bit R.