calculatePvalue {Irescale} | R Documentation |
calculatePvalue
calculates a p-value for the null hypothesis.
calculatePvalue(sample, value, mean)
sample |
the vector that will be used as reference. |
value |
the value of interest. |
mean |
the mean of interest. |
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)