SSMatchedPairsTTestResult

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

Encapsulates the results of a matched pairs t test

  • Cov

    Declaration

    Swift

    public var covariance: FPT?
  • standard error of the difference

    Declaration

    Swift

    public var stdEDiff: FPT?
  • correlatiopn

    Declaration

    Swift

    public var correlation: FPT?
  • p value of correlation

    Declaration

    Swift

    public var pValueCorr: FPT?
  • effect size

    Declaration

    Swift

    public var effectSizeR: FPT?
  • upper bound of the 95%-confidence interval

    Declaration

    Swift

    public var ci95upper: FPT?
  • lower bound of the 95%-confidence interval

    Declaration

    Swift

    public var ci95lower: FPT?
  • sd of the differences

    Declaration

    Swift

    public var stdDevDiff: FPT?
  • sample size

    Declaration

    Swift

    public var sampleSize: FPT?
  • p value for two sided test

    Declaration

    Swift

    public var p2Value: FPT?
  • df

    degrees of freedom

    Declaration

    Swift

    public var df: FPT?
  • t statistics

    Declaration

    Swift

    public var tStat: FPT?
  • Returns a description

    Declaration

    Swift

    public var description: String { get }