Closed solis9753 closed 2 years ago
Thank you for the reprex! I'm also using Mac OS 12.6 and get the same error when I use reprex but I don't get any error when I run this code interactively strangely enough.
I think this is fixed with my most recent commit. Will you reinstall and test again?
suppressPackageStartupMessages(library(Andromeda))
andromeda <- andromeda()
andromeda$mtcars <- mtcars
andromeda$iris <- iris
saveAndromeda(andromeda, "testAndromeda")
loadAndromeda("testAndromeda")
#> # Andromeda object
#> # Physical location: /var/folders/xx/01v98b6546ldnm1rg1_bvk000000gn/T//RtmpiELMPG/file2dfe98e918e
#>
#> Tables:
#> $iris (Sepal.Length, Sepal.Width, Petal.Length, Petal.Width, Species)
#> $mtcars (mpg, cyl, disp, hp, drat, wt, qsec, vs, am, gear, carb)
Created on 2022-11-20 with reprex v2.0.2
Fixed indeed with the latest commit.
There is an inexplicable behaviour of the for loop inside
loadAndromeda()
, in the arrow_S4 branch.Do note that
purrr::map()
andlapply()
work. Running under: macOS Monterey 12.6Created on 2022-11-20 with reprex v2.0.2