Converts percentage to perobabilities

percent2probs(percent)

Arguments

percent

percentage (number grom 1 to 100)

Value

Range of probabilities (two numbers) that are nearest to 0.5.

Examples

percent2probs(100)
#> [1] 0 1
percent2probs(50)
#> [1] 0.25 0.75