Skip to content

Instantly share code, notes, and snippets.

@ayush29feb
Created May 19, 2021 08:26
Show Gist options
  • Save ayush29feb/39e522a8b356018f4af5278739599e8c to your computer and use it in GitHub Desktop.
Save ayush29feb/39e522a8b356018f4af5278739599e8c to your computer and use it in GitHub Desktop.
svnerf metrics
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"data": { "url": "https://raw.githubusercontent.com/ayush29feb/data/master/2021-05-18-16-55-43/data.json"},
"facet": {
"column": {
"field": "metric",
"type": "nominal"
},
"row": {
"field": "dataset",
"type": "nominal"
}
},
"resolve":{
"scale":{
"x":"independent"
}
},
"spec": {
"mark": {"type": "circle", "tooltip": {"content": "data"}},
"encoding": {
"color": {"field": "method", "type":"nominal"},
"x": {"field": "value", "type": "quantitative", "scale": {}},
"y": {"field": "pair", "type": "ordinal"}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment