tests/testthat/test-dist_weibull.R

test_that("weibull distribution works", {
  set.seed(1337L)
  dist <- dist_weibull()
  params <- list(shape = 2, scale = 4)
  x <- dist$sample(100L, with_params = params)

  expect_silent(fit(dist, x))
  expect_identical(dist$get_type(), "continuous")
  expect_density(dist, dweibull, params, x)
  expect_probability(dist, pweibull, params, x)
  expect_quantile(dist, qweibull, params)
  expect_identical(dist$is_in_support(x), rep_len(TRUE, length(x)))
  expect_diff_density(dist, x, params)
  expect_diff_density(dist, x, list(shape = 3, scale = 2))
  expect_diff_probability(dist, x, params)
  expect_diff_probability(dist, x, list(shape = 3, scale = 2))
  expect_tf_logdensity(dist, params, x)
  expect_tf_logprobability(dist, params, x, x + 1.0)
  expect_tf_logprobability(dist, params, 0, x)
  expect_tf_logprobability(dist, params, x, Inf)

  expect_tf_fit(dist, params, I_POSITIVE_REALS)
})

Try the reservr package in your browser

Any scripts or data that you put into this service are public.

reservr documentation built on June 24, 2024, 5:10 p.m.