本文介绍了loadNamespace中的错误,软件包plm找不到对象'vI'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我以前从未安装过软件包.当我第一次尝试安装plm软件包时,它给我一个错误,指出未安装软件包pbkrtest.因此,我尝试安装pbkrtest,但是install.packages("pbkrtest")无法正常工作,它显示了以下错误消息:

I never had problems with installing packages before. When I first tried to install the plm package, it gave me an error saying that package pbkrtest was not installed. So I tried installing pbkrtest, but install.packages("pbkrtest") did not work, it gave me this error message:

我从 https://cran.r-project手动下载了它. org/src/contrib/Archive/pbkrtest/并将其放入各自的目录中.

I downloaded it manually from https://cran.r-project.org/src/contrib/Archive/pbkrtest/ and put it into the respective directory.

继续,我现在可以安装plm.但是,我现在仍然遇到此错误,无法使用plm软件包:

Moving on, I could now install plm. Nevertheless, I am now stuck with this error and cannot use the plm package:

library(plm)

这是我的会话信息:

R version 3.2.2 (2015-08-14)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 8 x64 (build 9200)

locale:
[1] LC_COLLATE=German_Germany.1252  LC_CTYPE=German_Germany.1252    LC_MONETARY=German_Germany.1252
[4] LC_NUMERIC=C                    LC_TIME=German_Germany.1252    

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

other attached packages:
[1] dplyr_0.4.3    ggplot2_2.1.0  magrittr_1.5   stargazer_5.2  foreign_0.8-65 Formula_1.2-1 

loaded via a namespace (and not attached):
 [1] Rcpp_0.12.3      knitr_1.12.3     MASS_7.3-43      munsell_0.4.3    colorspace_1.2-6
 [6] lattice_0.20-33  R6_2.1.2         plyr_1.8.3       tools_3.2.2      parallel_3.2.2  
[11] nnet_7.3-10      grid_3.2.2       nlme_3.1-125     gtable_0.2.0     DBI_0.3.1       
[16] lmtest_0.9-34    assertthat_0.1   bdsmatrix_1.3-2  sandwich_2.3-4   scales_0.4.0    
[21] zoo_1.7-12 

推荐答案

如果仍然存在问题,并且您已更新到3.3.0,请尝试使用type ="win.binary"参数.

If this is still an issue and you have updated to 3.3.0, try using the type="win.binary" argument.

install.packages("plm", dependencies=TRUE, type="win.binary")

这篇关于loadNamespace中的错误,软件包plm找不到对象'vI'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 01:52