rf()
R 語言中的函數用於計算 F 分布的隨機密度。
用法: rf(N, df1, df2)
參數:
N:樣本量
df:自由度
範例1:
# R Program to compute random values
# of F Density
# Setting seed for
# random number generation
set.seed(1000)
# Set sample size
N <- 20
# Calling rf() Function
y <- rf(N, df1 = 2, df2 = 3)
y
輸出:
[1] 0.2254501 19.1565944 0.1462503 0.1443822 0.5184883 0.9231497 [7] 4.0047848 1.5749135 1.8080354 0.6584719 2.5080273 0.8327536 [13] 0.9125265 7.8437920 4.8880169 0.1858029 0.2296163 12.4537679 [19] 0.4680668 12.6245564
範例2:
# R Program to compute random values
# of F Density
# Setting seed for
# random number generation
set.seed(1000)
# Set sample size
N <- 100
# Calling rf() Function
y <- rf(N, df1 = 2, df2 = 3)
# Plot a graph
plot(y)
輸出:
相關用法
- R語言 rchisq()用法及代碼示例
- R語言 rlnorm()用法及代碼示例
- R語言 rcauchy()用法及代碼示例
- R語言 rlogis()用法及代碼示例
- R語言 rnbinom()用法及代碼示例
- R語言 rpois()用法及代碼示例
- R語言 rweibull()用法及代碼示例
- R語言 rsignrank()用法及代碼示例
- R語言 rwilcox()用法及代碼示例
- R語言 density()用法及代碼示例
- R語言 dunif()用法及代碼示例
- R語言 dchisq()用法及代碼示例
- R語言 pchisq()用法及代碼示例
- R語言 dcauchy()用法及代碼示例
- R語言 pcauchy()用法及代碼示例
- R語言 plogis()用法及代碼示例
- R語言 dlogis()用法及代碼示例
- R語言 plnorm()用法及代碼示例
- R語言 qchisq()用法及代碼示例
- R語言 dlnorm()用法及代碼示例
- R語言 dnbinom()用法及代碼示例
- R語言 pnbinom()用法及代碼示例
- R語言 dpois()用法及代碼示例
- R語言 ppois()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Compute Randomly Drawn F Density in R Programming – rf() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。