% File src/library/stats/man/profile.Rd % Part of the R package, http://www.R-project.org % Copyright 1995-2007 R Core Team % Distributed under GPL 2 or later \newcommand{\CRANpkg}{\href{http://CRAN.R-project.org/package=#1}{\pkg{#1}}} \name{profile} \alias{profile} \title{Generic Function for Profiling Models} \usage{ profile(fitted, \dots) } \arguments{ \item{fitted}{the original fitted model object.} \item{\dots}{additional parameters. See documentation on individual methods.} } \description{ Investigates behavior of objective function near the solution represented by \code{fitted}. See documentation on method functions for further details. } \value{ A list with an element for each parameter being profiled. See the individual methods for further details. } \seealso{ \code{\link{profile.nls}}, \code{\link[MASS:confint]{profile.glm}} in package \CRANpkg{MASS}, \ldots For profiling R code, see \code{\link{Rprof}}. } \keyword{models}