找回密码
 注册
查看: 509|回复: 0

R语言 wle包 wle.poisson()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-10-1 22:41:43 | 显示全部楼层 |阅读模式
wle.poisson(wle)
wle.poisson()所属R语言包:wle

                                        Robust Estimation in the Poisson Model
                                         在泊松模型的鲁棒估计

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

wle.poisson is used to robust estimate the lambda parameters in the poisson model via Weighted Likelihood.
wle.poisson使用的lambda参数的稳健估计的泊松模型,通过加权似然。


用法----------Usage----------


wle.poisson(x, boot=30, group, num.sol=1,
   raf=c("HD", "NED", "GKL", "PWD", "SCHI2"),
   tau=NULL, tol=10^(-6), equal=10^(-3),
   max.iter=500, verbose=FALSE)



参数----------Arguments----------

参数:x
a vector contain the number of success.
一个向量包含成功的数量。


参数:boot
the number of starting points based on boostrap subsamples to use in the search of the roots.
基于自举子样本的起点,使用在搜索的根的数目。


参数:group
the dimension of the bootstap subsamples. The default value is max(round(length(x)/4),2).
的维度的bootstap子样本。默认值是max(round(length(x)/4),2)。


参数:num.sol
maximum number of roots to be searched.
要搜索的最大根数。


参数:raf
type of Residual adjustment function to be use:
类型的残余调节功能,可以使用:

raf="HD": Hellinger Distance RAF,
raf="HD":Hellinger距离RAF,

raf="NED": Negative Exponential Disparity RAF,
raf="NED":负指数差异RAF,

raf="GKL": Generalized Kullback-Leibler RAF family with parameter tau.
raf="GKL":广义的Kullback-Leibler距离RAF家族与参数tau。

raf="PWD": Power Divergence Measure RAF family with parameter tau.
raf="PWD":功率发散测量RAF家族与参数tau。

raf="SCHI2": Symmetric Chi-Squared Disparity RAF.
raf="SCHI2":对称卡方差异皇家空军。


参数:tau
this is to set the member inside the GKL and PWD family. It must be in [0,1] for GKL and in [-1, Inf] for PWD.
这是GKL和PWD家庭内部成员。它必须是在[0,1] GKL,天道酬勤[-1]为残疾人士。


参数:tol
the absolute accuracy to be used to achieve convergence of the algorithm.
要使用的绝对精度实现算法的收敛性。


参数:equal
the absolute value for which two roots are considered the same. (This parameter must be greater than tol).
绝对的值,两个根被认为是相同的。 (此参数必须大于tol)。


参数:max.iter
maximum number of iterations.
最大迭代次数。


参数:verbose
if TRUE warnings are printed.
如果TRUE警告被打印出来。


值----------Value----------

wle.poisson returns an object of class "wle.poisson".
wle.poisson返回一个对象的class"wle.poisson"的。

Only print method is implemented for this class.
只打印的方法来实现这个类。

The object returned by wle.poisson are:
对象返回wle.poisson是:

<table summary="R valueblock"> <tr valign="top"><td>lambda</td> <td> the estimator of the lambda parameter, one value for each root found.</td></tr> <tr valign="top"><td>tot.weights</td> <td> the sum of the weights divide by the number of observations, one value for each root found.</td></tr> <tr valign="top"><td>weights</td> <td> the weights associated to each observation, one column vector for each root found.</td></tr> <tr valign="top"><td>f.density</td> <td> the non-parametric density estimation.</td></tr> <tr valign="top"><td>m.density</td> <td> the smoothed model.</td></tr> <tr valign="top"><td>delta</td> <td> the Pearson residuals.</td></tr> <tr valign="top"><td>call</td> <td> the match.call().</td></tr> <tr valign="top"><td>tot.sol</td> <td> the number of solutions found.</td></tr> <tr valign="top"><td>not.conv</td> <td> the number of starting points that does not converge after the max.iter iteration are reached.</td></tr>
<table summary="R valueblock"> <tr valign="top"> <TD> lambda</ TD> <TD>的lambda参数的估计,每一根。</ TD> </ TR> <tr valign="top"> <TD> tot.weights</ TD> <TD>的权重总和除以观测值的数量,每根的一个值。</ TD> </ TR> <tr valign="top"> <TD> weights </ TD> <TD>相关的权重给每个观察,每一根发现一个列向量。</ TD> </ TR> <tr valign="top"> <TD> f.density </ TD> <TD>非参数密度估计。</ TD> </ TR> <tr valign="top"> <TD> m.density </ TD> <TD>平滑的模型。</ TD> </ TR> <tr valign="top"> <TD> delta </ TD> <TD>的Pearson残差。 </ TD> </ TR> <tr valign="top"> <TD>call </ TD> <TD> match.call()。</ TD> </ TR> <TR VALIGN = “顶”> <TD> tot.sol </ TD> <TD>找到解决方案的数量。</ TD> </ TR> <tr valign="top"> <TD>not.conv /运输署“<td>达到起点的数目后max.iter迭代不收敛。</ TD> </ TR>

</table>
</ TABLE>


(作者)----------Author(s)----------


Claudio Agostinelli



参考文献----------References----------

Markatou, M., Basu, A., and Lindsay, B.G., (1997) Weighted likelihood estimating equations: The discrete case with applications to logistic regression, Journal of Statistical Planning and Inference, 57, 215-232.
Agostinelli, C., (1998) Inferenza statistica robusta basata sulla funzione di verosimiglianza pesata: alcuni sviluppi,  Ph.D Thesis, Department of Statistics, University of Padova.

实例----------Examples----------


library(wle)

set.seed(1234)

x <- rpois(40,5)
wle.poisson(x)

x <- c(rpois(40,5),rpois(10,20))
wle.poisson(x)


转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-25 00:26 , Processed in 0.021999 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表