rplot | R Documentation |
Plot a correlation data frame using ggplot2.
rplot( rdf, legend = TRUE, shape = 16, colours = c("indianred2", "white", "skyblue1"), print_cor = FALSE, colors, .order = c("default", "alphabet") )
rdf |
Correlation data frame (see |
legend |
Boolean indicating whether a legend mapping the colors to the correlations should be displayed. |
shape |
|
colours, colors |
Vector of colors to use for n-color gradient. |
print_cor |
Boolean indicating whether the correlations should be printed over the shapes. |
.order |
Either "default", meaning x and y variables keep the same order
as the columns in |
Each value in the correlation data frame is represented by one point/circle
in the output plot. The size of each point corresponds to the absolute value
of the correlation (via the size
aesthetic). The color of each point
corresponds to the signed value of the correlation (via the color
aesthetic).
Plots a correlation data frame
x <- correlate(mtcars) rplot(x) # Common use is following rearrange and shave x <- rearrange(x, absolute = FALSE) x <- shave(x) rplot(x) rplot(x, print_cor = TRUE) rplot(x, shape = 20, colors = c("red", "green"), legend = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.