plot.NumEdges {pcds.ugraph} | R Documentation |
Plot a NumEdges
object
Description
Plots the scatter plot of the data points (i.e. vertices of the underlying or reflexivity graphs of the PCDs) and the Delaunay tessellation of the nontarget points marked with number of edges in the centroid of the Delaunay cells.
Usage
## S3 method for class 'NumEdges'
plot(x, Jit = 0.1, ...)
Arguments
x |
Object of class |
Jit |
A positive real number
that determines the amount of jitter along the |
... |
Additional parameters for |
Value
None
See Also
print.NumEdges
, summary.NumEdges
,
and print.summary.NumEdges
Examples
#\donttest{
nx<-15; ny<-5;
set.seed(1)
Xp<-cbind(runif(nx),runif(nx))
Yp<-cbind(runif(ny,0,.25),
runif(ny,0,.25))+cbind(c(0,0,0.5,1,1),c(0,1,.5,0,1))
M<-c(1,1,1) #try also M<-c(1,2,3)
Nedges = num.edgesAS(Xp,Yp,M)
Nedges
plot(Nedges)
#}
[Package pcds.ugraph version 0.1.1 Index]