mirror of
https://github.com/olehomelchenko/minivlat-local-ua.git
synced 2025-12-21 13:12:23 +00:00
54 lines
983 B
JSON
54 lines
983 B
JSON
{
|
|
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
|
|
"title": {
|
|
"text": "Trip Distance and Customers",
|
|
"fontSize": 16,
|
|
"fontWeight": "bold"
|
|
},
|
|
"width": 600,
|
|
"height": 400,
|
|
"data": {
|
|
"url": "data/histogram.csv"
|
|
},
|
|
"mark": {
|
|
"type": "bar",
|
|
"fill": "#3182bd",
|
|
"tooltip": true
|
|
},
|
|
"encoding": {
|
|
"x": {
|
|
"field": "Trip_Distance",
|
|
"type": "quantitative",
|
|
"bin": {
|
|
"step": 10
|
|
},
|
|
"axis": {
|
|
"title": "Distance (in Km)",
|
|
"titleFontWeight": "bold",
|
|
"grid": false
|
|
}
|
|
},
|
|
"y": {
|
|
"aggregate": "count",
|
|
"axis": {
|
|
"title": "Number of Customers",
|
|
"titleFontWeight": "bold",
|
|
"grid": true
|
|
}
|
|
}
|
|
},
|
|
"config": {
|
|
"axis": {
|
|
"grid": true,
|
|
"gridColor": "#ddd",
|
|
"labelFontSize": 11,
|
|
"titleFontSize": 12
|
|
},
|
|
"view": {
|
|
"stroke": null
|
|
},
|
|
"bar": {
|
|
"binSpacing": 1
|
|
}
|
|
}
|
|
} |