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


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


qlnorm()R语言中的函数用于计算对数正态分位数函数的值。它还创建了对数正态分布的分位数函数图。

用法: qlnorm(vec)

参数:
vec:x-values 为正常密度

范例1:


# R program to compute value of
# log normal quantile function
  
# Creating x-values for density
x <- seq(0, 1, by = 0.2)
  
# Calling qlnorm() function
y <- qlnorm(x)
y

输出:

[1] 0.0000000 0.4310112 0.7761984 1.2883304 2.3201254       Inf

范例2:


# R program to compute value of
# log normal quantile function
  
# Creating x-values for density
x <- seq(0, 1, by = 0.02)
  
# Calling qlnorm() function
y <- qlnorm(x)
  
# Plot a graph
plot(y)

输出:

相关用法


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