logistol.int(JavaGD)
logistol.int()所属R语言包:JavaGD
Logistic (or Log-Logistic) Tolerance Intervals
MF容忍区间(或log - MF)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Provides 1-sided or 2-sided tolerance intervals for data distributed according to a logistic or log-logistic distribution.
提供单面或双面的容忍区间分配的后勤或logMF配送的数据。
用法----------Usage----------
logistol.int(x, alpha = 0.05, P = 0.99, log.log = FALSE,
side = 1)
参数----------Arguments----------
参数:x
A vector of data which is distributed according to a logistic or log-logistic distribution.
的矢量数据分配到后勤或logMF配送。
参数:alpha
The level chosen such that 1-alpha is the confidence level.
选择的级别,这样1-alpha的信心水平。
参数:P
The proportion of the population to be covered by this tolerance interval.
本容忍区间所涵盖的人口比例。
参数:log.log
If TRUE, then the data is considered to be from a log-logistic distribution, in which case the output gives tolerance intervals for the log-logistic distribution. The default is FALSE.
TRUE如果,然后数据被认为是从一个log,MF配送,在这种情况下,输出的logMF配送给容忍区间。默认的FALSE。
参数:side
Whether a 1-sided or 2-sided tolerance interval is required (determined by side = 1 or side = 2, respectively).
无论是单面或双面的容忍区间是必需的(的side = 1或side = 2,分别确定)。
Details
详细信息----------Details----------
Recall that if the random variable X is distributed according to a log-logistic distribution, then the random variable Y = ln(X) is distributed according to a logistic distribution.
回想一下,如果随机变量X分配到一个logMF配送,那么随机变量Y = ln(X)被分配到MF配送。
值----------Value----------
logistol.int returns a data frame with items:
logistol.int传回一个项目数据框:
参数:alpha
The specified significance level.
指定的显着性水平。
参数:P
The proportion of the population covered by this tolerance interval.
本容忍区间覆盖的人口比例。
参数:1-sided.lower
The 1-sided lower tolerance bound. This is given only if side = 1.
单面较低的公差范围。这是只有side = 1。
参数:1-sided.upper
The 1-sided upper tolerance bound. This is given only if side = 1.
单面上公差范围。这是只有side = 1。
参数:2-sided.lower
The 2-sided lower tolerance bound. This is given only if side = 2.
双面较低的公差范围。这是只有side = 2。
参数:2-sided.upper
The 2-sided upper tolerance bound. This is given only if side = 2.
双面公差上限的约束。这是只有side = 2。
参考文献----------References----------
31, 873–880.
参见----------See Also----------
Logistic
Logistic
实例----------Examples----------
## 90%/95% 1-sided logistic tolerance intervals for a sample[#90%/ 95%1-双面MF容忍区间样品]
## of size 20. [#大小为20。]
set.seed(100)
x <- rlogis(20, 5, 1)
out <- logistol.int(x = x, alpha = 0.10, P = 0.95,
log.log = FALSE, side = 1)
out
plottol(out, x, plot.type = "control", side = "two",
x.lab = "Logistic Data")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|