VegaLite({
data: {values: Airbnb},
width: 500,
height: 400,
mark: "bar",
encoding: {
x:{field: "reviews_per_month", aggregate: "count", type: "quantitative"},
y:{field: "room_type", type: "nominal"},
color: {field: "reviews_per_month", type: "quantitative"},
}
})