File: test-gamm.R

package info (click to toggle)
r-cran-parameters 0.24.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,852 kB
  • sloc: sh: 16; makefile: 2
file content (63 lines) | stat: -rw-r--r-- 1,095 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
skip_if_not_installed("mgcv")

set.seed(123)

void <- capture.output({
  dat <- mgcv::gamSim(6, n = 200, scale = 0.2, dist = "poisson")
})
m1_gamm <- mgcv::gamm(
  y ~ s(x0) + s(x1) + s(x2),
  family = poisson,
  data = dat,
  random = list(fac = ~1),
  verbosePQL = FALSE
)

test_that("ci", {
  expect_equal(
    ci(m1_gamm)$CI_low,
    c(2.361598, NA, NA, NA),
    tolerance = 1e-3
  )
})

test_that("se", {
  expect_equal(
    standard_error(m1_gamm)$SE,
    c(0.3476989, NA, NA, NA),
    tolerance = 1e-3
  )
})

test_that("p_value", {
  expect_equal(
    p_value(m1_gamm)$p,
    c(0, 0, 0, 0),
    tolerance = 1e-3
  )
})

mp <- model_parameters(m1_gamm)
test_that("model_parameters", {
  expect_equal(
    mp$Coefficient,
    c(3.0476, NA, NA, NA),
    tolerance = 1e-3
  )
})

test_that("model_parameters", {
  expect_equal(
    mp$df,
    c(NA, 3.84696, 3.17389, 8.51855),
    tolerance = 1e-3
  )
})

test_that("model_parameters", {
  expect_equal(
    mp$df_error,
    c(183.4606, NA, NA, NA),
    tolerance = 1e-3
  )
})