-
Notifications
You must be signed in to change notification settings - Fork 14
Description
One area in Julia data science that I find lacks a "standard pathway" is time series. There are a number of different packages, each with slightly different ideas. I love how the Tidier.jl project brings the Tidyverse's data science minilanguage to Julia. Would you consider adding the tsibble package to the Tidier.jl ecosystem? This would be a very welcome addition for data analysis!
From the tsibble website:
The tsibble package provides a data infrastructure for tidy temporal data with wrangling tools. Adapting the tidy data principles, tsibble is a data- and model-oriented object. In tsibble:
- Index is a variable with inherent ordering from past to present.
- Key is a set of variables that define observational units over time.
- Each observation should be uniquely identified by index and key.
- Each observational unit should be measured at a common interval, if regularly spaced.
I think most of tsibble's dependencies already have Julia implementations (e.g., TidierDates.jl and TidierData.jl), but, if I'm honest, I have no real idea how much work this would take.