From f39815aa87272849f8e0c808099c4cee780c2a81 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Thu, 3 Nov 2016 14:33:05 +0100 Subject: Static documentation rebuilt by pkgdown::build_site() Using pkgdown with PR hadley/pkgdown#212 --- docs/reference/mkinsub.html | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'docs/reference/mkinsub.html') diff --git a/docs/reference/mkinsub.html b/docs/reference/mkinsub.html index 89387468..86374e4b 100644 --- a/docs/reference/mkinsub.html +++ b/docs/reference/mkinsub.html @@ -61,7 +61,12 @@ @@ -115,22 +120,19 @@

A list for use with mkinmod.

-

- - Examples -

+

Examples

# One parent compound, one metabolite, both single first order. SFO_SFO <- mkinmod( parent = list(type = "SFO", to = "m1"), - m1 = list(type = "SFO"))
Successfully compiled differential equation model from auto-generated C code.
+ m1 = list(type = "SFO"))
#> Successfully compiled differential equation model from auto-generated C code.
# The same model using mkinsub SFO_SFO.2 <- mkinmod( parent = mkinsub("SFO", "m1"), - m1 = mkinsub("SFO"))
Successfully compiled differential equation model from auto-generated C code.
+ m1 = mkinsub("SFO"))
#> Successfully compiled differential equation model from auto-generated C code.
# Now supplying full names SFO_SFO.2 <- mkinmod( parent = mkinsub("SFO", "m1", full_name = "Test compound"), - m1 = mkinsub("SFO", full_name = "Metabolite M1"))
Successfully compiled differential equation model from auto-generated C code.
+ m1 = mkinsub("SFO", full_name = "Metabolite M1"))
#> Successfully compiled differential equation model from auto-generated C code.