JuliaStats / TimeSeries.jl

Time series toolkit for Julia
Other
349 stars 69 forks source link

Clean up tables interface implementation #503

Open quinnj opened 2 years ago

quinnj commented 2 years ago

Reasoning for changes:

iblislin commented 2 years ago

The reason that we defined schema is for the time column. Since the fallback function return only the data column. for example, [:a, :b, :c], but we defined the custom schema to return [:timestamp, :a, :b, :c]

quinnj commented 2 years ago

The reason that we defined schema is for the time column. Since the fallback function return only the data column. for example, [:a, :b, :c], but we defined the custom schema to return [:timestamp, :a, :b, :c]

Yep, that's perfectly fine/valid.