pitman(smoothmest)
pitman()所属R语言包:smoothmest
Pitman location estimator
皮特曼位置估计
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Pitman estimator of one-dimensional location, optimal with scale assumed to be known. Calculated by brute force (using integrate).
皮特曼一维的位置,带有刻度的最佳估计假设为已知。用蛮力计算(使用integrate)。
用法----------Usage----------
pitman(y, d=ddoublex, lower=-Inf, upper=Inf, s=mad(y), ...)
参数----------Arguments----------
参数:y
numeric vector. Data set.
数字矢量。数据集。
参数:d
a density function defining the distribution for which the Pitman estimator is computed.
皮特曼估计计算的密度函数定义的分布。
参数:lower
numeric. Lower bound for the involved integrals (should be -Inf unless there are numerical problems).
数字。下界所涉及的积分(应该是-Inf除非有数字的问题)。
参数:upper
numeric. Lower bound for the involved integrals (should be Inf unless there are numerical problems).
数字。下界所涉及的积分(应该是Inf除非有数字的问题)。
参数:s
numeric. Estimated or assumed scale/standard deviation.
数字。估计或假设的规模/标准差。
参数:...
further arguments to be passed on to the density function d.
进一步的参数传递的密度函数d。
值----------Value----------
The estimated value.
的估计值。
(作者)----------Author(s)----------
Christian Hennig
<a href="mailto:chrish@stats.ucl.ac.uk">chrish@stats.ucl.ac.uk</a>
<a href="http://www.homepages.ucl.ac.uk/~ucakche/">http://www.homepages.ucl.ac.uk/~ucakche/</a>
参考文献----------References----------
Pitman, E.J. (1939) The estimation of the location and scale parameters of a continuous population of any given form. Biometrika 30, 391-421.
参见----------See Also----------
smoothm
smoothm
实例----------Examples----------
set.seed(10001)
y <- rdoublex(7)
pitman(y,ddoublex)
pitman(y,dcauchy)
pitman(y,dnorm)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|