Draw simple 1D histogram in Vega -
i have data extracted data aggregator tool called histogrammar:
{ "version": "1.0", "data": { "underflow:type": "count", "overflow:type": "count", "nanflow:type": "count", "underflow": 0.0, "nanflow": 0.0, "values": [ 89.0, 100.0, 101.0, 95.0, 85.0, 111.0, 101.0, 104.0, 96.0, 105.0, 102.0, 96.0, 91.0, 111.0, 108.0, 100.0, 111.0, 93.0, 104.0, 97.0 ], "entries": 2000.0, "high": 1.0, "values:type": "count", "overflow": 0.0, "low": 0.0 }, "type": "bin" }
the "values":[] probability distributions , want make simple 1d histogram this. how can it?
Comments
Post a Comment