Biemcdf {Emcdf} | R Documentation |
This function computes empirical joint distribution (joint CDF) table with dynamical programming.
Biemcdf(data)
data |
a numeric matrix with two columns. |
This is an optimization for bivariate data.
a matrix of values of empirical joint CDF function, where rows and columns are the sorted variables. Columns are the first variable, and rows are the second variable.
n = 10^2 set.seed(123) x = rnorm(n) y = rnorm(n) data = cbind(x, y) Biemcdf(data)