plot.PCDs {pcds} | R Documentation |
Plot a PCDs
object
Description
Plots the vertices and the arcs of the PCD together with the vertices and boundaries of the partition cells (i.e., intervals in the 1D case and triangles in the 2D case)
Usage
## S3 method for class 'PCDs'
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.PCDs
, summary.PCDs
,
and print.summary.PCDs
Examples
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)
[Package pcds version 0.1.8 Index]