The information about the processes is provided by arguments posD
, the vector of all the occurrence times
in the processes in \(C\), and typeD
, the vector of the code of the point process in set \(D\)
where each point in posD
has occurred.
This function estimates the F-function in a set \(D\) of homogenous or nonhomogeneous time point processes, see
Cebrian et al (2020) for details of the estimation.
The F-function, also known as empty space function, is the distribution function of
the distances from an arbitray point in the space to the nearest point in a process in \(D\).
In homogeneous processes, it estimates the probability that at least one point in processes
in \(D\) occurs at a distance lower than \(r\) of an arbitray point in the space.
If the processes are nonhomogenous, the inhomogenous version of the function, adjusted for time varying intensities,
is used.
If argument r
is NULL, the following grid is used to evaluate the function
r1<-max(20, floor(T/20))
r<-seq(1,r1,by=2)
if (length(r)>200) r<-seq(1,r1,length.out=200)
If argument L
is NULL, the following grid is used
L <- seq(1, T, by = 2)
if (length(L) > 5000) L <- seq(1, T, by = round((T - 1)/199))