specter

Latest version: 1.1.3
wcohen 2018-01-04T18:59:48.000010Z

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}}

nathanmarz 2018-01-04T19:02:09.000574Z

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

wcohen 2018-01-04T19:17:22.000299Z

thanks!