aboutsummaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2020-11-09 14:23:16 +0100
committerJohannes Ranke <jranke@uni-bremen.de>2020-11-09 14:23:16 +0100
commit6464d3999338d34c081f360694dbc0bc0abf68cb (patch)
tree750c7196b3b7e3f995f72e62c77a3978ddca5994 /man
parenta52d76a13f36c112e27383af1cac3f98b1bbed0a (diff)
Add plot method for saem.mmkin objects
Diffstat (limited to 'man')
-rw-r--r--man/plot.nlme.mmkin.Rd8
-rw-r--r--man/plot.saem.mmkin.Rd94
2 files changed, 96 insertions, 6 deletions
diff --git a/man/plot.nlme.mmkin.Rd b/man/plot.nlme.mmkin.Rd
index 5f0f0ef1..f426f77b 100644
--- a/man/plot.nlme.mmkin.Rd
+++ b/man/plot.nlme.mmkin.Rd
@@ -6,7 +6,7 @@
\usage{
\method{plot}{nlme.mmkin}(
x,
- i = 1:ncol(x$mmkin_orig),
+ i = 1:ncol(x$mmkin),
obs_vars = names(x$mkinmod$map),
standardized = TRUE,
xlab = "Time",
@@ -21,8 +21,7 @@
pch_ds = 1:length(i),
col_ds = pch_ds + 1,
lty_ds = col_ds,
- frame = TRUE,
- ...
+ frame = TRUE
)
}
\arguments{
@@ -66,9 +65,6 @@ corresponding model prediction lines for the different datasets.}
\item{lty_ds}{Line types to be used for the model predictions.}
\item{frame}{Should a frame be drawn around the plots?}
-
-\item{\dots}{Further arguments passed to \code{\link{plot.mkinfit}} and
-\code{\link{mkinresplot}}.}
}
\value{
The function is called for its side effect.
diff --git a/man/plot.saem.mmkin.Rd b/man/plot.saem.mmkin.Rd
new file mode 100644
index 00000000..1f674bd7
--- /dev/null
+++ b/man/plot.saem.mmkin.Rd
@@ -0,0 +1,94 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/plot.saem.mmkin.R
+\name{plot.saem.mmkin}
+\alias{plot.saem.mmkin}
+\title{Plot an saem fitted nonlinear mixed model obtained via an mmkin row object}
+\usage{
+\method{plot}{saem.mmkin}(
+ x,
+ i = 1:ncol(x$mmkin),
+ obs_vars = names(x$mkinmod$map),
+ standardized = TRUE,
+ xlab = "Time",
+ xlim = range(x$data$time),
+ resplot = c("predicted", "time"),
+ ymax = "auto",
+ maxabs = "auto",
+ ncol.legend = ifelse(length(i) <= 3, length(i) + 1, ifelse(length(i) <= 8, 3, 4)),
+ nrow.legend = ceiling((length(i) + 1)/ncol.legend),
+ rel.height.legend = 0.03 + 0.08 * nrow.legend,
+ rel.height.bottom = 1.1,
+ pch_ds = 1:length(i),
+ col_ds = pch_ds + 1,
+ lty_ds = col_ds,
+ frame = TRUE,
+ ...
+)
+}
+\arguments{
+\item{x}{An object of class \code{\link{saem.mmkin}}}
+
+\item{i}{A numeric index to select datasets for which to plot the saem fit,
+in case plots get too large}
+
+\item{obs_vars}{A character vector of names of the observed variables for
+which the data and the model should be plotted. Defauls to all observed
+variables in the model.}
+
+\item{standardized}{Should the residuals be standardized? Only takes effect if
+\code{resplot = "time"}.}
+
+\item{xlab}{Label for the x axis.}
+
+\item{xlim}{Plot range in x direction.}
+
+\item{resplot}{Should the residuals plotted against time or against
+predicted values?}
+
+\item{ymax}{Vector of maximum y axis values}
+
+\item{maxabs}{Maximum absolute value of the residuals. This is used for the
+scaling of the y axis and defaults to "auto".}
+
+\item{ncol.legend}{Number of columns to use in the legend}
+
+\item{nrow.legend}{Number of rows to use in the legend}
+
+\item{rel.height.legend}{The relative height of the legend shown on top}
+
+\item{rel.height.bottom}{The relative height of the bottom plot row}
+
+\item{pch_ds}{Symbols to be used for plotting the data.}
+
+\item{col_ds}{Colors used for plotting the observed data and the
+corresponding model prediction lines for the different datasets.}
+
+\item{lty_ds}{Line types to be used for the model predictions.}
+
+\item{frame}{Should a frame be drawn around the plots?}
+
+\item{...}{Further arguments passed to \code{\link{plot}}.}
+}
+\value{
+The function is called for its side effect.
+}
+\description{
+Plot an saem fitted nonlinear mixed model obtained via an mmkin row object
+}
+\examples{
+ds <- lapply(experimental_data_for_UBA_2019[6:10],
+ function(x) x$data[c("name", "time", "value")])
+names(ds) <- paste0("ds ", 6:10)
+dfop_sfo <- mkinmod(parent = mkinsub("DFOP", "A1"),
+ A1 = mkinsub("SFO"), quiet = TRUE)
+\dontrun{
+f <- mmkin(list("DFOP-SFO" = dfop_sfo), ds, quiet = TRUE)
+plot(f[, 3:4], standardized = TRUE)
+
+f_saem <- saem(f)
+plot(f_saem)
+}
+}
+\author{
+Johannes Ranke
+}

Contact - Imprint