1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/summary.mnp.R
\name{summary.mnp}
\alias{summary.mnp}
\title{Summarizing the results for the Multinomial Probit Models}
\usage{
\method{summary}{mnp}(object, CI = c(2.5, 97.5), ...)
}
\arguments{
\item{object}{An output object from \code{mnp}.}
\item{CI}{A 2 dimensional vector of lower and upper bounds for the credible
intervals used to summarize the results. The default is the equal tail 95
percent credible interval.}
\item{...}{further arguments passed to or from other methods.}
}
\value{
\code{summary.mnp} yields an object of class \code{summary.mnp}
containing the following elements: \item{call}{The call from \code{mnp}.}
\item{n.alt}{The total number of alternatives.} \item{base}{The base
category used for fitting.} \item{n.obs}{The number of observations.}
\item{n.param}{The number of estimated parameters.} \item{n.draws}{The
number of Gibbs draws used for the summary.} \item{coef.table}{The summary
of the posterior distribution of the coefficients. } \item{cov.table}{The
summary of the posterior distribution of the covariance matrix.} This object
can be printed by \code{print.summary.mnp}
}
\description{
\code{summary} method for class \code{mnp}.
}
\seealso{
\code{mnp}
}
\author{
Kosuke Imai, Department of Government and Department of Statistics, Harvard University
\email{imai@Harvard.Edu}
}
\keyword{methods}
|