sc_dcor | R Documentation |
(Taken from tourr package) Computes the distance correlation based index on 2D projections of the data.
sc_dcor(x, y)
x |
numeric vector |
y |
numeric vector |
A "numeric" object that gives the plot's dcor score.
require(ggplot2) require(tidyr) require(dplyr) data(anscombe) anscombe_tidy <- anscombe %>% pivot_longer(cols = everything(), names_to = c(".value", "set"), names_pattern = "(.)(.)") ggplot(anscombe_tidy, aes(x=x, y=y)) + geom_point() + facet_wrap(~set, ncol=2, scales = "free") sc_dcor(anscombe$x1, anscombe$y1) sc_dcor(anscombe$x2, anscombe$y2) sc_dcor(anscombe$x3, anscombe$y3) sc_dcor(anscombe$x4, anscombe$y4)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.