powered by
Plots a convex hull or a star containing a specified percentage of the data. Used to plot clusters.
# S3 method for fraction plot(x, add = TRUE, center = FALSE, centerlabel = "Center", initial = FALSE, type = "ch", ...)
No value returned
An object with class fraction obtained from Fraction.
fraction
Fraction
Should the fraction be added to the current plot?
Should the center be plotted?
Label for the center.
Should the initial data be plotted?
Type of plot. Can be: "ch"- Convex Hull or "st" - Star (Joining each point with the center)
Any other graphical parameter that can affects the plot (as color, etc ...)
Jose Luis Vicente Villardon
Plots a convex hull or a star containing a specified percentage of the data.
a=matrix(runif(50), 25,2) a2=Fraction(a, 0.7) plot(a2, add=FALSE, type="ch", initial=TRUE, center=TRUE, col="blue") plot(a2, add=TRUE, type="st", col="red")
Run the code above in your browser using DataLab