Summary method for the probability calculator (uniform)

# S3 method for prob_unif
summary(object, type = "values", ...)

Arguments

object

Return value from prob_unif

type

Probabilities ("probs") or values ("values")

...

further arguments passed to or from other methods

Details

See https://radiant-rstats.github.io/docs/basics/prob_calc.html for an example in Radiant

See also

prob_unif to calculate results

plot.prob_unif to plot results

Examples

result <- prob_unif(min = 0, max = 1, ub = 0.3) summary(result, type = "values")
#> Probability calculator #> Distribution: Uniform #> Min : 0 #> Max : 1 #> Mean : 0.5 #> St. dev : 0.289 #> Lower bound : 0 #> Upper bound : 0.3 #> #> P(X < 0.3) = 0.3 #> P(X > 0.3) = 0.7