An open API service indexing awesome lists of open source software.

https://github.com/erikhuizinga/honeycomb

Tools for hexagonal binning (honeycomb plot) and visualisation.
https://github.com/erikhuizinga/honeycomb

binning density distribution hexagon matlab scatter scatter-plot scatterplot visualization

Last synced: 3 months ago
JSON representation

Tools for hexagonal binning (honeycomb plot) and visualisation.

Awesome Lists containing this project

README

        

# 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
```matlab
x = randn(100);
y = rand(size(x));
figure
honeycomb(x, y)
colorbar
title 'Honeycomb plot of uniform vs. normal random data'
```

Result:

![honeycomb](https://cloud.githubusercontent.com/assets/19374736/24495979/3f70f6f6-1537-11e7-8203-523ae248bffa.png)