Probability calculator for the chi-squared distribution

prob_chisq(df, lb = NA, ub = NA, plb = NA, pub = NA, dec = 3)

Arguments

df

Degrees of freedom

lb

Lower bound (default is 0)

ub

Upper bound (default is Inf)

plb

Lower probability bound

pub

Upper probability bound

dec

Number of decimals to show

Details

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

See also

summary.prob_chisq to summarize results

plot.prob_chisq to plot results

Examples

prob_chisq(df = 1, ub = 3.841)
#> $v_lb #> [1] NA #> #> $v_ub #> [1] NA #> #> $p_int #> [1] NA #> #> $p_lb #> [1] NA #> #> $p_ub #> [1] 0.95 #> #> $df #> [1] 1 #> #> $lb #> [1] NA #> #> $ub #> [1] 3.841 #> #> $plb #> [1] NA #> #> $pub #> [1] NA #> #> $dec #> [1] 3 #> #> attr(,"class") #> [1] "prob_chisq" "list"