我希望使用reduce()来成对地连接数据帧中的可变数量的列。看起来像reduce()会完成这项工作,所以我尝试了一些示例代码并得到了这个错误。我正在使用RStudio, 版本1.0.136
> require(tidyverse)
> x <- list(c(0, 1), c(2, 3), c(4, 5))
> x %>% reduce(c)
# Error: `x` must be a vector (not a NULL)
> sessionInfo()
# R version 3.3.2 (2016-10-31)
# Platform: x86_64-apple-darwin13.4.0 (64-bit)
# Running under: OS X El Capitan 10.11.6
# locale:
# [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
# attached base packages:
# [1] stats graphics grDevices utils datasets methods base
# other attached packages:
# [1] dplyr_0.5.0 purrr_0.2.2 readr_1.0.0 tidyr_0.6.1 tibble_1.2 ggplot2_2.2.1
# [7] tidyverse_1.1.1
# loaded via a namespace (and not attached):
# [1] Rcpp_0.12.9 xml2_1.1.1 magrittr_1.5 hms_0.3 rvest_0.3.2 mnormt_1.5-5
# [7] munsell_0.4.3 colorspace_1.3-2 lattice_0.20-34 R6_2.2.0 httr_1.2.1 stringr_1.1.0
# [13] plyr_1.8.4 tools_3.3.2 parallel_3.3.2 grid_3.3.2 broom_0.4.1 nlme_3.1-130
# [19] gtable_0.2.0 psych_1.6.12 DBI_0.5-1 modelr_0.1.0 readxl_0.1.1 lazyeval_0.2.0
# [25] assertthat_0.1 reshape2_1.4.2 haven_1.0.0 stringi_1.1.2 forcats_0.2.0 scales_0.4.1
# [31] lubridate_1.6.0 jsonlite_1.2 foreign_0.8-67
P.S。这是我的第一个问题,所以我试图在太多信息方面犯错误。如果我需要提供不同/更多/更少的信息,请告诉我。
答案 0 :(得分:0)
如评论中所述,有一个名为c
的变量掩盖了函数c
。
除了可能列出元素或列名外,不要命名任何c
。