Learn R Programming

HHG (version 2.3.7)

print.HHG.Test.Result: Print function for result of HHG tests

Description

Print description of for result object of HHG tests

Usage

# S3 method for HHG.Test.Result
print(x, ...)

Value

Does not return value. Only prints description of test statistic and results.

Arguments

x

result of hhg.test, hhg.test.2.sample or

hhg.test.k.sample

...

Additional arguments can be sent to function. Currently not supported.

Author

Barak Brill

Details

Function prints description of results for the hhg.test, hhg.test.2.sample and hhg.test.k.sample functions. Displays: test statistics, pvalues (if permutations were performed) and description of sample size (also displays group sizes and equality of distribution tests).

Examples

Run this code
#output for independence test
n = 50
X = hhg.example.datagen(n, '4indclouds') 

Dx = as.matrix(dist((X[1,]), diag = TRUE, upper = TRUE))
Dy = as.matrix(dist((X[2,]), diag = TRUE, upper = TRUE))

hhg = hhg.test(Dx, Dy, nr.perm = 200)

#output for k-sample test
n = 50
D = hhg.example.datagen(n, 'FourClassUniv')
Dx = as.matrix(dist(D$x, diag = TRUE, upper = TRUE))

hhg = hhg.test.k.sample(Dx, D$y, nr.perm = 200)

Run the code above in your browser using DataLab