readxl :: read_excel中的错误:is_null(n):找不到对象'rlang_is_null'

时间:2017-11-01 13:30:53

标签: r rlang readxl

尝试运行给定here的示例代码时:

xlsx_example <- readxl_example("datasets.xlsx")
read_excel(xlsx_example)

我收到错误Error in is_null(n) : object 'rlang_is_null' not found

关于我的R会话的信息:

sessionInfo()
R version 3.4.2 (2017-09-28)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1

Matrix products: default

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

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

other attached packages:
[1] readxl_1.0.0

loaded via a namespace (and not attached):
 [1] Rcpp_0.12.13     lattice_0.20-35  ape_5.0          tidyr_0.7.2      cellranger_1.1.0 grid_3.4.2       plyr_1.8.4      
 [8] jsonlite_1.5     nlme_3.1-131     gtable_0.2.0     magrittr_1.5     scales_0.5.0     ggplot2_2.2.1    rlang_0.1.2.9000
[15] lazyeval_0.2.1   ggtree_1.10.0    rvcheck_0.0.9    treeio_1.2.0     tools_3.4.2      glue_1.2.0       purrr_0.2.4     
[22] munsell_0.4.3    yaml_2.1.14      parallel_3.4.2   compiler_3.4.2   colorspace_1.3-2 tibble_1.3.4 

我认为错误指向rlang package

我还尝试安装旧版本的readxl包,但是我遇到了同样的错误。

install.packages("https://cran.r-project.org/src/contrib/Archive/readxl/readxl_0.1.1.tar.gz", 
                 repos=NULL, type="source")
# or
install.packages("https://cran.r-project.org/src/contrib/Archive/readxl/readxl_0.1.0.tar.gz", 
                 repos=NULL, type="source")

1 个答案:

答案 0 :(得分:1)

rlang_is_nullcompiled function内的rlang。如果&#34;重启R&#34; (Windows 3手指致敬的比喻)并没有解决问题,听起来好像包安装不好。

尝试:

  1. 将其移开(最终删除,但如果其他方面仍有效,我不想删除);

  2. 重新安装rlang,可能是二进制文件(默认);

  3. 如果这不起作用,请考虑编译源代码(假设已经安装了Rtools ......没有尝试但应该正常工作);然后

  4. 重新启动R.我通常不信任detachunload以及后续的library来修复包含编译对象的软件包(主要是在windows下),所以我的建议是干净的重启。