reorganize files

This commit is contained in:
2025-01-30 16:28:56 +02:00
parent 594a5fc0d5
commit f8bb71a184
94 changed files with 2 additions and 25 deletions

View File

@@ -0,0 +1,54 @@
{
"$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
}
}
}