Skillnad mellan versioner av "Graftest"
Från wpu.nu
(Skapade sidan med '{{Graph:Chart|width=600|height=100|xAxisTitle=X|yAxisTitle=Y |type=rect|x=1,2,3,4,5,6,7,8|y=10,12,6,14,2,10,7,9}} {{Graph:Chart|width=100|height=100|type=pie|legend=Legende...') |
|||
Rad 1: | Rad 1: | ||
− | {{ | + | <graph> |
− | + | { | |
− | + | "$schema": "https://vega.github.io/schema/vega-lite/v4.json", | |
− | { | + | "data": { |
− | + | "values": [ | |
− | + | {"a": "C", "b": 2}, | |
− | + | {"a": "C", "b": 7}, | |
− | {{ | + | {"a": "C", "b": 4}, |
− | + | {"a": "D", "b": 1}, | |
− | + | {"a": "D", "b": 2}, | |
+ | {"a": "D", "b": 6}, | ||
+ | {"a": "E", "b": 8}, | ||
+ | {"a": "E", "b": 4}, | ||
+ | {"a": "E", "b": 7} | ||
+ | ] | ||
+ | }, | ||
+ | "mark": "bar", | ||
+ | "encoding": { | ||
+ | "y": {"field": "a", "type": "nominal", "title": "A Class"}, | ||
+ | "x": { | ||
+ | "aggregate": "sum", | ||
+ | "field": "b", | ||
+ | "type": "quantitative", | ||
+ | "title": "Sum of B" | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </graph> |