Learn R Programming

knnIndep (version 2.0)

novelTest.extreme: A novel test of independence

Description

This function implements a novel test of independence of bivariate data. It is based on the formula of the exact distribution of the ith nearest neighbour given the previous nearest neighbour (see Pc_givena).

Usage

novelTest.extreme(xdata, ydata, maxi = length(xdata) - 1)

Arguments

xdata
first dimension of data
ydata
second dimension of data
maxi
up to which ith nearest neighbour to consider

Value

This function returns the aggregated test statistic

Examples

Run this code
set.seed(10)
xylist = generate.benchmark.data(7,.3,50)
x = runif(50)
novelTest.extreme(x,xylist$y,maxi=20)
novelTest.extreme(xylist$x,xylist$y,maxi=20)

Run the code above in your browser using DataLab