depth.sample {ddalpha} | R Documentation |
Fast Depth Computation for Univariate and Bivariate Random Samples
Description
Faster implementation of the halfspace and the simplicial depth. Computes the depth of a whole random sample of a univariate or a bivariate data in one run.
Usage
depth.sample(A, B)
Arguments
A |
Univariate or bivariate points whose depth is computed, represented by a matrix of
size |
B |
Random sample points with respect to which the depth of |
Details
The function returns vectors of sample halfspace and simplicial depth values.
Value
Vector of length m
of depth halfspace depth values is returned.
Author(s)
Stanislav Nagy, nagy@karlin.mff.cuni.cz
See Also
Examples
n = 100
m = 150
A = matrix(rnorm(2*n),ncol=2)
B = matrix(rnorm(2*m),ncol=2)
depth.sample(A,B)
system.time(D1<-depth.halfspace(A,B))
system.time(D2<-depth.sample(A,B))
max(D1-D2$Half)
A = rnorm(100)
B = rnorm(150)
depth.sample(A,B)
# depth.halfspace(matrix(A,ncol=1),matrix(B,ncol=1))
[Package ddalpha version 1.3.15 Index]