plot.NumArcs {pcds} | R Documentation |
NumArcs
object
Plots the scatter plot of the data points (i.e. vertices of the PCDs) and the Delaunay tessellation of the nontarget points marked with number of arcs in the centroid of the Delaunay cells.
## S3 method for class 'NumArcs'
plot(x, Jit = 0.1, ...)
x |
Object of class |
Jit |
A positive real number
that determines the amount of jitter along the |
... |
Additional parameters for |
None
print.NumArcs
, summary.NumArcs
,
and print.summary.NumArcs
A<-c(1,1); B<-c(2,0); C<-c(1.5,2);
Tr<-rbind(A,B,C);
n<-10
Xp<-runif.tri(n,Tr)$g
M<-as.numeric(runif.tri(1,Tr)$g)
Arcs<-arcsAStri(Xp,Tr,M)
Arcs
plot(Arcs)