Skip to content

Instantly share code, notes, and snippets.

@sguzman
Created March 20, 2021 19:09
Show Gist options
  • Save sguzman/81ea8543bcaea6a9e9f1fa676e14ee36 to your computer and use it in GitHub Desktop.
Save sguzman/81ea8543bcaea6a9e9f1fa676e14ee36 to your computer and use it in GitHub Desktop.
Merge timeseries data
With[{list = {}},
Table[
{First@First@g, Total@Map[Last, g]},
{g, GatherBy[
Table[
Splice@
Transpose[{
l["Dates"][[;; -2]],
Differences@
l["Values"]
}]
, {l, list}]
, First]}]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment