R C符号名称“do_is_ordered”不在包xts的DLL中

时间:2012-02-08 06:29:15

标签: r dll installation xts

我在办公室的电脑上安装了R,我经历了一些奇怪的事情。我试图使用xts包,但发生了以下情况:

library(xts)
data(sample_matrix) 
sample.xts <- as.xts(sample_matrix, descr='my new xts object')
Fehler in .Call("do_is_ordered", x = x, increasing = as.logical(increasing),  :
C Symbolname "do_is_ordered" nicht in der DLL für Paket "xts"

我很抱歉德语文本,但是我没有找到相应的英文文本,声明说C语言符号名称“do_is_ordered”不在DLL的包“xts”中。

这是我的会话信息:

> sessionInfo()
R version 2.13.2 (2011-09-30)
Platform: i386-pc-mingw32/i386 (32-bit)

locale:
[1] LC_COLLATE=German_Austria.1252  LC_CTYPE=German_Austria.1252
[3] LC_MONETARY=German_Austria.1252 LC_NUMERIC=C
[5] LC_TIME=German_Austria.1252

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base

other attached packages:
[1] PerformanceAnalytics_1.0.3.2 xlsReadWrite_1.5.4
[3] quantmod_0.3-15              TTR_0.20-2
[5] Defaults_1.1-1               xts_0.7-5
[7] zoo_1.6-4

loaded via a namespace (and not attached):
[1] grid_2.13.2     lattice_0.19-33 tools_2.13.2

正如我之前提到的,办公室中的计算机限制了对互联网的访问,所有软件包都是从本地文件夹安装的,我不能像我希望的那样简单地重新安装R版本。这很怪异,因为办公室中的其他计算机不会使用相同的代码产生任何错误。我想问你是什么会产生错误(安装错误?)。我怎么能修复它而不必重新安装R(这不像人们期望的那样简单,特别是我背后的IT服务: - )

1 个答案:

答案 0 :(得分:0)

我遇到了同样的错误,请参考Xts conversion fails on update from xts 0.9.7 to 0.10.0,重新安装devtools::install_github("joshuaulrich/xts")对我有用。