tests/testthat/test_PredictionDens.R

task = tsk("precip")
lrn = lrn("dens.hist")

test_that("Construction", {
  p = PredictionDens$new(task)
  expect_prediction_dens(p)
})

test_that("Internally constructed Prediction", {
  p = lrn$train(task)$predict(task)
  expect_prediction_dens(p)
})

test_that("c", {
  resampling = rsmp("cv", folds = 3L)
  rr = resample(task, lrn, resampling)

  preds = rr$predictions()

  pred = do.call(c, preds)
  expect_prediction_dens(pred)

  dt = as.data.table(pred)
  expect_data_table(dt, nrows = task$nrow, ncols = 4L, any.missing = FALSE)
})

test_that("as_prediction_dens", {
  p = lrn$train(task)$predict(task)
  expect_prediction_dens(as_prediction_dens(as.data.table(p)))
})
mlr-org/mlr3proba documentation built on April 12, 2025, 4:38 p.m.