qlogis()
R語言中的函數用於計算邏輯分位數函數的值。它還創建邏輯密度分布的分位數函數圖。
用法: qlogis(vec)
參數:
vec:x-values 為正常密度
範例1:
# R program to compute value of
# logistic quantile function
# Creating x-values for density
x <- seq(0, 1, by = 0.2)
# Calling qlogis() function
y <- qlogis(x)
y
輸出:
[1] -Inf -1.3862944 -0.4054651 0.4054651 1.3862944 Inf
範例2:
# R program to compute value of
# logistic quantile function
# Creating x-values for density
x <- seq(0, 1, by = 0.02)
# Calling qlogis() function
y <- qlogis(x)
# Plot a graph
plot(y)
輸出:
相關用法
- R語言 qcauchy()用法及代碼示例
- R語言 qlnorm()用法及代碼示例
- R語言 qpois()用法及代碼示例
- R語言 qnbinom()用法及代碼示例
- R語言 qf()用法及代碼示例
- R語言 qweibull()用法及代碼示例
- R語言 qtukey()用法及代碼示例
- R語言 qsignrank()用法及代碼示例
- R語言 qwilcox()用法及代碼示例
- R語言 qgeom()用法及代碼示例
- R語言 qunif()用法及代碼示例
- R語言 qchisq()用法及代碼示例
- R語言 plogis()用法及代碼示例
- R語言 dlogis()用法及代碼示例
- R語言 rlogis()用法及代碼示例
- R語言 quantile()用法及代碼示例
- R語言 lgamma()用法及代碼示例
- R語言 trigamma()用法及代碼示例
- R語言 ecdf()用法及代碼示例
- R語言 pf()用法及代碼示例
- R語言 integrate()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Compute value of Logistic Quantile Function in R Programming – qlogis() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。