Learn R Programming

hypothesize (version 0.11.0)

lower: Extract the lower bound of a confidence set

Description

Extract the lower bound of a confidence set

Usage

lower(x, ...)

# S3 method for confidence_set lower(x, ...)

Value

Named numeric scalar with the lower bound.

Arguments

x

a confidence_set object

...

additional arguments (ignored)

Examples

Run this code
cs <- invert_test(
  function(theta) wald_test(estimate = 5, se = 1.2, null_value = theta),
  grid = seq(0, 10, by = 0.1)
)
lower(cs)

Run the code above in your browser using DataLab