aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2015-05-19 10:54:29 +0200
committerJohannes Ranke <jranke@uni-bremen.de>2015-05-19 10:54:29 +0200
commit576f91b1b411013012872a92ee657755d54f15c6 (patch)
tree75f438669f1cfb1c20ee6aa77506f59d623aa748
parentd865b5d16fc3110d95d8ae5fa5c65b722eb4fc0d (diff)
Forgot to commit the README source file
-rw-r--r--README.Rmd8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.Rmd b/README.Rmd
index a4723052..7c9cf5d2 100644
--- a/README.Rmd
+++ b/README.Rmd
@@ -37,7 +37,7 @@ detailed guidance and helpful tools have been developed as detailed in
The simplest usage example that I can think of, using model shorthand notation
(available since mkin 0.9-32) and a built-in dataset is
-```{r}
+```{r, message = FALSE}
library(mkin)
fit <- mkinfit("SFO", FOCUS_2006_C, quiet = TRUE)
plot(fit, show_residuals = TRUE)
@@ -63,12 +63,12 @@ plot(fit2, show_residuals = TRUE)
A fairly complex usage example using another built-in dataset:
-```{r echo = FALSE}
+```{r echo = FALSE, message = FALSE}
# Somehow knitr does not find the signature() function
require(methods)
```
-```{r}
+```{r, message = FALSE}
data <- mkin_wide_to_long(schaefer07_complex_case, time = "time")
model <- mkinmod(
@@ -78,7 +78,7 @@ model <- mkinmod(
C1 = mkinsub("SFO"),
A2 = mkinsub("SFO"), use_of_ff = "max")
-fit3 <- mkinfit(model, data, method.modFit = "Port")
+fit3 <- mkinfit(model, data, method.modFit = "Port", quiet = TRUE)
plot(fit3, show_residuals = TRUE)
#summary(fit3) # Commented out to avoid distraction from README content

Contact - Imprint