ecdf()
R语言中的函数用于计算和绘制数值向量的经验累积分布函数的值。
用法: ecdf(x)
参数:
x:数字向量
范例1:
# R Program to compute the value of
# Empirical Cumulative Distribution Function
# Creating a Numeric Vector
x <- seq(1, 50, by = 2)
# Calling ecdf() Function
y <- ecdf(x)
y
输出:
Empirical CDF Call:ecdf(x) x[1:25] = 1, 3, 5, ..., 47, 49
范例2:
# R Program to compute the value of
# Empirical Cumulative Distribution Function
# Creating a random vector
x <- rnorm(30)
# Calling ecdf() Function
y <- ecdf(x)
# Plot a graph
plot(y)
输出:
相关用法
- R语言 pf()用法及代码示例
- R语言 pweibull()用法及代码示例
- R语言 pchisq()用法及代码示例
- R语言 pcauchy()用法及代码示例
- R语言 plogis()用法及代码示例
- R语言 plnorm()用法及代码示例
- R语言 pnbinom()用法及代码示例
- R语言 ppois()用法及代码示例
- R语言 qf()用法及代码示例
- R语言 qweibull()用法及代码示例
- R语言 qtukey()用法及代码示例
- R语言 qsignrank()用法及代码示例
- R语言 qwilcox()用法及代码示例
- R语言 qunif()用法及代码示例
- R语言 ptukey()用法及代码示例
- R语言 dsignrank()用法及代码示例
- R语言 psignrank()用法及代码示例
- R语言 dwilcox()用法及代码示例
- R语言 pwilcox()用法及代码示例
- R语言 punif()用法及代码示例
- R语言 dunif()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Compute the Value of Empirical Cumulative Distribution Function in R Programming – ecdf() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。