sc_convex | R Documentation |
Compute convex scagnostic measure
sc_convex(x, y) ## Default S3 method: sc_convex(x, y) ## S3 method for class 'scree' sc_convex(x, y = NULL) ## S3 method for class 'list' sc_convex(x, y)
x |
numeric vector of x values |
y |
numeric vector of y values |
A "numeric" object that gives the plot's convex 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(convex = sc_convex(x,y)) sc_convex(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.