Learn R Programming

pcds (version 0.1.6)

IncMatCS1D: Incidence matrix for Central Similarity Proximity Catch Digraphs (CS-PCDs) for 1D data - multiple interval case

Description

Returns the incidence matrix for the CS-PCD for a given 1D numerical data set, Xp, as the vertices of the digraph and Yp determines the end points of the intervals (in the multi-interval case). Loops are allowed, so the diagonal entries are all equal to 1.

CS proximity region is constructed with an expansion parameter \(t>0\) and a centrality parameter \(c \in (0,1)\).

See also (ceyhan:revstat-2016;textualpcds).

Usage

IncMatCS1D(Xp, Yp, t, c = 0.5)

Value

Incidence matrix for the CS-PCD with vertices being 1D data set, Xp, and Yp determines the end points of the intervals (the multi-interval case)

Arguments

Xp

a set of 1D points which constitutes the vertices of the digraph.

Yp

a set of 1D points which constitutes the end points of the intervals that partition the real line.

t

A positive real number which serves as the expansion parameter in CS proximity region.

c

A positive real number in \((0,1)\) parameterizing the center inside middle intervals with the default c=.5. For the interval, \((a,b)\), the parameterized center is \(M_c=a+c(b-a)\).

Author

Elvan Ceyhan

References

See Also

IncMatCS1D, IncMatPEtri, and IncMatPE

Examples

Run this code
if (FALSE) {
t<-2
c<-.4
a<-0; b<-10;
nx<-10; ny<-4

set.seed(1)
Xp<-runif(nx,a,b)
Yp<-runif(ny,a,b)

IM<-IncMatCS1D(Xp,Yp,t,c)
IM
dom.greedy(IM) #try also dom.exact(IM)  #might take a long time depending on nx
IndUBdom(IM,5)
}

Run the code above in your browser using DataLab