kumar_johnson {philentropy} | R Documentation |
Kumar-Johnson distance (lowlevel function)
Description
The lowlevel function for computing the kumar_johnson distance.
Usage
kumar_johnson(P, Q, testNA, epsilon)
Arguments
P |
a numeric vector storing the first distribution. |
Q |
a numeric vector storing the second distribution. |
testNA |
a logical value indicating whether or not distributions shall be checked for |
epsilon |
epsilon a small value to address cases in the distance computation where division by zero occurs. In
these cases, x / 0 or 0 / 0 will be replaced by |
Author(s)
Hajk-Georg Drost
Examples
kumar_johnson(P = 1:10/sum(1:10), Q = 20:29/sum(20:29),
testNA = FALSE, epsilon = 0.00001)