honeycomb

Tools for hexagonal binning (honeycomb plot) and visualisation.


Project maintained by erikhuizinga Hosted on GitHub Pages — Theme by mattgraham

honeycomb

Tools for hexagonal binning (honeycomb plot) and visualisation

Installation

Put all files somewhere on your MATLAB path. At least, honeycomb.m and the private directory (with contents) should be in the same directory on the MATLAB path.

Documentation

Run help honeycomb or doc honeycomb for instructions.

Example

x = randn(100);
y = rand(size(x));
figure
honeycomb(x, y)
colorbar
title 'Honeycomb plot of uniform vs. normal random data'

Result:

honeycomb