Package: DepthProc 2.1.5

Zygmunt Zawadzki

DepthProc: Statistical Depth Functions for Multivariate Analysis

Data depth concept offers a variety of powerful and user friendly tools for robust exploration and inference for multivariate data. The offered techniques may be successfully used in cases of lack of our knowledge on parametric models generating data due to their nature. The package consist of among others implementations of several data depth techniques involving multivariate quantile-quantile plots, multivariate scatter estimators, multivariate Wilcoxon tests and robust regressions.

Authors:Zygmunt Zawadzki [aut, cre], Daniel Kosiorowski [aut], Krzysztof Slomczynski [ctb], Mateusz Bocian [ctb], Anna Wegrzynkiewicz [ctb]

DepthProc_2.1.5.tar.gz
DepthProc_2.1.5.tar.gz(r-4.5-noble)DepthProc_2.1.5.tar.gz(r-4.4-noble)
DepthProc_2.1.5.tgz(r-4.4-emscripten)DepthProc_2.1.5.tgz(r-4.3-emscripten)
DepthProc.pdf |DepthProc.html
DepthProc/json (API)
NEWS

# Install 'DepthProc' in R:
install.packages('DepthProc', repos = 'https://cloud.r-project.org')

Bug tracker:https://github.com/zzawadz/depthproc/issues5 issues

Pkgdown site:https://www.depthproc.zstat.pl

Uses libs:
  • openblas– Optimized BLAS
  • c++– GNU Standard C++ Library v3
  • openmp– GCC OpenMP (GOMP) support library
Datasets:
  • USLABOUR - US Labour dataset
  • cracow.airpollution - Air pollution with PM10 in Cracow within day and night in December 2016
  • france - Relation between minimum wage (MW) and unemployment rate (UR) in France.
  • inf.mort - Infant mortality rate (0-1 year) per 1,000 live births
  • internet.users - Internet view data
  • katowice.airpollution - Air pollution in Katowice city by hour.
  • maesles.imm - Children 1 year old immunized against measles, percentage
  • under5.mort - Children under 5 months mortality rate per 1,000 live births

On CRAN:

Conda:

openblascppopenmp

2.48 score 1 stars 2 packages 521 downloads 36 exports 51 dependencies

Last updated 3 years agofrom:06e170c5c2. Checks:1 OK, 2 NOTE. Indexed: no.

TargetResultLatest binary
Doc / VignettesOKMar 11 2025
R-4.5-linux-x86_64NOTEMar 11 2025
R-4.4-linux-x86_64NOTEMar 11 2025

Exports:ablineas.matrixasymmetryCurvebinningDepth2DcombineDepthCurvesCovLPddMvnormddPlotdeepReg2ddepthdepthContourdepthDensitydepthEucliddepthLocaldepthLPdepthMahdepthMediandepthPerspdepthProjectiondepthTukeyfncBoxPlotfncDepthfncDepthFMfncDepthMBDfncDepthMedianfncGetBandgetPlotlsdAddContourlsdGetContourlsdSampleDepthContourslsdSampleMaxDepthmWilcoxonTestplotrunifspherescaleCurvetrimProjReg2d

Dependencies:abindbootclicolorspacecubatureDEoptimRfansifarvergeometryggplot2gluegtableisobandlabelinglatticelifecyclelinproglpSolvemagicmagrittrMASSMatrixMatrixModelsmgcvmunsellmvtnormnlmenppcaPPpillarpkgconfigquadprogquantregR6RColorBrewerRcppRcppArmadilloRcppProgressrlangrobustbaserrcovscalessmSparseMsurvivaltibbleutf8vctrsviridisLitewithrzoo

Citation

To cite package 'DepthProc' in publications use:

Daniel Kosiorowski, Zygmunt Zawadzki (2022). DepthProc An R Package for Robust Exploration of Multidimensional Economic Phenomena.

Corresponding BibTeX entry:

  @Manual{,
    title = {DepthProc An R Package for Robust Exploration of
      Multidimensional Economic Phenomena},
    author = {Daniel Kosiorowski and Zygmunt Zawadzki},
    year = {2022},
  }

Readme and manuals

DepthProc

DepthProc project consist of a set of statistical procedures based on so called statistical depth functions. The project involves free available R package and its description.

Versions
CRAN release version

GitHub stars GitHub watchers

CRAN version Downloads Build Status AppVeyor Build Status Coverage Status Project Status: Active - The project has reached a stable, usable state and is being actively developed.

Installation

DepthProc is avaiable on CRAN:

install.packages("DepthProc")

You can also install it from GitHub with devtools package:

library(devtools)
install_github("zzawadz/DepthProc")

Main features:

Speed and multithreading

Most of the code is written in C++ for additional efficiency. We also use OpenMP to speedup computations with multithreading:

library(DepthProc)
set.seed(123)

d <- 10
x <- mvrnorm(1000, rep(0, d), diag(d))
# Default - utilize as many threads as possible
system.time(depth(x, x, method = "LP"))
#>    user  system elapsed 
#>   0.351   0.000   0.090

# Only single thread - 4 times slower:
system.time(depth(x, x, method = "LP", threads = 1))
#>    user  system elapsed 
#>   0.208   0.000   0.208

# Two threads - 2 times slower:
system.time(depth(x, x, method = "LP", threads = 2))
#>    user  system elapsed 
#>   0.201   0.000   0.103

Available depth functions

x <- mvrnorm(100, c(0, 0), diag(2))

depthEuclid(x, x)
depthMah(x, x)
depthLP(x, x)
depthProjection(x, x)
depthLocal(x, x)
depthTukey(x, x)

## Base function to call others:
depth(x, x, method = "Projection")
depth(x, x, method = "Local", depth_params1 = list(method = "LP"))

## Get median
depthMedian(x, 
  depth_params = list(
    method = "Local",
    depth_params1 = list(method = "LP")))

Basic plots

Contour plot
library(mvtnorm)
y <- rmvt(n = 200, sigma = diag(2), df = 4, delta = c(3, 5))
depthContour(y, points = TRUE, graph_params = list(lwd = 2))

Perspective plot
depthPersp(y, depth_params = list(method = "Mahalanobis"))

Functional depths:

There are two functional depths implemented - modified band depth (MBD), and Frainman-Muniz depth (FM):

x <- matrix(rnorm(60), nc = 20)
fncDepth(x, method = "MBD")
fncDepth(x, method = "FM", dep1d = "Mahalanobis")
#> Warning in dep1d_params$u <- u[, i]: Coercing LHS to a list
Functional BoxPlot
x <- matrix(rnorm(2000), ncol = 100)
fncBoxPlot(x, bands = c(0, 0.5, 1), method = "FM")

Help Manual

Help pageTopics
Add line to plotabline,RobReg,ANY,ANY,ANY-method abline,RobReg-method
as.matrix method for DepthCurveList.as.matrix as.matrix,DepthCurveList-method
Asymmetry curve based on depthsasymmetryCurve
AsymmetryCurve and AsymmetryCurveListAsymmetryCurve-class
BinnDepth2dBinnDepth2d-class
2d BinningbinningDepth2D
Adds plotscombineDepthCurves combineDepthCurves,ANY,ANY,list-method combineDepthCurves,DepthCurve,DepthCurve,ANY-method combineDepthCurves,DepthCurve,DepthCurveList,ANY-method combineDepthCurves,DepthCurveList,DepthCurve,ANY-method
CovLPCovDepthWeighted-class
CovLpCovLP
Air pollution with PM10 in Cracow within day and night in December 2016cracow.airpollution
Normal depth versus depth plotddMvnorm ddmvnorm
Depth versus depth plotddPlot
DDPlotDDPlot-class
Simple deepest regression method.deepReg2d
DeepReg2dDeepReg2d-class
Depth calculationdepth
DepthDepth-class
Approximate depth contoursdepthContour
DepthCurveDepthCurve-class
DepthCurveListDepthCurveList-class
Depth weighted density estimatordepthDensity
DepthDensityDepthDensity-class
Euclidean DepthdepthEuclid
Local depthdepthLocal
LP DepthdepthLP
Mahalanobis DepthdepthMah
Depth mediandepthMedian depthMedian,data.frame-method depthMedian,Depth-method depthMedian,matrix-method
Perspective plot for depth functionsdepthPersp
Projection DepthdepthProjection
Tukey DepthdepthTukey
Functional boxplot based on Modified Band DepthfncBoxPlot
Basic function for functional depthsfncDepth fncDepth.matrix fncDepth.zoo
FM DepthfncDepthFM
Modified band depthfncDepthMBD
Functional medianfncDepthMedian
Functional bandsfncGetBand
Relation between minimum wage (MW) and unemployment rate (UR) in France.france
Functional DepthFunctionalDepth-class
Create ggplot object from DepthCurve, DepthCurveList and DDPlot classes.getPlot getPlot,AsymmetryCurveList-method getPlot,DDPlot-method getPlot,ScaleCurveList-method
Infant mortality rate (0-1 year) per 1,000 live birthsinf.mort
Internet view datainternet.users
Air pollution in Katowice city by hour.katowice.airpollution
Adds location scale depth contour to the existing plot.lsdAddContour lsdAddContour,LSDepthContour-method
Location-Scale depth classLSDepth-class
Location-Scale depth contour classLSDepthContour-class
Get location-scale contour from LSDepthContour object.lsdGetContour lsdGetContour,LSDepthContour-method
Calculate sample Mizera and Muller Student depth contourslsdSampleDepthContours
Calculates the maximum sample location-scale depthlsdSampleMaxDepth
Children 1 year old immunized against measles, percentagemaesles.imm
Multivariate Wilcoxon test for equality of dispersion.mWilcoxonTest
Method for plotting DepthCurve and DDPlot object.plot plot,DDPlot,ANY-method plot,DepthCurve,ANY-method plot,DepthCurveList,ANY-method
2d Binning plotplot,BinnDepth2d,ANY-method
Plot function for DepthDensity.plot,DepthDensity,ANY-method
Plot Location-Scale depth contours.plot,LSDepthContour,ANY-method
RobRegRobReg-class
Random number generation from unit sphere.runifsphere
Scale curvescaleCurve
ScaleCurve and ScaleCurveListScaleCurve-class
trimProjReg2dtrimProjReg2d
TrimReg2dTrimReg2d-class
Children under 5 months mortality rate per 1,000 live birthsunder5.mort
US Labour datasetUSLABOUR