Description Usage Arguments Value Examples
summaryVector
. Calculates basic statistic of the received vector, like mean, standard deviation, maximum, minimum, 0.1% and 99.9% quantile and median.
1 | summaryVector(vec)
|
vec |
the vector to calculate the summary. |
a list with mean, standard deviation, maximum, minimum, 0.1% and 99.9% quantile and median of the received vector.
1 2 3 4 5 6 | inputFileName<-system.file("testdata", "chen.csv", package="Irescale")
input<-loadFile(inputFileName)
distM<-calculateEuclideanDistance(input$data)
I<-calculateMoranI(distM = distM,varOfInterest = input$varOfInterest)
vI<-resamplingI(distM, input$varOfInterest)
statsVI<-summaryVector(vI)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.