VegaLite({
width: 300,
data: {values: crime},
mark: {type: "bar"},
encoding: {
column: {field: "Date Reported", type: "temporal", timeUnit: "month"},
x: {aggregate: "count", field: "Crime Code Description", type: "nominal"},
y: {field: "Area Name", type: "nominal"},
color:{field: "Date Reported", type: "ordinal", timeUnit: "month"}
}
})