使用 RBloomberg 的错误消息
我正在测试 RBloomberg 来访问 Bloomberg API。使用创建连接后,
> conn <- blpConnect()
我收到一条弹出错误消息,指出“程序无法启动,因为计算机中缺少 XLCall32.dll”。
但是,XLCall32 位于正确的 Office 子目录中。
该错误实际上是由函数内的赋值生成的。
conn <- COMCreate("Bloomberg.Data.1")
这是一条警告消息:如果单击“确定”,则 API 似乎工作正常。
有人遇到过这个问题吗?有一个简单的解决办法吗?或者,是否可以在 R 中抑制弹出窗口?
I am testing RBloomberg to access the Bloomberg API. Upon creating a connection using
> conn <- blpConnect()
I receive a pop-up error message stating that "The program can't start because XLCall32.dll is missing from your computer."
However, XLCall32 is in the proper Office subdirectory.
The error is actually generated by the assignment within the function
conn <- COMCreate("Bloomberg.Data.1")
This is a warning message: if one clicks OK, the API seems to work fine.
Has anyone encountered this problem? Is there an easy fix? Alternatively, is it possible to suppress the pop up window in R?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
提供的基于 Java 的版本
如果可能的话,您可以升级到 http://findata.org/rbloomberg 基于的版本不再开发(我很快就会从 CRAN 中删除它)。
If possible can you upgrade to the Java-based version available from http://findata.org/rbloomberg
The COM-based version is no longer being developed (I will be removing it from CRAN soon).
尝试
system("path")
看看 R 是否知道该目录。Try
system("path")
to see if that directory is known to R.