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 have started work on this: https://github.com/crystal-data/arrow.cr. I plan to make it fairly similar to the Ruby implementation, which also uses GObject Introspection. Here is a mini example with basically no code written:
b =Arrow::ArrayBuilder.build([1, 2, 3])
s =Arrow::Int32Array.cast(b)
puts s[-1] # => 3puts s.to_a(Int32) # => [1, 2, 3]
Fair warning, I'm mostly just doing this to add it as a backend to Num.cr, so there might be some non-numeric features left out, always looking for contributors if anyone is interested.
Apache Arrow is a cross-language development platform for in-memory data. It is going to be the standard format for all the dataframe type libraries
The text was updated successfully, but these errors were encountered: