Nothing
# Create a sample wblr object for testing
failures <- c(30, 49, 82, 90, 96)
wblr_obj <- wblr.conf(wblr.fit(wblr(failures), method.fit = 'mle'), method.conf = 'lrb')
test_that("plotly_contour runs without errors", {
expect_silent(plotly_contour(wblr_obj))
})
test_that("plotly_contour returns a plotly object", {
plot <- plotly_contour(wblr_obj)
expect_s3_class(plot, "plotly")
})
test_that("plotly_contour handles invalid wblr_obj", {
invalid_wblr_obj <- list(a = 1, b = 2)
expect_error(plotly_contour(invalid_wblr_obj), "Argument \"wblr_obj\" is not of class \"wblr\".")
})
test_that("plotly_contour handles wblr_obj without contours", {
no_contour_wblr_obj <- wblr(failures)
expect_error(plotly_contour(no_contour_wblr_obj), "Contour plots are only available for \"wblr_obj\"s with \"method.conf='lrb'\".")
})
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.