Structures

The following structures are available globally.

  • Struct provides a matrix-like crosstable. Elements are accessible by c[row, column].

    Precondition

    Rows and columns must be named. Row- and column- names are defined as generics. The content of one cell is generic too.
    See more

    Declaration

    Swift

    public struct SSCrosstab<N, R, C, FPT> : Codable where N : Comparable, N : Decodable, N : Encodable, N : Hashable, R : Comparable, R : Decodable, R : Encodable, R : Hashable, C : Comparable, C : Decodable, C : Encodable, C : Hashable, FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • One “row” of the frequency table Containe: absolute Freq, relative Freq, Percent

    See more

    Declaration

    Swift

    public struct SSFrequencyTableItem<SSElement, FPT> where SSElement : Comparable, SSElement : Hashable, FPT : SSFloatingPoint
  • One “row” of the cumulative frequency table Containe: cumulative Freq, cumulative relative Freq

    See more

    Declaration

    Swift

    public struct SSCumulativeFrequencyTableItem<SSElement, FPT> where SSElement : Comparable, SSElement : Hashable, FPT : SSFloatingPoint
  • Confidence interval struct

    See more

    Declaration

    Swift

    public struct SSConfIntv<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Quartile struct

    See more

    Declaration

    Swift

    public struct SSQuartile<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Struct containing descriptive stats

    See more

    Declaration

    Swift

    public struct SSDescriptiveStats<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Parameters of a continuous probability distribution

    See more

    Declaration

    Swift

    public struct SSProbDistParams<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Undocumented

    See more

    Declaration

    Swift

    public struct SSGrubbsTestResult<T, FPT> : CustomStringConvertible, Codable where T : Comparable, T : Decodable, T : Encodable, T : Hashable, FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Undocumented

    See more

    Declaration

    Swift

    public struct SSESDTestResult<T, FPT> : CustomStringConvertible, Codable where T : Comparable, T : Decodable, T : Encodable, T : Hashable, FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Results of the KS one sample test. The fields actually used depend on the target distribution.

    See more

    Declaration

    Swift

    public struct SSKSTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Results of the Anderson Darling test

    See more

    Declaration

    Swift

    public struct SSADTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Result of tests for equality of variances (Bartlett, Levene, Brown-Forsythe)

    See more

    Declaration

    Swift

    public struct SSVarianceEqualityTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Results of the two sample t-Test

    See more

    Declaration

    Swift

    public struct SS2SampleTTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Struct holding the results of the one sample t test

    See more

    Declaration

    Swift

    public struct SSOneSampleTTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Encapsulates the results of a matched pairs t test

    See more

    Declaration

    Swift

    public struct SSMatchedPairsTTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Holds the results of the chi^2 variance test

    See more

    Declaration

    Swift

    public struct SSChiSquareVarianceTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Holds the results of the multiple means tes

    See more

    Declaration

    Swift

    public struct SSOneWayANOVATestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Holds the results of the F test for equal variances

    See more

    Declaration

    Swift

    public struct SSFTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Holds the results of Box Ljung Autocorrelation

    See more

    Declaration

    Swift

    public struct SSBoxLjungResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Holds the results of the runs test

    See more

    Declaration

    Swift

    public struct SSRunsTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Holds the results of the Mann-Whitney U test

    See more

    Declaration

    Swift

    public struct SSMannWhitneyUTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Holds the results of the Wilcoxon test for matched pairs

    See more

    Declaration

    Swift

    public struct SSWilcoxonMatchedPairsTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Sign test results

    See more

    Declaration

    Swift

    public struct SSSignTestRestult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Binomial test results

    See more

    Declaration

    Swift

    public struct SSBinomialTestResult<T, FPT> : CustomStringConvertible, Codable where T : Comparable, T : Decodable, T : Encodable, T : Hashable, FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Results of the KS-2-Sample test

    See more

    Declaration

    Swift

    public struct SSKSTwoSampleTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Holds the results of the two sample runs test

    See more

    Declaration

    Swift

    public struct SSWaldWolfowitzTwoSampleTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • The results of the H test

    See more

    Declaration

    Swift

    public struct SSKruskalWallisHTestResult<FPT> : CustomStringConvertible, Codable where FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint
  • Statistics needed to create a boxplot

    See more

    Declaration

    Swift

    public struct SSBoxWhisker<T, FPT> : CustomStringConvertible, Codable where T : Comparable, T : Decodable, T : Encodable, T : Hashable, FPT : Decodable, FPT : Encodable, FPT : SSFloatingPoint