Skip to content

Instantly share code, notes, and snippets.

@iaindillingham
Last active June 23, 2019 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iaindillingham/91225ed53e42a4cdc3c97f61c5ffe6b9 to your computer and use it in GitHub Desktop.
Save iaindillingham/91225ed53e42a4cdc3c97f61c5ffe6b9 to your computer and use it in GitHub Desktop.
Reporting a potential bug in Vega's joinaggregate transform
dimension metric
A 1
A 1
B 2
B 2
dimension metric
C 3
C 3
D 4
D 4
{
"$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