SSVarianceEqualityTestResult

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

Result of tests for equality of variances (Bartlett, Levene, Brown-Forsythe)

  • df

    degrees of freedom

    Declaration

    Swift

    public var df: FPT?
  • critical value for alpha = 0.1

    Declaration

    Swift

    public var cv90Pct: FPT?
  • critical value for alpha = 0.05

    Declaration

    Swift

    public var cv95Pct: FPT?
  • critical value for alpha = 0.01

    Declaration

    Swift

    public var cv99Pct: FPT?
  • critical value for alpha as set by the call

    Declaration

    Swift

    public var cvAlpha: FPT?
  • p value (= (1 - alpha)-quantile of testStatistic

    Declaration

    Swift

    public var pValue: FPT?
  • test statistic value

    Declaration

    Swift

    public var testStatistic: FPT?
  • set to true iff pValue >= alpha

    Declaration

    Swift

    public var equality: Bool?
  • Test type

    Declaration

    Swift

    public var testType: SSVarTestType?
  • Returns a description

    Declaration

    Swift

    public var description: String { get }