来自 dplyr 的 bind_rows() 问题 - 包加载错误?
Issues with bind_rows() from dplyr - package loading error?
我正在尝试使用 dplyr(版本 0.4.1)中的 bind_rows() 函数,但 R 命令行找不到该函数。它可以找到该功能的帮助,但使用该功能的任何努力都会遇到
> bind_rows()
Error: could not find function "bind_rows"
我是不是做错了什么?我知道 bind_rows() 仅在 ver 0.4.0 中引入,但我有比那个更新的版本。
这是我的 sessionInfo()
> R version 3.1.1 (2014-07-10)
> Platform: x86_64-apple-darwin13.1.0 (64-bit)
>
> locale:
> [1] en_GB.UTF-8/en_GB.UTF-8/en_GB.UTF-8/C/en_GB.UTF-8/en_GB.UTF-8
>
> attached base packages:
> [1] utils datasets graphics grDevices stats methods base
>
> other attached packages:
> [1] lubridate_1.3.3 tidyr_0.2.0 dplyr_0.4.1 swirl_2.2.16 mvoutlier_2.0.5 sgeostat_1.0-25
>
>loaded via a namespace (and not attached):
> [1] assertthat_0.1 colorspace_1.2-4 DEoptimR_1.0-1 digest_0.6.4 GGally_0.4.8
> [6] ggplot2_1.0.0 grid_3.1.1 gtable_0.1.2 httr_0.5 magrittr_1.0.1
>[11] MASS_7.3-34 memoise_0.2.1 munsell_0.4.2 mvtnorm_1.0-0 parallel_3.1.1
>[16] pcaPP_1.9-49 pls_2.4-3 plyr_1.8.1 proto_0.3-10 Rcpp_0.11.2
>[21] RCurl_1.95-4.3 reshape_0.8.5 reshape2_1.4 robCompositions_1.9.0 robustbase_0.91-1
>[26] rrcov_1.3-4 scales_0.2.4 stats4_3.1.1 stringr_0.6.2 tcltk_3.1.1
>[31] testthat_0.8.1 tools_3.1.1 yaml_2.1.13
您是否尝试使用包前缀调用它,例如
dplyr::bind_rows()
即使与其他软件包之一发生冲突,这也应该有效。
关闭所有 R 会话并重新安装 dplyr 在这种情况下有效。感谢 David Arenburg 的提示。
我正在尝试使用 dplyr(版本 0.4.1)中的 bind_rows() 函数,但 R 命令行找不到该函数。它可以找到该功能的帮助,但使用该功能的任何努力都会遇到
> bind_rows()
Error: could not find function "bind_rows"
我是不是做错了什么?我知道 bind_rows() 仅在 ver 0.4.0 中引入,但我有比那个更新的版本。
这是我的 sessionInfo()
> R version 3.1.1 (2014-07-10)
> Platform: x86_64-apple-darwin13.1.0 (64-bit)
>
> locale:
> [1] en_GB.UTF-8/en_GB.UTF-8/en_GB.UTF-8/C/en_GB.UTF-8/en_GB.UTF-8
>
> attached base packages:
> [1] utils datasets graphics grDevices stats methods base
>
> other attached packages:
> [1] lubridate_1.3.3 tidyr_0.2.0 dplyr_0.4.1 swirl_2.2.16 mvoutlier_2.0.5 sgeostat_1.0-25
>
>loaded via a namespace (and not attached):
> [1] assertthat_0.1 colorspace_1.2-4 DEoptimR_1.0-1 digest_0.6.4 GGally_0.4.8
> [6] ggplot2_1.0.0 grid_3.1.1 gtable_0.1.2 httr_0.5 magrittr_1.0.1
>[11] MASS_7.3-34 memoise_0.2.1 munsell_0.4.2 mvtnorm_1.0-0 parallel_3.1.1
>[16] pcaPP_1.9-49 pls_2.4-3 plyr_1.8.1 proto_0.3-10 Rcpp_0.11.2
>[21] RCurl_1.95-4.3 reshape_0.8.5 reshape2_1.4 robCompositions_1.9.0 robustbase_0.91-1
>[26] rrcov_1.3-4 scales_0.2.4 stats4_3.1.1 stringr_0.6.2 tcltk_3.1.1
>[31] testthat_0.8.1 tools_3.1.1 yaml_2.1.13
您是否尝试使用包前缀调用它,例如
dplyr::bind_rows()
即使与其他软件包之一发生冲突,这也应该有效。
关闭所有 R 会话并重新安装 dplyr 在这种情况下有效。感谢 David Arenburg 的提示。