EM(Icens)
EM()所属R语言包:Icens
A function to compute the NPMLE of p based on the incidence
一个函数来计算根据发病的p NPMLE
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The incidence matrix, A is the m by n matrix that represents the data. There are m probabilities that must be estimated. The EM, or expectation maximization, method is applied to these data.
关联矩阵,An矩阵M的数据。有米的概率,必须估计。的EM,或期望最大化,方法应用到这些数据。
用法----------Usage----------
EM(A, pvec, maxiter=500, tol=1e-12)
参数----------Arguments----------
参数:A
The incidence matrix.
关联矩阵。
参数:pvec
The probability vector.
概率向量。
参数:maxiter
The maximum number of iterations.
最大迭代次数。
参数:tol
The tolerance used to judge convergence.
用来判断收敛的公差。
Details
详情----------Details----------
Lots.
很多。
值----------Value----------
An object of class icsurv containing the following components:
一个对象类icsurv包含以下组件:
参数:pf
The NPMLE of the probability vector.
概率向量NPMLE。
参数:numiter
The number of iterations used.
使用迭代的数量。
参数:converge
A boolean indicating whether the algorithm converged.
一个布尔值,指示是否融合算法。
参数:intmap
If present indicates the real representation of the support for the values in pf.
如果目前的指示支持pf值的真正代表。
作者(S)----------Author(s)----------
Alain Vandal and Robert Gentleman.
参考文献----------References----------
intersection graph of the censored data. The empirical distribution function with arbitrarily grouped, censored and truncated data,
参见----------See Also----------
VEM, ISDM, EMICM,
VEM,ISDM,EMICM
举例----------Examples----------
data(cosmesis)
csub1 <- subset(cosmesis, subset= Trt==0, select=c(L,R))
EM(csub1)
data(pruitt)
EM(pruitt)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|