错误namespaceExport(NS,出口):未定义的出口:...错误:包或命名空间加载失败(E

2019-10-20 18:12发布

我最近更新R键的最新版本(R版本3.1.1),现在我不能运行负载包。 在GGPLOT2的情况下,运行库后的错误消息(“GGPLOT2”)是

    *Error in namespaceExport(ns, exports) :   
  undefined exports: ContinuousRange, DiscreteRange, abs_area, alpha, area_pal, as.trans, asn_trans, atanh_trans, boxcox_trans, brewer_pal, cbreaks, censor, col2hcl, comma, comma_format, cscale, date_breaks, date_format, date_trans, dichromat_pal, discard, div_gradient_pal, dollar, dollar_format, dscale, exp_trans, expand_range, extended_breaks, format_format, fullseq, gradient_n_pal, grey_pal, hue_pal, identity_pal, identity_trans, is.trans, linetype_pal, log10_trans, log1p_trans, log2_trans, log_breaks, log_trans, logit_trans, manual_pal, math_format, muted, parse_format, percent, percent_format, pretty_breaks, probability_trans, probit_trans, reciprocal_trans, rescale, rescale_max, rescale_mid, rescale_none, rescale_pal, reverse_trans, scientific, scientific_format, seq_gradient_pal, shape_pal, show_col, sqrt_trans, squish, squish_infinite, time_trans, trans_breaks, trans_format, trans_new, trans_range, zero_range  

Además: Mensajes de aviso perdidos  
S3 methods 'fullseq.Date', 'fullseq.POSIXt', 'fullseq.numeric', 'print.trans' were declared in NAMESPACE but not found 
Error: package or namespace load failed for 'ggplot2'*

对于包BiodiversityR,错误消息结尾

*Error: package or namespace load failed for 'BiodiversityR'*

我试过几个小把戏,比如重新安装,更新,加载在以前的R版本中,包括32位版本。

sessionInfo:  
R version 3.1.1 (2014-07-10)
Platform: x86_64-w64-mingw32/x64 (64-bit)

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

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

other attached packages:
[1] xtable_1.7-3 reshape2_1.4 nlme_3.1-117 plyr_1.8.1  

loaded via a namespace (and not attached):
 [1] colorspace_1.2-4 digest_0.6.4     grid_3.1.1       gtable_0.1.2
 [5] lattice_0.20-29  munsell_0.4.2    proto_0.3-10     Rcpp_0.11.1     
 [9] stringr_0.6.2    tools_3.1.1  

    packageVersion("ggplot2")
[1] '1.0.0'

Answer 1:

事实上,一个或多个dependend包必须被更新。

我创造,我重新安装了所有的包一个新的空库目录,这解决了这个问题。 谢谢!

我的错误是只更新GGPLOT2 update.packages("ggplot2")而我已经跑update.packages()



Answer 2:

我经常发现简单地要求(重试)的作品因为某些原因: require(BiodiversityR)



文章来源: Error in namespaceExport(ns, exports) : undefined exports: … Error: package or namespace load failed