vegalite({
width: 850,
height: 300,
data: {
url: "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_month.csv"
},
mark: "circle",
encoding: {
x: {
timeUnit: "yearmonthdate",
field: "time",
type: "temporal"
},
y: {
field: "mag",
type: "quantitative",
bin: true
},
size: {
aggregate: "count",
type: "quantitative"
}
}
})