vegalite({
data: {values: wine_data},
width: 100,
height: 100,
mark: 'circle',
encoding: {
column: {bin: true, field: 'Flavanoids', type: 'quantitative'},
x: {field: 'Nonflavanoid_phenols', type: 'quantitative'},
y: {field: 'Ash', type: 'quantitative'},
size: {field: 'Magnesium', type: 'quantitative'},
color: {field: 'Alcohol', type: 'nominal'}
}
})