plogis()
R語言中的函數用於計算分布的邏輯累積密度。它還創建了邏輯累積分布的密度圖。
用法: plogis(vec)
參數:
vec:x-values 的密度向量
範例1:
# R program to calculate
# cumulative logistic density
# Create a vector of x-values
x <- seq(-1, 1, by = 0.1)
# Calling the plogis() function
y <- plogis(x)
y
輸出:
[1] 0.2689414 0.2890505 0.3100255 0.3318122 0.3543437 0.3775407 0.4013123 [8] 0.4255575 0.4501660 0.4750208 0.5000000 0.5249792 0.5498340 0.5744425 [15] 0.5986877 0.6224593 0.6456563 0.6681878 0.6899745 0.7109495 0.7310586
範例2:
# R program to calculate
# cumulative logistic density
# Create a vector of x-values
x <- seq(-20, 20, by = 0.1)
# Calling the plogis() function
y <- plogis(x)
# Plot the graph
plot(y)
輸出:
相關用法
- R語言 dlogis()用法及代碼示例
- R語言 rlogis()用法及代碼示例
- R語言 pchisq()用法及代碼示例
- R語言 pcauchy()用法及代碼示例
- R語言 plnorm()用法及代碼示例
- R語言 pnbinom()用法及代碼示例
- R語言 ppois()用法及代碼示例
- R語言 pweibull()用法及代碼示例
- R語言 density()用法及代碼示例
- R語言 qlogis()用法及代碼示例
- R語言 ecdf()用法及代碼示例
- R語言 pf()用法及代碼示例
- R語言 dunif()用法及代碼示例
- R語言 rf()用法及代碼示例
- R語言 dchisq()用法及代碼示例
- R語言 dcauchy()用法及代碼示例
- R語言 rchisq()用法及代碼示例
- R語言 rlnorm()用法及代碼示例
- R語言 rcauchy()用法及代碼示例
- R語言 qchisq()用法及代碼示例
- R語言 dlnorm()用法及代碼示例
- R語言 dnbinom()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Compute Cumulative Logistic Density in R Programming – plogis() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。