When I attempt to read the contents of google spreadsheet using the command:
data <-read.csv("https://docs.google.com//spreadsheets//drive.google.com//drive//folders//1h6u8CoszxaMYkqCuOEkVSayfHVeOLg1u",fileEncoding="UTF-8").
R reports an error:
Error in file(file, "rt", encoding = fileEncoding) :
cannot open the connection to 'https://docs.google.com//spreadsheets//drive.google.com//drive//folders//1h6u8CoszxaMYkqCuOEkVSayfHVeOLg1u'
In addition: Warning message:
In file(file, "rt", encoding = fileEncoding) :
cannot open URL 'https://docs.google.com//spreadsheets//drive.google.com//drive//folders//1h6u8CoszxaMYkqCuOEkVSayfHVeOLg1u': HTTP status was '404 Not Found'
How can I resolve this issue?