Fork me on GitHub
#specter
<
2018-01-04
>
wcohen18:01:48

is specter the proper tool for long/wide data transformations, analogous to R’s reshape2? in other words, conversions from something like:

{{:id 1 :year 2016 :val foo}
{:id 1 :year 2017 :val bar}
{:id 2 :year 2016 :val abc}
{:id 2 :year 2017 :val def}}
to something like:
{{:id 1 :2016 foo :2017 bar}
{:id 2 :2016 abc :2017 def}}

nathanmarz19:01:09

@wcohen no, that's not what specter's for