Description Usage Arguments Value See Also Examples
View source: R/plotMultiSorting.R
Plots two dimensions of the data as a scatter plot and the sorting of the data as lines, which connect the points. Therefore, the function ggplot from the ggplot2-package is used.
1 2 3 4 5 6 7 8 9 | plotMultiSorting(
x,
xlab,
ylab,
main,
dims = 1:2,
point.size = 1,
path.size = 1
)
|
x |
[ |
xlab |
[ |
ylab |
[ |
main |
[ |
dims |
[ |
point.size |
[ |
path.size |
[ |
The ggplot object
1 2 3 | x <- data.frame(x = sort(rnorm(20)), y = sort(rnorm(20)))
multSort <- multiSorting(x)
plotMultiSorting(multSort, point.size = 3, path.size = 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.