pandas2
pandas2 copied to clipboard
ufunc specifications
looks scipy
encapsulated lots of function type things here: https://github.com/scipy/scipy/pull/6509
we eventually will want to enable things like this as well for ufunc like things that can be processed efficiently via the c++ code.
This is cool. I think we'll want to have a similar low level callable interface for functions that utilize pandas2's C++ API
yep. arguably this interface should exist even lower down the chain (e.g. in pyarrow
) or utilities. maybe even get scipy
to use it :>
Yeah, definitely. Having a native callable API for Arrow data in C++ (that writes output into preallocated memory, or uses one of the builder classes, e.g. for strings) would be very nice