You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’ve stored my files on OneDrive. I saved a file named 'sample' using the pin_write function on one computer. However, when I try to open this file on another computer using pin_read, I encounter the following error:
Error in x[[length(x)]] :
attempt to select less than one element in integerOneIndex
The text was updated successfully, but these errors were encountered:
Can you create a reprex (a minimal reproducible example) for this? The goal of a reprex is to make it easier for us to recreate your problem so that we can understand it and/or fix it. If you've never heard of a reprex before, you may want to start with the tidyverse.org help page. Thanks! 🙌
Here is an example of what would be helpful to see:
Step 1
## write the data
library(pins)
drv<-Microsoft365R::get_personal_onedrive()
#> Loading Microsoft Graph login for tenant 'consumers'board<- board_ms365(drv, "pins-testing")
board|> pin_write(sample(1:100, 10), "really-great-numbers", type="json")
#> Creating new version '20240305T182506Z-66f83'#> Writing to pin 'really-great-numbers'## delete the cache locally, so it is like we're starting freshfs::dir_delete(board$cache)
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex: https://reprex.tidyverse.org) and link to this issue.
I’ve stored my files on OneDrive. I saved a file named 'sample' using the
pin_write
function on one computer. However, when I try to open this file on another computer usingpin_read
, I encounter the following error:The text was updated successfully, but these errors were encountered: