SSOneWayANOVATestResult

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

Holds the results of the multiple means tes

  • two sided p value

    Declaration

    Swift

    public var p2Value: FPT?
  • F ratio

    Declaration

    Swift

    public var FStatistic: FPT?
  • p value of the Bartlett test

    Declaration

    Swift

    public var pBartlett: FPT?
  • Alpha

    Declaration

    Swift

    public var alpha: FPT?
  • Undocumented

    Declaration

    Swift

    public var meansEQUAL: Bool?
  • cv

    critical value at alpha

    Declaration

    Swift

    public var cv: FPT?
  • p value of the Levene test

    Declaration

    Swift

    public var pLevene: FPT?
  • total sum of square

    Declaration

    Swift

    public var SSTotal: FPT?
  • residual sum of squares (within groups)

    Declaration

    Swift

    public var SSError: FPT?
  • treatment sum of squares

    Declaration

    Swift

    public var SSTreatment: FPT?
  • error mean sum of squares

    Declaration

    Swift

    public var MSError: FPT?
  • treatment mean sum of squares

    Declaration

    Swift

    public var MSTreatment: FPT?
  • error degrees of freedom

    Declaration

    Swift

    public var dfError: FPT?
  • treatment degrees of freedom

    Declaration

    Swift

    public var dfTreatment: FPT?
  • total degrees of freedom

    Declaration

    Swift

    public var dfTotal: FPT?
  • Returns a description

    Declaration

    Swift

    public var description: String { get }