vegalite({
"data": {values: data},
"mark": "bar",
"height": 300,
"encoding": {
"column": {"field": "color", "type": "nominal", "spacing": 10, "title": false},
"y": {"aggregate": "count", "field": "cut", "title": "Cut of diamonds→", type: "quantitative"},
"x": {"field": "cut", "axis": false, "sort": "-y"},
"color": {"field": "cut",
"scale": {"range": ["rgb(203, 203, 227)","rgb(160, 182, 215)","rgb(114, 162, 202)","rgb(65, 137, 186)","rgb(35, 89, 135)"]},
"legend": {"orient": "right", "title": "Cut Quality"}
}
}
})