SSGoFTarget

public enum SSGoFTarget : Int, Codable, CustomStringConvertible

Enumarates the target distribution to use for GoF tests

  • Normal distribution. Estimated parameters: mean and variance

    Declaration

    Swift

    case gaussian
  • Student’s t distribution. Estimated parameter: degrees of freedom

    Declaration

    Swift

    case studentT
  • Laplace distribution. Estimated parameters: mean and beta (scale parameter)

    Declaration

    Swift

    case laplace
  • Exponential distribution. Estimated parameter: lambda

    Declaration

    Swift

    case exponential
  • Laplace distribution. Estimated parameters: upper and lower bound

    Declaration

    Swift

    case uniform
  • Undocumented

    Declaration

    Swift

    case none
  • Declaration

    Swift

    public var description: String { get }