Created
May 19, 2021 08:26
-
-
Save ayush29feb/39e522a8b356018f4af5278739599e8c to your computer and use it in GitHub Desktop.
svnerf metrics
This file contains hidden or 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-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