qf()
R語言中的函數用於計算數值序列在F分布上的分位數函數值。它還創建了 F 分布上的分位數函數的密度圖。
用法: qf(x, df1, df2)
參數:
x:數字向量
df:自由度
範例1:
# R Program to compute value of
# Quantile Function over F Distribution
# Creating a sequence of x-values
x <- seq(0, 1, by = 0.2)
# Calling qf() Function
y <- qf(x, df1 = 2, df2 = 3)
y
輸出:
[1] 0.0000000 0.2405958 0.6085817 1.2630236 2.8860266 Inf
範例2:
# R Program to compute the value of
# Quantile Function over F Distribution
# Creating a sequence of x-values
x <- seq(0, 1, by = 0.02)
# Calling qf() Function
y <- qf(x, df1 = 2, df2 = 3)
# Plot a graph
plot(y)
輸出:
相關用法
- R語言 qweibull()用法及代碼示例
- R語言 qtukey()用法及代碼示例
- R語言 qsignrank()用法及代碼示例
- R語言 qwilcox()用法及代碼示例
- R語言 qunif()用法及代碼示例
- R語言 ptukey()用法及代碼示例
- R語言 dsignrank()用法及代碼示例
- R語言 psignrank()用法及代碼示例
- R語言 dwilcox()用法及代碼示例
- R語言 pwilcox()用法及代碼示例
- R語言 qcauchy()用法及代碼示例
- R語言 qlogis()用法及代碼示例
- R語言 qlnorm()用法及代碼示例
- R語言 qpois()用法及代碼示例
- R語言 qnbinom()用法及代碼示例
- R語言 qgeom()用法及代碼示例
- R語言 qchisq()用法及代碼示例
- R語言 ecdf()用法及代碼示例
- R語言 pf()用法及代碼示例
- R語言 punif()用法及代碼示例
- R語言 dunif()用法及代碼示例
- R語言 quantile()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Compute the value of Quantile Function over F Distribution in R Programming – qf() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。