You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
data = (
timestamp=[Dates.DateTime(2022, 1, 1, 10, 0),
Dates.DateTime(2022, 1, 1, 10, 0)],
col=[1, 2]
)
ta =TimeArray(data, timestamp=:timestamp)
As you see, the date is duplicated. Is there a way to "compress" this so that there is a single timestamp while the values is a list [1, 2]? Because currently it is treated as:
Hello,
I have this data:
As you see, the date is duplicated. Is there a way to "compress" this so that there is a single timestamp while the values is a list
[1, 2]
? Because currently it is treated as:The text was updated successfully, but these errors were encountered: