SSMannWhitneyUTestResult

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

Holds the results of the Mann-Whitney U test

  • sum of ranks in set 1

    Declaration

    Swift

    public var sumRanks1: FPT?
  • sum of ranks in set 2

    Declaration

    Swift

    public var sumRanks2: FPT?
  • mean of ranks in set 1

    Declaration

    Swift

    public var meanRank1: FPT?
  • mean of ranks in set 2

    Declaration

    Swift

    public var meanRank2: FPT?
  • sum of tied ranks

    Declaration

    Swift

    public var sumTiedRanks: FPT?
  • number of ties

    Declaration

    Swift

    public var nTies: Int?
  • U

    Declaration

    Swift

    public var UMannWhitney: FPT?
  • Wilcoxon W

    Declaration

    Swift

    public var WilcoxonW: FPT?
  • Z

    Declaration

    Swift

    public var zStat: FPT?
  • two sided approximated p value

    Declaration

    Swift

    public var p2Approx: FPT?
  • two sided exact p value

    Declaration

    Swift

    public var p2Exact: FPT?
  • one sided approximated p value

    Declaration

    Swift

    public var p1Approx: FPT?
  • one sided exact p value

    Declaration

    Swift

    public var p1Exact: FPT?
  • effect size

    Declaration

    Swift

    public var effectSize: FPT?
  • Returns a description

    Declaration

    Swift

    public var description: String { get }