From 576f91b1b411013012872a92ee657755d54f15c6 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Tue, 19 May 2015 10:54:29 +0200 Subject: Forgot to commit the README source file --- README.Rmd | 8 ++++---- 1 file 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 -- cgit v1.2.1