panelCorr | R Documentation |
This function produces a bivariate scatterplot with the Pearson
correlation. This is for use with the function panelplot
.
panelCorr(data, ...)
data |
A data frame with columns x and y |
... |
Additional arguments |
J.H. Maindonald
# correlation between body and brain weights for 20 mice:
weights <- litters[,-1]
names(weights) <- c("x","y")
weights <- list(weights)
weights[[1]]$xlim <- range(litters[,2])
weights[[1]]$ylim <- range(litters[,3])
panelplot(weights, panelCorr, totrows=1, totcols=1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.