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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。