June 2016
Beginner to intermediate
1783 pages
71h 22m
English
Smoothed density scatter plots are a good way of visualizing large datasets. In this recipe, we will learn how to create them using the smoothScatter() function.
For this recipe, we don't need to load any additional libraries. We just need to type the recipe in the R prompt or run it as a script.
We will use the smoothScatter() function that is part of the base graphics library. We will use an example from the help file that can be accessed from the R prompt with the help command:
n <- 10000 x <- matrix(rnorm(n), ncol=2) y <- matrix(rnorm(n, mean=3, sd=1.5), ncol=2) smoothScatter(x,y)
The smoothScatter() function produces a smoothed color density ...
Read now
Unlock full access