diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2016-03-24 07:26:55 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2016-03-24 08:28:23 +0100 |
commit | d432a48c8e7cc2df95d4952af415f18809f60409 (patch) | |
tree | d55d27b5dc1cf393b532344db6d3764ed1e6b207 /vignettes/compiled_models.Rmd | |
parent | a04cc65a18998ff5d107a52d23c9a4aad21a03aa (diff) |
Address feedback from CRAN submission
- Put the CRAN URL that the badge points to into canonical form. I had
missed the requirement to use the canonical form before, as the R CMD
check message complained about a (possibily) invalid URL, so I
overlooked the explanation later in the check log. Thanks to Uwe for
his patience. Fix checked with winbuilder.
- Slightly reduced the build time for the compiled_models vignette by
skipping the warm-up. 3 repetitions are necessary for the autoplot
method to work
Diffstat (limited to 'vignettes/compiled_models.Rmd')
-rw-r--r-- | vignettes/compiled_models.Rmd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vignettes/compiled_models.Rmd b/vignettes/compiled_models.Rmd index 8f6df55d..c668c5fd 100644 --- a/vignettes/compiled_models.Rmd +++ b/vignettes/compiled_models.Rmd @@ -55,7 +55,7 @@ mb.1 <- microbenchmark( solution_type = "eigen", quiet = TRUE),
"deSolve, compiled" = mkinfit(SFO_SFO, FOCUS_2006_D,
solution_type = "deSolve", quiet = TRUE),
- times = 3, control = list(warmup = 1))
+ times = 3, control = list(warmup = 0))
smb.1 <- summary(mb.1)
print(mb.1)
@@ -86,7 +86,7 @@ mb.2 <- microbenchmark( "deSolve, not compiled" = mkinfit(FOMC_SFO, FOCUS_2006_D,
use_compiled = FALSE, quiet = TRUE),
"deSolve, compiled" = mkinfit(FOMC_SFO, FOCUS_2006_D, quiet = TRUE),
- times = 3, control = list(warmup = 1))
+ times = 3, control = list(warmup = 0))
smb.2 <- summary(mb.2)
print(mb.2)
smb.2["median"]/smb.2["deSolve, compiled", "median"]
|