Rev 10525 | Blame | Last modification | View Log | Download | RSS feed
\name{model.extract}\title{Extract Components from a Model Frame}\usage{model.extract(frame, component)model.offset(x)model.response(data, type = "any")model.weights(x)}\alias{model.extract}\alias{model.offset}\alias{model.response}\alias{model.weights}\arguments{\item{frame, x, data}{A model frame.}\item{component}{The name of a components to extract, such as\code{"weights"}, \code{"subset"}.}\item{type}{One of \code{"any"}, \code{"numeric"}, \code{"double"}.Using the either of latter two coerces the result to havestorage mode \code{"double"}.}}\description{Returns the response, offset, subset, weights or otherspecial components of a model frame passed as optional arguments to\code{\link{model.frame}}.}\details{\code{model.offset} and\code{model.response} are equivalent to \code{model.frame(, "offset")}and \code{model.frame(, "response")} respectively.\code{model.weights} is slightly different from\code{model.frame(, "weights")} in not naming the vector it returns.}\value{The specified component of the model frame, usually a vector.}\seealso{\code{\link{model.frame}}, \code{\link{offset}}}\examples{data(esoph)a <- model.frame(cbind(ncases,ncontrols) ~ agegp+tobgp+alcgp, data=esoph)model.extract(a, "response")stopifnot(model.extract(a, "response") == model.response(a))a <- model.frame(ncases/(ncases+ncontrols) ~ agegp+tobgp+alcgp,data = esoph, weights = ncases+ncontrols)model.response(a)model.extract(a, "weights")a <- model.frame(cbind(ncases,ncontrols) ~ agegp,something = tobgp, data = esoph)names(a)stopifnot(model.extract(a, "something") == esoph$tobgp)}\keyword{manip}\keyword{programming}\keyword{models}