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


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


qsignrank()R語言中的函數用於計算數值序列的威爾科克森符號秩統計分布上的分位數函數(QF)的值。

用法: qsignrank(x, n)

參數:
x:數字向量
n:樣本量

範例1:


# R Program to compute the value of
# QF over Wilcoxon Signedrank Distribution
  
# Creating a sequence of x-values
x <- seq(0, 1, by = 0.1)
  
# Calling qsignrank() Function
y <- qsignrank(x, n = 10)
y

輸出:

 [1]  0 15 19 22 25 27 30 33 36 40 55

範例2:


# R Program to compute the value of
# QF over Wilcoxon Signedrank Distribution
  
# Creating a sequence of x-values
x <- seq(0, 1, by = 0.02)
  
# Calling qsignrank() Function
y <- qsignrank(x, n = 15)
  
# Plot a graph
plot(y)

輸出:

相關用法


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