Open schlichtanders opened 10 months ago
maybe that's because result_old[!, "workers"]
is not a ::DataFrame
?
Interesting, could be, but then, why are only DataFrames supported for copy and not regular Arrays?
Because you extracted just a column, which is not a data frame, so copy specialized for data frame doesn't work
I think the other answer is because (if I understand correctly) it's a DataFrames.jl feature, not an Arrow.jl feature, it's just documented here because it's a common ask
Maybe collect
is what's desired here, for materializing a column into a Vector
? Naively collect
should be "iterate this collection into an Array
", though I haven't tried it in this case
While the documentation says that a copy would ensure to have normal Julia Types
this is not the case