prob2rate {twig} | R Documentation |
Convert Probability to Rate
Description
This function converts a probability to a rate using the formula -log(1 - prob)
.
Usage
prob2rate(prob)
Arguments
prob |
A numeric value representing the probability. |
Value
A numeric value representing the rate.
Examples
prob <- 0.1
rate <- prob2rate(prob)
print(rate)
[Package twig version 1.0.0.0 Index]