Table with non-Symbol column names

I would like a column-table like StructArray but with non-Symbol column names, such as for numbers, dates, etc. Does this exist? Is there a good reason it shouldn’t?

StructArray can be Tuple-based, and have number-based columns.

Otherwise, depends on the usecase I guess. Tables.jl won’t support this kind of tables, and neither will common storage data formats.
If all columns are of the same type, then one can just use 2d KeyedArrays (from AxisKeys.jl) and have columns indexed by dates or whatever other objects.

1 Like