Published
Edited
Feb 25, 2019
9 stars
Also listed in…
Chicago Crimes
Insert cell
Insert cell
html `<div id="grid" style="position:relative; width:${width}px; height:400px"></div>`
Insert cell
grid = showData(data, document.querySelector('div#grid'))
Insert cell
function showData (data, gridDiv) {
return new window.fin.Hypergrid(gridDiv, {data: data});
}
Insert cell
Hypergrid = require('https://fin-hypergrid.github.io/core/demo/build/fin-hypergrid.js').catch(() => window.fin.Hypergrid)
Insert cell
Insert cell
dataUrl = 'https://raw.githubusercontent.com/RandomFractals/ChicagoCrimes/master/data/2018/chicago-crimes-2018.arrow'
Insert cell
dataTable = loadData(dataUrl).then(buffer => arrow.Table.from(new Uint8Array(buffer)))
Insert cell
data = toJSON(dataTable)
Insert cell
function toJSON(dataTable) {
let date, block, location, arrested, type, info, lat, lng, results = [];
dataTable.scan((index) => {
results.push({
'Date': toDate(date(index)).toISOString().substring(0, 10), // ISO date string
'Location': `${block(index)} (${location(index).toLowerCase()})`,
'Arrested': arrested(index),
'Description': `${type(index).toLowerCase()}: ${info(index).toLowerCase()}`,
//'Latitude': lat(index),
//'Longitude': lng(index),
});
}, (batch) => {
date = arrow.predicate.col('Date').bind(batch);
block = arrow.predicate.col('Block').bind(batch);
location = arrow.predicate.col('LocationDescription').bind(batch);
arrested = arrow.predicate.col('Arrest').bind(batch);
type = arrow.predicate.col('PrimaryType').bind(batch);
info = arrow.predicate.col('Description').bind(batch);
lat = arrow.predicate.col('Latitude').bind(batch);
lng = arrow.predicate.col('Longitude').bind(batch);
}
);
return results;
}
Insert cell
import {loadData, toDate} from '@randomfractals/apache-arrow'
Insert cell
arrow = require('apache-arrow@0.3.1')
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