當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 qf()用法及代碼示例


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)

輸出:

相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Compute the value of Quantile Function over F Distribution in R Programming – qf() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。