Is there a good R API for accessing Google Docs?

后端 未结 6 765
猫巷女王i
猫巷女王i 2021-01-31 18:11

I\'m using R for data analysis, and I\'m sharing some data with collaborators via Google docs. Is there a simple interface that I can use to access a R data.frame object to and

6条回答
  •  深忆病人
    2021-01-31 18:34

    This may partially answer the question, or help others who want to begin by only downloading FROM public google spreadsheets: http://blog.revolutionanalytics.com/2009/09/how-to-use-a-google-spreadsheet-as-data-in-r.html#

    I had a problem with certificates, and instead of figuring that out, I use the option ssl.verifypeer=FALSE. E.g.:

    getURL("https://, ssl.verifypeer=FALSE)
    

提交回复
热议问题