0

尝试运行此处给出的示例代码时:

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包装

我也尝试安装旧版本的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")
4

1 回答 1

1

rlang_is_null是内的编译函数rlang。如果“重新启动 R”(类似于 windows 3-finger salute)不能解决问题,听起来包安装很糟糕。

尝试:

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

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

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

  4. 重新启动 R。我通常不相信detachunload随后library修复带有编译对象的包的问题(主要是在 Windows 下),所以我的建议是干净重启。

于 2017-11-01T13:50:51.997 回答