Skip to content

erikhuizinga/honeycomb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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