Much like this person on Stackoverflow I’ve got data that are time series data but where the time indices are not DateTime (they are just processor ticks converted to microseconds). I looked at TimeSeries.jl and TS but they are strict about the time indices being TimeType – then I waded into the bewildering forest of NamedDims / AxisArray / DimensionalData – but most of these seem to not have the ability to merge multiple arrays (e.g, overlapping time series) or align data etc. I guess before I just go do my own thing I wanted to ask once here: Does anyone know of a library with actual time series functionality but that is not militant about TimeType?
Edit to add: in case it affects any recommendations the values of the time series are going to be vectors / images, etc not just DataFrames style things.
before I posted here but it complained about Int not having a period and I couldn’t find a good definition of what the “protocol” was and since I couldn’t see the bottom of the rabbit hole I figured I’d just ask here. I’ll probably just write my own thing. I think I spent 2 hours doing github archeology when I could have just solved the problem in 30 minutes.
Edit: Indeed, it took me about 20 minutes to solve this without any libraries