Description Usage Arguments Examples
calculatePvalue
calculates a p-value for the null hypothesis.
1 | calculatePvalue(sample, value, mean)
|
sample |
the vector that will be used as reference. |
value |
the value of interest. |
mean |
the mean of interest. |
1 2 3 4 5 6 7 8 | 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.