qweibull()
R語言中的函數用於計算威布爾分布的分位數函數值。
用法: qweibull(x, shape)
參數:
x:數字向量
shape:形狀參數
範例1:
# R Program to compute the value of
# Quantile Weibull Function
# Creating a sequence of x-values
x <- seq(0, 1, by = 0.2)
# Calling qweibull() Function
y <- qweibull(x, shape = 0.5)
y
輸出:
[1] 0.00000000 0.04979304 0.26094282 0.83958871 2.59029039 Inf
範例2:
# R Program to compute the value of
# Quantile Weibull Function
# Creating a sequence of x-values
x <- seq(0, 1, by = 0.02)
# Calling qweibull() Function
y <- qweibull(x, shape = 0.7)
# Plot a graph
plot(y)
輸出:
相關用法
- R語言 qf()用法及代碼示例
- R語言 qtukey()用法及代碼示例
- R語言 qsignrank()用法及代碼示例
- R語言 qwilcox()用法及代碼示例
- R語言 qunif()用法及代碼示例
- R語言 dweibull()用法及代碼示例
- R語言 pweibull()用法及代碼示例
- R語言 ptukey()用法及代碼示例
- R語言 dsignrank()用法及代碼示例
- R語言 psignrank()用法及代碼示例
- R語言 dwilcox()用法及代碼示例
- R語言 pwilcox()用法及代碼示例
- R語言 qcauchy()用法及代碼示例
- R語言 qlogis()用法及代碼示例
- R語言 qlnorm()用法及代碼示例
- R語言 qpois()用法及代碼示例
- R語言 qnbinom()用法及代碼示例
- R語言 qgeom()用法及代碼示例
- R語言 qchisq()用法及代碼示例
- R語言 rweibull()用法及代碼示例
- R語言 ecdf()用法及代碼示例
- R語言 pf()用法及代碼示例
- R語言 punif()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Compute the Value of Quantile Function over Weibull Distribution in R Programming – qweibull() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。