Lattice Grid Buy a licence

demo D202

Cumulative distribution in ESM

The ECDF, binless, beside a histogram of the same column

type: 'ecdf', y

This draws the empirical cumulative distribution of a column, binless, beside a histogram of the same data. It reads off exact percentiles without the binning choices a histogram forces, so 'what share is below this value' is a direct read.

Building…
Loading a live grid…

This is the ES module version. The grid is imported straight from a CDN as a module, the same configuration as the vanilla tab without a global script tag, so it drops into any bundler or a bare module script.

The configuration

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.71.0/lattice-grid.min.css">

<div id="grid" style="height: 340px"></div>
<div id="chart" style="height: 340px"></div>

<script type="module">
  import { createChart } from '@toclocoinc/lattice-grid/modules/charts';

  const grid = createGrid(document.getElementById('grid'), {
    rowKey: 'id',
    columns: [
      { field: 'symbol', title: 'Symbol' },
      { field: 'desk', title: 'Desk', filter: { type: 'set' } },
      { field: 'price', title: 'Price', type: 'number', format: { decimals: 4 } },
      { field: 'bid', title: 'Bid', type: 'number', format: { decimals: 4 } },
      { field: 'ask', title: 'Ask', type: 'number', format: { decimals: 4 } },
      { field: 'volume', title: 'Volume', type: 'number', format: { notation: 'compact' } },
      { field: 'notional', title: 'Notional', type: 'number',
        format: { style: 'currency', currency: 'USD' }, total: 'sum' },
    ],
    rows,  // instruments: symbol, desk, price, bid, ask, volume, notional
  });

  // A chart reads the grid's filtered rows and redraws when the grid changes.
  // An ECDF reads y alone and needs no bins, so its shape is not partly a choice
  // of binning. It reads "what share is under X" directly.
  createChart({
    grid,
    container: document.getElementById('chart'),
    type: 'ecdf',
    y: 'notional',
    title: 'ECDF of notional',
  });
</script>