wilcoxonSignedRank

Same as the overload, but allows testing whether a range is stochastically less than or greater than a fixed value mu rather than paired elements of a second range.

  1. TestRes wilcoxonSignedRank(T before, U after, Alt alt = Alt.twoSided, uint exactThresh = 50)
  2. TestRes wilcoxonSignedRank(T data, double mu, Alt alt = Alt.twoSided, uint exactThresh = 50)
    wilcoxonSignedRank
    (
    T
    )
    (
    ,
    double mu
    ,,
    uint exactThresh = 50
    )
    if (
    doubleInput!(T) &&
    is(typeof(data.front - mu) : double)
    )

Meta