当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 dlogis()用法及代码示例


dlogis()R语言中的函数用于计算分布的逻辑密度。它还创建了逻辑分布密度图。

用法: dlogis(vec)

参数:
vec:x-values 的密度向量

范例1:


# R program to calculate 
# logistic density
  
# Create a vector of x-values
x <- seq(-1, 1, by = 0.1)
  
# Calling the dlogis() function
y <- dlogis(x)
y

输出:

 [1] 0.1966119 0.2055003 0.2139097 0.2217129 0.2287842 0.2350037 0.2402607
 [8] 0.2444583 0.2475166 0.2493760 0.2500000 0.2493760 0.2475166 0.2444583
[15] 0.2402607 0.2350037 0.2287842 0.2217129 0.2139097 0.2055003 0.1966119

范例2:


# R program to calculate 
# logistic density
  
# Create a vector of x-values
x <- seq(-1, 1, by = 0.01)
  
# Calling the dlogis() function
y <- dlogis(x)
  
# Plot the graph
plot(y)

输出:

相关用法


注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Compute the Logistic Density in R Programming – dlogis() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。