當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 plogis()用法及代碼示例


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)

輸出:

相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Compute Cumulative Logistic Density in R Programming – plogis() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。