pf()
R 語言中的函數用於計算 F 累積分布函數在一係列數值上的密度。它還繪製了 F 累積分布的密度圖。
用法: pf(x, df1, df2)
參數:
x:數字向量
df:自由度
範例1:
# R Program to compute
# Cumulative F Density
# Creating a sequence of x-values
x <- seq(1, 30, by = 2)
# Calling pf() Function
y <- pf(x, df1 = 2, df2 = 3)
y
輸出:
[1] 0.5352420 0.8075499 0.8891420 0.9258675 0.9460051 0.9584308 0.9667275 [8] 0.9725899 0.9769124 0.9802073 0.9827867 0.9848509 0.9865331 0.9879255 [15] 0.9890935
範例2:
# R Program to compute
# Cumulative F Density
# Creating a sequence of x-values
x <- seq(1, 30, by = 0.2)
# Calling pf() Function
y <- pf(x, df1 = 3, df2 = 7)
# Plot a graph
plot(y)
輸出:
相關用法
- R語言 ecdf()用法及代碼示例
- 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 F Cumulative Distribution Function in R Programming – pf() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。