blob: 3eda08d2c7357459e8a0763c3c8af76a1d10c155 (
plain) (
tree)
|
|
\name{mkinparplot}
\alias{mkinparplot}
\title{
Function to plot the confidence intervals obtained using
\code{\link{mkinfit}}
}
\description{
This function plots the confidence intervals for the parameters
fitted using \code{\link{mkinfit}}.
}
\usage{
mkinparplot(object)
}
\arguments{
\item{object}{
A fit represented in an \code{\link{mkinfit}} object.
}
}
\value{
Nothing is returned by this function, as it is called for its side effect, namely to produce a plot.
}
\author{
Johannes Ranke
}
\examples{
model <- mkinmod(
T245 = list(type = "SFO", to = c("phenol"), sink = FALSE),
phenol = list(type = "SFO", to = c("anisole")),
anisole = list(type = "SFO"), use_of_ff = "max")
fit <- mkinfit(model, subset(mccall81_245T, soil == "Commerce"), quiet = TRUE)
mkinparplot(fit)
}
\keyword{ hplot }
|