Summary method for the probability calculator (t-distribution)

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

Arguments

object

Return value from prob_tdist

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_tdist to calculate results

plot.prob_tdist to plot results

Examples

result <- prob_tdist(df = 10, ub = 2.228) summary(result, type = "values")
#> Probability calculator #> Distribution: t #> Df : 10 #> Mean : 0 #> St. dev : 1.222 #> Lower bound : -Inf #> Upper bound : 2.228 #> #> P(X < 2.228) = 0.975 #> P(X > 2.228) = 0.025