Nothing
skip_if_not_installed("fixest")
skip_on_cran()
set.seed(123)
iris$x <- rnorm(150)
test_that("model_parameters.fixest_multi", {
mod <- fixest::feols(c(Petal.Width, Sepal.Width) ~ x + csw0(Petal.Length, Sepal.Length) | Species, iris)
expect_snapshot(print(model_parameters(mod)))
expect_snapshot(print(ci(mod)))
})
test_that("model_parameters.fixest_multi", {
mod <- fixest::feols(c(Petal.Width, Sepal.Width) ~ x + Petal.Length | Species, iris)
expect_snapshot(print(model_parameters(mod)))
expect_snapshot(print(ci(mod)))
})
test_that("model_parameters.fixest_multi", {
mod <- fixest::feols(Petal.Width ~ x + csw0(Petal.Length, Sepal.Length) | Species, iris)
expect_snapshot(print(model_parameters(mod)))
expect_snapshot(print(ci(mod)))
})
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.