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
Neal Richardson / @nealrichardson:
It's a namespace issue. That shouldn't error and I can make it work, but you can solve this now by just loading library(arrow):
Hugh Miles:
I am now having a slightly different error.. appears to be caused by "~/"?
library("arrow")
data("iris")
write.csv(iris, "/iris.csv", row.names = FALSE)
test1 <- arrow::read_csv_arrow("/iris.csv")
Error in io___MemoryMappedFile__Open(fs::path_abs(path), mode) :
IOError: Failed to open local file '/iris.csv', error: No such file or directory
test2 <- read.csv("/iris.csv")
Neal Richardson / @nealrichardson:
Yeah, I hit that last week too. Will be fixed by ARROW-6323. You can work around in the meantime by using normalizePath() if you have a tilde in your file path.
locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets
[6] methods base
loaded via a namespace (and not attached):
[1] tidyselect_0.2.5 bit_1.1-14 compiler_3.6.1
[4] magrittr_1.5 assertthat_0.2.1 R6_2.4.0
[7] tools_3.6.1 fs_1.3.1 glue_1.3.1
[10] Rcpp_1.0.2 bit64_0.9-7 arrow_0.14.1.1
[13] rlang_0.4.0 purrr_0.3.2
Reporter: Hugh Miles
Assignee: Neal Richardson / @nealrichardson
PRs and other links:
Note: This issue was originally created as ARROW-6348. Please see the migration documentation for further details.
The text was updated successfully, but these errors were encountered: