sc_clumpy_r | R Documentation |
Compute robust clumpy scagnostic measure using MST
sc_clumpy_r(x, y)
## Default S3 method:
sc_clumpy_r(x, y)
## S3 method for class 'scree'
sc_clumpy_r(x, y = NULL)
## S3 method for class 'igraph'
sc_clumpy_r(x, y)
x |
numeric vector of x values |
y |
numeric vector of y values |
A "numeric" object that gives the plot's robust clumpy score.
require(ggplot2)
require(dplyr)
ggplot(features, aes(x=x, y=y)) +
geom_point() +
facet_wrap(~feature, ncol = 5, scales = "free")
features %>% group_by(feature) %>% summarise(clumpy = sc_clumpy_r(x,y))
sc_clumpy_r(datasaurus_dozen_wide$away_x, datasaurus_dozen_wide$away_y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.