Learn R Programming

treeperm (version 1.6)

KPermutation: K Sample Exact Permutation Test

Description

This function performs a K sample permutation test of data locations by returning a p value. It is a wrapper function for C level computations. Although it supports two sample permutation test, users should really use the Permutation function because it is much faster in handling two sample case. Users are not expected to use this function directly because there is no error checking mechanisms. However, for purpose of performance testing and other demands, this function is visible in this package.

Usage

KPermutation(data, factor) "print"(x,...)

Arguments

x
The KPermutation class to be printed.
data
The set of all data to be permuted
factor
The set of indices, indicating group assignments of values in vector data. This parameter should be in factor type.
...
Reserved for future.

Value

Statistics
The observed test statistics for input data. F statistics is used in this case.
Permutations
The total number of permutations can be performed on input groups.
pvalue
The p value of this two sample permutation test.

Details

Details about implementations are located in KPermutation.c.

References

Ernst M. D 2004, 'Permutation Methods: A Basis for Exact Inference', Statistical Science, Vol. 19, No. 4, p 676-685

Examples

Run this code
value<-c(0,190,0,0,10,0,0,0,0,0,0,110,0,0,52,0,8,0,50,0,0,137,965,110)
label<-as.factor(c(1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2))
print(KPermutation(value,label))
function (data, factor) 
{
    factor <- as.factor(factor)
    p <- .Call("calculate_K_pvalue", data, as.integer(factor))
    result <- list(Fstatistics = p[3], Permutations = p[2], pvalue = p[1])
    class(result) <- "KPermutation"
    result
  }

Run the code above in your browser using DataLab