demo D228
Confidence intervals, charted
The mean lead time of each supplier with its 95% interval as a whisker, and a tile that narrows as you filter
grid.statistics.interval(col) · chart error: true
Loading a live grid…
The configuration
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.27.0/lattice-grid.min.css">
<script type="module">
import { defineLatticeGrid } from 'https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.27.0/modules/webcomponent.esm.js';
defineLatticeGrid();
</script>
<div id="chart" style="height: 250px"></div>
<div id="tiles" style="display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 14px 0"></div>
<lattice-grid row-key="id" style="display: block; height: 340px"></lattice-grid>
<script type="module">
import { createStat } from 'https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.27.0/modules/webcomponent.esm.js';
import { createChart } from 'https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.27.0/modules/charts.esm.min.js';
const el = document.querySelector('lattice-grid');
el.config = {
toolPanel: { side: 'left', panels: ['filters', 'columns', 'statistics'] },
columns: [
{ field: 'supplier', title: 'Supplier', filter: { type: 'set' } },
{ field: 'days', title: 'Lead time', type: 'number', format: { suffix: ' d', maximumFractionDigits: 1 }, total: 'avg' },
],
};
el.rows = rows; // e.g. [{ id: 'O0', supplier: 'Kestrel', days: 3.1 }, ...]
// interval() is the range the mean is pinned to, computed over the filtered
// rows. createStat comes from the element's own module, so it shares one
// engine with el.grid, the live grid inside the element. The tile shows the
// interval under the value.
const tile = () => document.getElementById('tiles').appendChild(document.createElement('div'));
createStat({ grid: el.grid, container: tile(), title: 'Mean lead time', of: 'days', fn: 'avg',
interval: (value, grid) => grid.statistics.interval('days'), footer: '95% confidence interval' });
// error: true draws each mean's interval as a whisker, computed from the
// readings behind the bar. The chart reads the same grid as the tile, so the
// bars and the whiskers follow the filters.
createChart({ grid: el.grid, container: '#chart', type: 'bar', x: 'supplier', y: { col: 'days', fn: 'avg' },
error: true, title: 'Mean lead time by supplier, with 95% confidence interval' });
</script>