【发布时间】:2015-07-06 02:50:11
【问题描述】:
我最近通过
下载了googlesheets
devtools::install_github("jennybc/googlesheets")
并遇到一些困难。运行脚本时,如中所述 https://github.com/jennybc/googlesheets我总是:
Error: could not find function "%>%"
我该如何解决这个问题?
可重现的例子:
下载:
devtools::install_github("jennybc/googlesheets")
require(googlesheets)
数据:
gap_key <- "1HT5B8SgkKqHdqHJmn5xiuaC04Ngb7dG9Tv94004vezA"
copy_ss(key = gap_key, to = "Gapminder")
gap <- register_ss("Gapminder")
发生错误:
oceania_csv <- gap %>% get_via_csv(ws = "Oceania")
【问题讨论】:
标签: r r-googlesheets