トップ 履歴 一覧 Farm ソース 検索 ヘルプ PDF RSS ログイン

R meets Google Spreadsheet

*disclaimer
777340

R
R.data

Google Spreadsheetからデータを読み込む

  • 「リンクを知っている全員」が「閲覧者」としてアクセス可能な共有設定にしておく
install.packages("googlesheets4")

library(googlesheets4)

gs4_deauth()

tmp <- "Google Spreadsheetの共有リンク・アドレス"

sample.dat <- read_sheet(tmp)
  • リンクアドレスを、一旦、変数に入れておくのがコツ




 References

https://googlesheets4.tidyverse.org/articles/auth.html
https://github.com/tidyverse/googlesheets4
https://github.com/jennybc/googlesheets
https://blog.8tak4.com/post/161842730350/r-read-google-spreadsheet