Open piever opened 5 years ago
That would indeed be useful for https://github.com/JuliaStats/StatsBase.jl/issues/527.
Hmmm.........since https://github.com/JuliaData/Tables.jl/issues/82 was closed, Tables.jl doesn't itself use Requires.jl anymore, which has drastically improved Tables.jl load times (around 0.06s on my laptop consistently, with ~0.01s coming from dependency loading, and the rest ~0.05s being Tables.jl definitions itself). Is that really too heavy? I can certainly understand the "separation of concerns" argument, wherein I believe the right answer is waiting on https://github.com/JuliaLang/Pkg.jl/issues/1285, which would allow the proper separation of "glue" code into a separate glue module.
I do agree with the sink concern: namely that separating the API makes it easier for packages to be sources, but not sinks (since the Tables.rows
fallback would be in Tables.jl).
We also already have the property that an object can be a "table" without explicitly depending on Tables.jl, via iterating property-accessible objects; but this isn't supported for columns.
All in all, I think packages should just decide whether they want to take the Tables.jl dependency or not, or wait for proper glue package support.
Could query operators be defined here as well and Tables just implement their efficient methods while having a fallback? For example, select
, filter
, join
, mutate
, groupby
, distinct
, order
, etc.
The problem is that packages don't really agree on the API of most of these functions. Though it would probably be useful to file an issue for each to discuss that.
Each package would be free to define their API, but they could also implement a common one. I think it should cover those in the Query.jl style (Julia / LINQ style, Tidyverse, maditr) like... Should we first define which operations we want to support and then the API design?
At least we would need packages to agree on a common API to ensure no ambiguities or incompatibilities happen.
We would need to agree on at least one positional argument at specified position to have a type restriction that is defined in a package.
Why would that be the case?
select(tbl::Any, cols::Symbol...) = Tables.columntable(tbl, cols) # This is some fallback
DataFrames would then add,
select(df::AbstractDataFrame, cols::Symbol...) = ... # The definition for the tabular struct a package provides
you should define bare select
without defining any methods (Julia allows for this).
The problem with your definition is that some packages might accept something else than Symbol
for cols
. A basic example would be:
In one package:
select(tbl::Any, cols::Symbol...)
In the other package:
select(tbl::AbstractDataFrame, cols::Any...)
and you are toasted.
That is what, if I understand this correctly, @nalimilan meant by common API. A minimal requirement is to be specific on a single positional argument with a fixed position.
The problem in your case is that using Any
is type piracy from Base. Of course it cannot be always avoided, but the way to resolve type piracy issue when it is impossible to avoid it is exactly what I proposed - i.e. having agreed a positional argument that is guaranteed not to be subject to type piracy (if someone knows a better method to handle this please comment).
Aye. The API design would have to be drafter similar to for example, Abstraction for Statistical Models in StatsBase.jl.
If the API is defined with select(tbl, cols::Symbol...)
then at the package it would have to make the transformation to dispatch in whatever form the package chooses.
One decision is whether to have a fallback method, no definition, or an error("$method is not defined for $(typeof(obj)).")
.
The Any
is not type piracy since the method is DataAPI.select
which is not defined in Base. Packages would import
and extend DataAPI.select
, but restricting the first argument for their provided tabular struct (i.e., no type piracy). This is akin to the Statistical Model API that requires every method in the API to have the first argument as <:StatsBase.StatisticalModel
|
<:StatsBase.RegressionModel
. We don't require <: Tabular
or something, but it should be fine since the package would have to define the method for a tabular struct that their package defines. What we would need to define here is:
The benefit of defining the API rather than throwing namespaces is that the users get an universal way to query tables front-end while using the efficient struct specific internals for each tabular representation. Packages can provide their flavor as well to interact with their structs regardless.
Yes that's not type piracy as long as packages only add methods with the first argument being of a type they own. But for that function to be generically usable, we should define at least some common signatures that are expected to work (e.g. symbol varargs).
Yes that's not type piracy as long as packages only add methods with the first argument being of a type they own.
This is exactly what I have postulated.
Some potential features,
.N
)
Don't know which ones I am missing...
Probably something for handling Schema/types (Unitful / CategoricalArrays / Missing)Just as a comment from DataFrames.jl:
Mutate/Transform (make or replace columns)
This will be handled as a part of select
functionality now (with the :oldcol => function => :newcol
pattern).
Aye. SQL-ish and parsimonious.
I was wondering whether we could consider adding the minimal placeholders to implement the Tables interface here. In particular:
The idea is that this way it is possible to be a Table "source" without depending on Tables. For example, I would like StructArrays to keep being a Tables source but there were concerns both on having it depend on Tables and on using Requires, which is the current solution.
This still makes it harder to be a Table sink without depending on Tables but that would be weird: one should not have a default fallback that depends on a package that maybe was not loaded.