inst/tinytest/test-model-combine.R

data <- barrks_data()

m <- model_combine('phenips',
                   list(model = 'rity', submodels = 'onset'),
                   list(model = 'joensson', submodels = 'diapause'),
                   list(model = 'phenips-clim', submodels = 'mortality'))


pheno <- phenology(m, data, .quiet = TRUE)


onset <- get_onset_rst(phenology('rity', data, .submodels = 'onset', .quiet = TRUE), FALSE)
diapause <- get_diapause_rst(phenology('joensson', data, .submodels = 'diapause', .quiet = TRUE), FALSE)
mortality <- get_mortality_rst(phenology('phenips-clim', data, .submodels = 'mortality', .quiet = TRUE), FALSE)
pheno2 <- phenology('phenips', .onset = onset, .diapause = diapause, .mortality = mortality, data, .quiet = TRUE)


expect_true(all(terra::values(get_onset_rst(pheno, FALSE) == onset), na.rm = TRUE))
expect_true(all(terra::values(get_diapause_rst(pheno, FALSE) == diapause), na.rm = TRUE))
expect_true(all(terra::values(get_mortality_rst(pheno, FALSE) == mortality), na.rm = TRUE))



purrr::walk(prop_hatched_generations(pheno), \(g) {
  expect_true(all(terra::values(get_development_rst(pheno, g) == get_development_rst(pheno2, g)), na.rm = TRUE))
})

Try the barrks package in your browser

Any scripts or data that you put into this service are public.

barrks documentation built on April 3, 2025, 9:47 p.m.