print.mix.rd
来自「这个包里面含有利用极大似然估计方法来拟合成组数据和条件数据的有限混合分布模型的函」· RD 代码 · 共 41 行
RD
41 行
\name{print.mix}
\alias{print.mix}
\title{Print Mix Object}
\description{
\code{print.mix} is a function which prints objects of
class \code{"mix"} and returns it invisibly. It is called
via the generic function \code{\link{print}}.
}
\usage{
\method{print}{mix}(x, digits = 4, \dots)
}
\arguments{
\item{x}{an object of class \code{"mix"}, usually, the results
returned by the model fitting function \code{\link{mix}}.}
\item{digits}{how many significant digits are to be used.}
\item{\dots}{further arguments passed to or from other methods.}
}
\details{
This function only prints information about the mixture
model, which are the estimated parameters of the mixture,
the distribution of components and the constraints on
the parameters. Also, the values for the parameters are
rounded to the specified number of decimal places (default 4).
The whole object can be printed out using the function
\code{\link{print.default}}.
}
\seealso{
\code{\link{mix}} for model fitting. \code{\link{print.default}} for
printing the whole object.
}
\examples{
data(pike65)
data(pikepar)
fit <- mix(pike65, pikepar, "gamma", mixconstr(consigma = "CCV"), emsteps = 3)
fit
print(fit)
print.mix(fit)
print.default(fit)
}
\keyword{print}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?