render({
mark: { type: 'bar', tooltip: true },
data: { values: census },
transform: [
{ filter: 'datum.year === 2000' }
],
encoding: {
column: { field: 'sex', type: 'N', title: null, spacing: 10 },
x: { aggregate: 'sum', field: 'people' },
y: { field: 'age', type: 'O', scale: { reverse: true } },
color: { field: 'sex', type: 'N' }
},
width: 320,
height: 300
})