Published
Edited
Mar 22, 2018
Insert cell
Insert cell
Insert cell
vegalite({

width: width-200,
height: 300,
layer: [{
data: {values: original_data},
mark: { type: "line",
"interpolate": "step-before" },
encoding: {
x: {field: 'first column', type: 'ordinal' },
y: {field: 'second column', type: 'quantitative'}
}
}
]
})
Insert cell
Insert cell
vegalite({

width: width-200,
height: 300,
layer: [{
data: {values: expand_data(compressed_data)},
mark: { type: "line",
"interpolate": "step-before" },
encoding: {
x: {field: 'first column', type: 'ordinal' },
y: {field: 'second column', type: 'quantitative'}
}
}
]
})
Insert cell
Insert cell
expand_data = compressed => {
const expanded = [];
const keys = compressed.map( r => Object.keys(r)[0]);
const keys_count = compressed.length;
const row_count = compressed[0][keys[0]].length;
for (let i = 0; i< row_count; i++) {
const new_row = {};
for (let j = 0; j < keys_count; j++) {
new_row[keys[j]] = compressed[j][keys[j]][i]
}
expanded.push(new_row);
}
return expanded;
}
Insert cell
Insert cell
Insert cell
Insert cell
vegalite({
data: {values: primatives},
mark: "bar",
encoding: {
x: {field: "data.weight", type: 'quantitative'},
y: {field: 'count', type: 'quantitative'},
color: {field: 'data.color'}
}
})
Insert cell
primatives = {
let apple = { label: 'apple', count: 15, data: { size: 'small', weight: 12, color: 'red'} };
let orange = { label: 'orange', count: 20, data: {size: 'small', weight: 20, color: 'orange'}};
let melon = {label: 'melon', count: 3, data: {size: 'large', weight: 50, color: 'green' }};
return [apple, orange, melon];
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more