Clarifying how to access an attribute (pValue) in the R demos

This commit is contained in:
Joseph Lizier 2021-04-19 11:32:23 +10:00
parent 3222b5a629
commit 70a7f5c33a
1 changed files with 2 additions and 1 deletions

View File

@ -60,5 +60,6 @@ nullDist <- .jcall(teCalc,"Linfodynamics/utils/EmpiricalMeasurementDistribution;
"computeSignificance", 100L)
cat("Null distribution for unrelated source and destination",
"(i.e. the bias) has mean", .jcall(nullDist, "D", "getMeanOfDistribution"),
"bits and standard deviation", .jcall(nullDist, "D", "getStdOfDistribution"), "\n")
"bits and standard deviation", .jcall(nullDist, "D", "getStdOfDistribution"),
", while the above measurement is beaten by a proportion of", nullDist$pValue, "of the null distribution\n")