Nothing
test_that("test the convertKinR0 function", {
m <- addIndirect(stim="in") |> convertKinR0()
expect_true("uR0" %in% names(m$theta))
m2 <- m |> rxode2::model(a=kin, append=TRUE) |>
rxode2::model(R(0) <- kout) |>
rxode2::model(d/dt(R) <- -k*R) |>
rxode2::model(-R0)
expect_error(convertKinR0(m2))
m <- addIndirect(stim="in") |> rxode2::model(-R(0))
expect_error(m |> convertKinR0())
m <- addIndirect(stim="in") |>
rxode2::model(-d/dt(R))
expect_error(m |> convertKinR0())
})
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.