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.
- Host: GitHub
- URL: https://github.com/erikhuizinga/honeycomb
- Owner: erikhuizinga
- License: bsd-2-clause
- Created: 2017-03-20T11:30:12.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-05-12T06:35:18.000Z (about 5 years ago)
- Last Synced: 2025-04-13T20:14:36.493Z (3 months ago)
- Topics: binning, density, distribution, hexagon, matlab, scatter, scatter-plot, scatterplot, visualization
- Language: MATLAB
- Homepage: https://erikhuizinga.github.io/honeycomb/
- Size: 32.2 KB
- Stars: 6
- Watchers: 4
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: license.txt
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:
