Nothing
skip_if_not_installed("MASS")
skip_on_cran()
test_that("robust-se polr", {
data(housing, package = "MASS")
m <- MASS::polr(Sat ~ Infl + Type + Cont, weights = Freq, data = housing)
out <- model_parameters(m)
expect_identical(attributes(out)$coefficient_name, "Log-Odds")
m <- MASS::polr(Sat ~ Infl + Type + Cont, weights = Freq, data = housing, method = "probit")
out <- model_parameters(m)
expect_identical(attributes(out)$coefficient_name, "Coefficient")
})
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.