SSRunsTestResult

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

Holds the results of the runs test

  • Number of items >= cutting point

    Declaration

    Swift

    public var nGTEcp: FPT?
  • Number of items < cutting point

    Declaration

    Swift

    public var nLTcp: FPT?
  • Number of runs

    Declaration

    Swift

    public var nRuns: FPT?
  • z value

    Declaration

    Swift

    public var zStat: FPT?
  • critical value

    Declaration

    Swift

    public var criticalValue: FPT?
  • p value

    Declaration

    Swift

    public var pValueExact: FPT?
  • p value asymptotic

    Declaration

    Swift

    public var pValueAsymp: FPT?
  • cp

    Undocumented

    Declaration

    Swift

    public var cp: FPT?
  • Array of differences

    Declaration

    Swift

    public var diffs: Array<FPT>?
  • Randomness?

    Declaration

    Swift

    public var randomness: Bool?
  • Returns a description

    Declaration

    Swift

    public var description: String { get }