Last active
June 23, 2019 17:06
-
-
Save iaindillingham/91225ed53e42a4cdc3c97f61c5ffe6b9 to your computer and use it in GitHub Desktop.
Reporting a potential bug in Vega's joinaggregate transform
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dimension | metric | |
---|---|---|
A | 1 | |
A | 1 | |
B | 2 | |
B | 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dimension | metric | |
---|---|---|
C | 3 | |
C | 3 | |
D | 4 | |
D | 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://vega.github.io/schema/vega/v5.json", | |
"signals": [ | |
{ | |
"name": "url", | |
"bind": { | |
"input": "select", | |
"options": [ | |
"https://gist.githubusercontent.com/iaindillingham/91225ed53e42a4cdc3c97f61c5ffe6b9/raw/468159226ee5b34e01e0fbf36f9b4f5d558636db/df1.csv", | |
"https://gist.githubusercontent.com/iaindillingham/91225ed53e42a4cdc3c97f61c5ffe6b9/raw/468159226ee5b34e01e0fbf36f9b4f5d558636db/df2.csv" | |
] | |
}, | |
"value": "https://gist.githubusercontent.com/iaindillingham/91225ed53e42a4cdc3c97f61c5ffe6b9/raw/468159226ee5b34e01e0fbf36f9b4f5d558636db/df1.csv" | |
} | |
], | |
"data": [ | |
{ | |
"name": "table", | |
"format": { | |
"type": "csv" | |
}, | |
"url": { | |
"signal": "url" | |
}, | |
"transform": [ | |
{ | |
"type": "aggregate", | |
"groupby": [ | |
"dimension" | |
], | |
"fields": [ | |
"metric" | |
], | |
"ops": [ | |
"sum" | |
] | |
}, | |
{ | |
"type": "joinaggregate", | |
"fields": [ | |
"sum_metric" | |
], | |
"ops": [ | |
"sum" | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment