Creating a hexbin plot

Hexbin plots can be viewed as an alternative to scatter plots. The hexagon-shaped bins were introduced to plot densely packed sunflower plots. They can be used to plot scatter plots with high-density data. We will use the hexbin package available in R to plot hexagon-shaped bins on a plot instead of a sunflower.

Creating a hexbin plot

Getting ready

To generate a hexbin plot, we will use the hexbin package in R along with the generic rnorm() function.

How to do it…

The install.packages() and library() functions assist in installing the package as well as loading it in R:

install.packages("hexbin")
library(hexbin)

For the purpose of this recipe, we will ...

Get R: Recipes for Analysis, Visualization and Machine Learning now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.