Nothing
test_that("idr() single-dimensional not isotone", {
fit <- idr(c(1, 3, 2, 4), data.frame(x = 1:4))
preds <- predict(fit, data.frame(x = 1:4))
expect_equal(
preds$cdf,
t(
matrix(
c(
1, 1, 1, 1,
0, 0.5, 1, 1,
0, 0.5, 1, 1,
0, 0, 0, 1
),
nrow = 4,
ncol = 4
)
)
)
})
test_that("idr() single-dimensional not isotone 2", {
fit <- idr(c(3, 5, 3), data.frame(x = c(7, 11, 13)))
preds <- predict(fit, data.frame(x = c(7, 11, 13)))
expect_equal(
preds$cdf,
matrix(
c(
1, 0.5, 0.5,
1, 1, 1
),
nrow = 3,
ncol = 2
)
)
})
test_that("idr() single-dimensional single covariate", {
fit <- idr(c(3, 5), data.frame(x = rep(7, 2)), weights = c(1, 2))
preds <- predict(fit, data.frame(x = 7))
# CDF values are computed in f32 internally and widened to f64 at the R
# boundary, so non-f32-exact fractions like 1/3 land within ~6e-8 of their
# f64 value. The default testthat tolerance (~1.5e-8) is tighter than that.
expect_equal(
preds$cdf,
matrix(
c(1 / 3, 1),
nrow = 1,
ncol = 2
),
tolerance = 1e-6
)
})
test_that("idr() single-dimensional single response", {
fit <- idr(c(3, 3), data.frame(x = c(5, 7)), weights = c(1, 2))
preds <- predict(fit, data.frame(x = c(5, 7)))
expect_equal(
preds$cdf,
matrix(
c(1, 1),
nrow = 2,
ncol = 1
)
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.