ccanberra | R Documentation |
This function takes a dataframe and a factor in input, and returns a matrix with the Canberra distances about it.
ccanberra(
dataset,
formula,
plot = TRUE,
plot_title = "Canberra Distance Between Groups"
)
dataset |
A dataframe. |
formula |
A factor which you want to calculate the Canberra distances matrix. |
plot |
Logical, if TRUE, a plot of Canberra distances matrix is displayed. |
plot_title |
The title to be used for the plot if plot is TRUE. |
A matrix containing Canberra distances between each pair of groups and the plot.
# Example with the iris dataset
ccanberra(iris, ~Species, plot = TRUE, plot_title = "Canberra Distance Between Groups")
# Example with the mtcars dataset
ccanberra(mtcars, ~am, plot = TRUE, plot_title = "Canberra Distance Between Groups")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.