Learn R Programming

D3 Scatterplot Matrices

This is a port of Mike Bostock's D3 scatter plot matrix code to the htmlwidgets framework. There have been some minor adjustments, including the addition of tooltips.

You could also consider the pairedVis() function in the healthvis package.

Take it for a test run here (you can upload your own data).

Installation

The pairsD3 package is available on CRAN:

install.packages("pairsD3")

Alternatively, you can install the development version of pairsD3 from Github using the devtools package as follows:

devtools::install_github("garthtarr/pairsD3")

Usage

A canonical example with the iris data:

data(iris)
require(pairsD3)
pairsD3(iris[,1:4],group=iris[,5])

Save

Use savePairs to save a pairs plot as a stand alone HTML file:

library(magrittr)
pairsD3(iris[,1:4],group=iris[,5]) %>% savePairs(file = 'iris.html')

Shiny

You can view an interactive scatterplot matrix using the shinypairs function:

shinypairs(iris)

Rmarkdown

You can include interactive scatterplot matrices in rmarkdown documents in the usual way:

```{r}
require(pairsD3)
pairsD3(iris)
```

Slidify

HTML widgets are not (yet) supported in slidify. A workaround is to do save the widget as a webpage then include that webpage in slidify using an iframe:

```{r, results='asis',echo=FALSE}
require(pairsD3)
pd3 = pairsD3(iris)
savePairs(pd3, 'pD3.html')
cat('<iframe src="pD3.html"> </iframe>')
```

Copy Link

Version

Install

install.packages('pairsD3')

Monthly Downloads

453

Version

0.1.3

License

GPL (>= 3)

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

June 6th, 2022

Functions in pairsD3 (0.1.3)

savePairs

Save a pairs plot to an HTML file
renderPairsD3

Widget render function for use in Shiny
pairsD3

D3 scatterplot matrices
pairsD3Output

Widget output function for use in Shiny
shinypairs

Shiny interface to the pairsD3 function