Weibull
位于 stats
包(package)。 说明
具有参数 shape
和 scale
的威布尔分布的密度、分布函数、分位数函数和随机生成。
用法
dweibull(x, shape, scale = 1, log = FALSE)
pweibull(q, shape, scale = 1, lower.tail = TRUE, log.p = FALSE)
qweibull(p, shape, scale = 1, lower.tail = TRUE, log.p = FALSE)
rweibull(n, shape, scale = 1)
参数
x, q |
分位数向量。 |
p |
概率向量。 |
n |
观察次数。如果是 |
shape, scale |
形状和尺度参数,后者默认为1。 |
log, log.p |
逻辑性;如果为 TRUE,则概率 p 以 log(p) 形式给出。 |
lower.tail |
逻辑性;如果为 TRUE(默认值),则概率为 ,否则为 。 |
细节
具有 shape
参数 和 scale
参数 的威布尔分布的密度为
对于 。累积分布函数为 上的 ,平均值为 和 。
值
dweibull
给出密度,pweibull
给出分布函数,qweibull
给出分位数函数,rweibull
生成随机偏差。
无效参数将导致返回值 NaN
,并带有警告。
结果的长度由 rweibull
的 n
确定,并且是其他函数的数值参数长度的最大值。
除 n
之外的数字参数将被回收到结果的长度。仅使用逻辑参数的第一个元素。
注意
累积危险 为
-pweibull(t, a, b, lower = FALSE, log = TRUE)
这只是 。
例子
x <- c(0, rlnorm(50))
all.equal(dweibull(x, shape = 1), dexp(x))
all.equal(pweibull(x, shape = 1, scale = pi), pexp(x, rate = 1/pi))
## Cumulative hazard H():
all.equal(pweibull(x, 2.5, pi, lower.tail = FALSE, log.p = TRUE),
-(x/pi)^2.5, tolerance = 1e-15)
all.equal(qweibull(x/11, shape = 1, scale = pi), qexp(x/11, rate = 1/pi))
来源
[dpq]weibull
直接根据定义计算。 rweibull
使用反转。
参考
Johnson, N. L., Kotz, S. and Balakrishnan, N. (1995) Continuous Univariate Distributions, volume 1, chapter 21. Wiley, New York.
也可以看看
Distributions 适用于其他标准分布,包括 Exponential,它是威布尔分布的特殊情况。
相关用法
- R Wilcoxon Wilcoxon 秩和统计量的分布
- R stlmethods STL 对象的方法
- R medpolish 矩阵的中值波兰(稳健双向分解)
- R naprint 调整缺失值
- R summary.nls 总结非线性最小二乘模型拟合
- R summary.manova 多元方差分析的汇总方法
- R formula 模型公式
- R nls.control 控制 nls 中的迭代
- R aggregate 计算数据子集的汇总统计
- R deriv 简单表达式的符号和算法导数
- R kruskal.test Kruskal-Wallis 秩和检验
- R quade.test 四方测试
- R decompose 移动平均线的经典季节性分解
- R plot.stepfun 绘制阶跃函数
- R alias 查找模型中的别名(依赖项)
- R qqnorm 分位数-分位数图
- R eff.aovlist 多层方差分析的计算效率
- R pairwise.t.test 成对 t 检验
- R loglin 拟合对数线性模型
- R predict.smooth.spline 通过平滑样条拟合进行预测
- R bartlett.test 方差齐性的 Bartlett 检验
- R influence.measures 回归删除诊断
- R loess.control 设置黄土参数
- R Normal 正态分布
- R summary.lm 总结线性模型拟合
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 The Weibull Distribution。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。