下载googlesheets到R中的问题

c8ib6hqw  于 2023-06-27  发布在  Go
关注(0)|答案(1)|浏览(118)

我尝试使用命令> data <- read.csv(“https://docs.google.com//spreadsheets//drive.google.com//drive//folders//1h6u8CoszxaMYkqCuOEkVSayfHVeOLg1u“,fileEncoding=“UTF-8”)将CSV文件上传到R。R报告错误:Error in file(file,“rt”,encoding = fileEncoding):cannot open the connection to 'https://docs.google.com//spreadsheet//drive.google.com//drive//folders//1h6u8CoszxaMYkqCuOEkVSayfHVeOLg1u'另外:警告消息:在file(file,“rt”,encoding = fileEncoding)中:无法打开URL 'https://docs.google.com//spreadsheet//drive.google.com//drive//folders//1h 6 u8 CoszxaMYkqCuOEkVSayfHVeOLg 1u':HTTP状态为'404 Not Found'我错过了什么?会请求Maven在这里帮助我
我试图上传一个google sheet_CSV文件到R。R报告错误。我想在R中看到google sheet

bnl4lu3b

bnl4lu3b1#

我认为你需要一个特定的包来实现这一点:

#Install the required package
install.packages('googlesheets4')
#Load the required library 
library(googlesheets4)

也许可以在这里找到其他帮助-> https://www.digitalocean.com/community/tutorials/google-sheets-in-r

相关问题