Nothing
skip_if_not_installed("performance")
library(performance)
test_that("report.test_performance", {
# Create test models
m1 <- lm(Sepal.Length ~ Petal.Length * Species, data = iris)
m2 <- lm(Sepal.Length ~ Petal.Length + Species, data = iris)
m3 <- lm(Sepal.Length ~ Petal.Length, data = iris)
x <- performance::test_performance(m1, m2, m3)
# Test main report function
r <- report(x)
expect_s3_class(r, "report")
expect_s3_class(summary(r), "character")
expect_s3_class(as.data.frame(r), c("report_table", "data.frame"))
# Test report_table
rt <- report_table(x)
expect_s3_class(rt, c("report_table", "data.frame"))
expect_gte(nrow(rt), 1) # At least one comparison
# Test report_statistics
rs <- report_statistics(x)
expect_s3_class(rs, "character")
expect_true(nzchar(rs[[1]], keepNA = TRUE)) # May be empty if no significant comparisons
# Test report_parameters
rp <- report_parameters(x)
expect_s3_class(rp, "character")
expect_gt(nchar(rp[[1]]), 0)
# Test report_text
rtx <- report_text(x)
expect_s3_class(rtx, c("report_text", "character"))
expect_gt(nchar(rtx), 0)
expect_true(grepl("compared", rtx, fixed = TRUE))
})
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.