Returns the tipping-point attribute stored on a
spliv_sensitivity_path() object. For each term, the tipping point is the
smallest delta on the supplied grid whose interval includes zero.
Examples
set.seed(6)
d <- data.frame(y = rnorm(80), x = rnorm(80), z = rnorm(80))
p <- spliv_sensitivity_path(y ~ x | z, d, method = "uci", delta_grid = c(0, 0.1))
spliv_tipping_point(p)
#> (Intercept) x
#> 0 0
#> attr(,"message")
#> (Intercept)
#> "Baseline interval already includes zero."
#> x
#> "Baseline interval already includes zero."