DataAPI.jl
DataAPI.jl copied to clipboard
A data-focused namespace for packages to share functions
Both SplitApplyCombine.jl and DataFrames.jl export `flatten`. I would add it to DataAPI.jl. The question is what docstring it should have? Maybe something like: > Flatten collection of collections into a...
I was thinking that it may be convenient and intuitive to use IntervalSets.jl's ellipsis notation as an alternative to Between(:a, :b): ```julia df[:, :a..:b] df[:, :a..end] ``` Sorry if this...
This function is defined in CategoricalArrays.jl. ``` CategoricalArrays.isordered(x::CategoricalValue) = isordered(x.pool) ``` However, it is quite generic and would be beneficial to have it defined in DataAPI.jl as something like ```...
I was wondering whether we could consider adding the minimal placeholders to implement the Tables interface here. In particular: ```julia istable rowaccess columnaccess rows columns schema Schema ``` The idea...
I'm opening this issue as a place to discuss the path forward for this package and for people to give their feedback. Here's where things are at in my mind:...