I am using googlesheets4 package in R. My colleague shared a google sheet with me with full access. But I cannot get it with either drive_find()
or sheets_find
but I do get other shared files. I don't know why.. Here's my code in R:
library(googledrive)
library(googlesheets4)
drive_auth()
ss <- drive_get("DSI Style Tags - Class List") ## returns 0 obs
a <- drive_find(type = "spreadsheet") ## returns all the spreadsheets in my drive or shared with me but the one I want
b <- sheets_find() ## the same as drive_find, only the one i want is missing
How can I track the issue here? Many thanks!