I recently downloaded googlesheets via
devtools::install_github("jennybc/googlesheets")
and have some difficulties. When I run the script, as stated in https://github.com/jennybc/googlesheets I always get:
Error: could not find function "%>%"
How can I solve this problem?
Playable example:
Loading:
devtools::install_github("jennybc/googlesheets") require(googlesheets)
Data:
gap_key <- "1HT5B8SgkKqHdqHJmn5xiuaC04Ngb7dG9Tv94004vezA" copy_ss(key = gap_key, to = "Gapminder") gap <- register_ss("Gapminder")
Error:
oceania_csv <- gap %>% get_via_csv(ws = "Oceania")
Mamba source share