Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
The rhtmlLabeledScatter package on github attempts to solve three chronic challenges with labeled scatterplots: readability with large numbers of labels, bubbles, and the use of images.
Four tools for dealing with overlapping labels
1. Automatically arranging labels so they do not overlap
If you look at the scatterplot below, you should immediately see the most obvious way that the package deals with overlapping labels: labels are automatically re-arranged so that they do not overlap. Lines connect labels to their points.
2. Viewers can move labels using drag-and-drop
The second tool for dealing with overlapping labels is that they are draggable. If you are viewing this visualization using a device with a mouse, you can click on the labels to rearrange them to make them even more readable. If you do this using a software platform that can remember the state of an HTMLwidget, such as Displayr, the final position where you leave a label is remembered.
3. Labels can be be dragged off the plot
The third tool is that you can drag the labels off the plot, which causes them to be added to a legend. A notation on the relevant axis shows the direction of any removed labels (try this for yourself).
4. Tooltips on hover
The fourth tool for addressing overlapping labels is the use of tooltips. Hover your mouse over any point and you can see its label.
Bubble charts
The four tools for addressing overlapping labels are also all available for bubble charts, as illustrated below.
Images
It is possible to use images on the scatterplots. Automatically rearranging the images avoids overlaps, as shown in the example below.
Trend arrows
The last example, shown below, uses trends to show movement over time on the scatterplot.
The source code
Click here to login to Displayr and access the R source code (click on a chart, and from the object inspector, select Properties > R CODE).
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.