Method for obtaining the cdf of a chi_squared object.

# S3 method for class 'chi_squared'
cdf(x, ...)

Arguments

x

The chi_squared object

...

Additional arguments (not used)

Value

A function that computes the cdf at point(s) t

Examples

x <- chi_squared(5)
F <- cdf(x)
F(5)
#> [1] 0.5841198
F(10)
#> [1] 0.9247648