Biemcdf: Computes bivariate empirical joint distribution

Description Usage Arguments Details Value Examples

Description

This function computes empirical joint distribution (joint CDF) table with dynamical programming.

Usage

1

Arguments

data

a numeric matrix with two columns.

Details

This is an optimization for bivariate data.

Value

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.

Examples

1
2
3
4
5
6
n = 10^2
set.seed(123)
x = rnorm(n)
y = rnorm(n)
data = cbind(x, y)
Biemcdf(data)

Emcdf documentation built on May 2, 2019, 1:47 p.m.

Related to Biemcdf in Emcdf...