diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2016-06-28 00:44:48 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2016-06-28 01:30:00 +0200 |
commit | ef7ccf68e086bac3e75858bd4b97e3a2c6872aa1 (patch) | |
tree | e1b9e55736b0961843e84c60caeb9117e1c35c6d /inst/web/plot.mmkin.html | |
parent | 4672c2b3fd6c22e63b00ee5038998dd68a885c25 (diff) |
Avoid multicore fits in vignettes for passing CRAN checks
Also a small fix to the FOCUS Z vignette, and an update
of the static documentation generated by staticdocs.
Diffstat (limited to 'inst/web/plot.mmkin.html')
-rw-r--r-- | inst/web/plot.mmkin.html | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/inst/web/plot.mmkin.html b/inst/web/plot.mmkin.html index 587bf894..1bc440e1 100644 --- a/inst/web/plot.mmkin.html +++ b/inst/web/plot.mmkin.html @@ -2,7 +2,7 @@ <html lang="en"> <head> <meta charset="utf-8"> -<title>plot.mmkin. mkin 0.9.42</title> +<title>plot.mmkin. mkin 0.9.43</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="author" content=" Johannes Ranke @@ -34,7 +34,7 @@ <div class="navbar"> <div class="navbar-inner"> <div class="container"> - <a class="brand" href="#">mkin 0.9.42</a> + <a class="brand" href="#">mkin 0.9.43</a> <div class="nav"> <ul class="nav"> <li><a href="index.html"><i class="icon-home icon-white"></i> Index</a></li> @@ -56,7 +56,7 @@ <div class="row"> <div class="span8"> <h2>Usage</h2> - <pre><div>"plot"(x, main = "auto", legends = 1, errmin_var = "All data", errmin_digits = 2, cex = 0.7, rel.height.middle = 0.9, ...)</div></pre> + <pre><div>"plot"(x, main = "auto", legends = 1, errmin_var = "All data", errmin_digits = 3, cex = 0.7, rel.height.middle = 0.9, ...)</div></pre> <h2>Arguments</h2> <dl> @@ -78,7 +78,7 @@ </dd> <dt>errmin_digits</dt> <dd> - The number of digits for rounding the FOCUS chi2 error percentage. + The number of significant digits for rounding the FOCUS chi2 error percentage. </dd> <dt>cex</dt> <dd> @@ -86,7 +86,7 @@ </dd> <dt>rel.height.middle</dt> <dd> - The relative height of the middle plot. + The relative height of the middle plot, if more than two rows of plots are shown. </dd> <dt>...</dt> <dd> @@ -113,15 +113,22 @@ </div> <h2 id="examples">Examples</h2> - <pre class="examples"><div class='input'> # Only use one core not to offend CRAN checks + <pre class="examples"><div class='input'> # Only use one core not to offend CRAN checks, use Levenberg-Marquardt for speed fits <- mmkin(c("FOMC", "HS"), list("FOCUS B" = FOCUS_2006_B, "FOCUS C" = FOCUS_2006_C), - cores = 1, quiet = TRUE) + cores = 1, quiet = TRUE, method.modFit = "Marq") plot(fits[, "FOCUS C"]) </div> <p><img src='plot.mmkin-2.png' alt='' width='540' height='400' /></p> <div class='input'> plot(fits["FOMC", ]) </div> -<p><img src='plot.mmkin-4.png' alt='' width='540' height='400' /></p></pre> +<p><img src='plot.mmkin-4.png' alt='' width='540' height='400' /></p> +<div class='input'> + # We can also plot a single fit, if we like the way mmkin works, but then the plot + # height should be smaller than the plot width (this is not possible for the html pages + # generated by staticdocs, as far as I know). + plot(fits["FOMC", "FOCUS C"]) # same as plot(fits[1, 2]) +</div> +<p><img src='plot.mmkin-6.png' alt='' width='540' height='400' /></p></pre> </div> <div class="span4"> <!-- <ul> |