⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 print.mix.rd

📁 这个包里面含有利用极大似然估计方法来拟合成组数据和条件数据的有限混合分布模型的函数
💻 RD
字号:
\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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -