Tools for hexagonal binning (honeycomb plot) and visualisation
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.
Run help honeycomb
or doc honeycomb
for instructions.
x = randn(100);
y = rand(size(x));
figure
honeycomb(x, y)
colorbar
title 'Honeycomb plot of uniform vs. normal random data'
Result: