calculatePvalue {Irescale} | R Documentation |
p-value calculation.
Description
calculatePvalue
calculates a p-value for the null hypothesis.
Usage
calculatePvalue(sample, value, mean)
Arguments
sample |
the vector that will be used as reference. |
value |
the value of interest. |
mean |
the mean of interest. |
Examples
fileInput<-system.file("testdata", "chen.csv", package="Irescale")
input<-loadFile(fileInput)
distM<-calculateEuclideanDistance(input$data)
I<-calculateMoranI(distM = distM,varOfInterest = input$varOfInterest)
vI<-resamplingI(distM, input$varOfInterest, n=1000) # This is the permutation
statsVI<-summaryVector(vI)
corrections<-iCorrection(I,vI)
pv<-calculatePvalue(corrections$scaledData,corrections$newI,corrections$summaryScaledD$mean)
[Package Irescale version 2.3.0 Index]