This function calculates Kolmogorov-Smirnov on results.

pairwiseKS(particleDataFrameList)

Arguments

particleDataFrameList

An object of type list, composed of particleDataFrames from separate analyses.

Value

Returns a matrix with Kolmogorov-Smirnov values of all pairwise runs.

Author

Brian O'Meara and Barb Banbury

Examples

data(simRunExample) pdfList <- list( Brownian = resultsBMExample[[1]]$particleDataFrame, Bounded = resultsBoundExample[[1]]$particleDataFrame ) pairwiseKS(particleDataFrameList = pdfList)
#> $starting_1 #> Brownian Bounded #> Brownian 1.000 0.481 #> Bounded 0.481 1.000 #> #> $intrinsic_1 #> Brownian Bounded #> Brownian 1.0000 0.1114 #> Bounded 0.1114 1.0000 #>