SSWilcoxonMatchedPairsTestResult

public struct SSWilcoxonMatchedPairsTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint

Holds the results of the Wilcoxon test for matched pairs

  • two sided p value

    Declaration

    Swift

    public var p2Value: FPT?
  • sample size

    Declaration

    Swift

    public var sampleSize: FPT?
  • number of ranks > 0

    Declaration

    Swift

    public var nPosRanks: Int?
  • number of ranks < 0

    Declaration

    Swift

    public var nNegRanks: Int?
  • number of ties

    Declaration

    Swift

    public var nTies: Int?
  • number of zero valued differences

    Declaration

    Swift

    public var nZeroDiff: Int?
  • sum of negative ranks

    Declaration

    Swift

    public var sumNegRanks: FPT?
  • sum of positive ranks

    Declaration

    Swift

    public var sumPosRanks: FPT?
  • mean of negative ranks

    Declaration

    Swift

    public var meanPosRanks: FPT?
  • mean of positive ranks

    Declaration

    Swift

    public var meanNegRanks: FPT?
  • z statistic

    Declaration

    Swift

    public var zStat: FPT?
  • Cohen’s d

    Declaration

    Swift

    public var dCohen: FPT?
  • Returns a description

    Declaration

    Swift

    public var description: String { get }