SSSignTestRestult

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

Sign test results

  • exact p value

    Declaration

    Swift

    public var pValueExact: FPT?
  • asymptotic p value

    Declaration

    Swift

    public var pValueApprox: FPT?
  • number of differences > 0

    Declaration

    Swift

    public var nPosDiff: Int?
  • number of differences < 0

    Declaration

    Swift

    public var nNegDiff: Int?
  • number of ties

    Declaration

    Swift

    public var nTies: Int?
  • sample size

    Declaration

    Swift

    public var total: Int?
  • z value

    Declaration

    Swift

    public var zStat: FPT?
  • Returns a description

    Declaration

    Swift

    public var description: String { get }