Published
Edited
Sep 16, 2021
1 fork
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
colorScale = {
const { maxEvents } = chartConfig;
return d3.scaleSequentialSqrt(d3.interpolateOrRd).domain([0, maxEvents]);
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
eventTimes = {
return rawData.events
.filter((event) => event.attributes)
.map((event) => event.attributes["(endTime)"])
.map((time) => new Date(time / 10e5));
}
Insert cell
Insert cell
binnedData = {
const scale = d3
.scaleTime()
.domain(d3.extent(eventTimes))
.nice(); // ♥️♥️♥️
const timeRangeMs = scale.domain()[1] - scale.domain()[0];
const binFn = d3
.bin()
.domain(scale.domain())
.thresholds(timeRangeMs / 100);
return binFn(eventTimes);
}
Insert cell
Insert cell
ws = {
console.log(connectBtn);
return connect("ws://localhost:8029/events");
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
rawData = (websocketMessage && websocketMessage.data) || sampleData
Insert cell
Insert cell
import { showStatus, connect } from "@cimi/websocket-utils"
Insert cell
Insert cell
Insert cell
_ = require("lodash")
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