SSLevelOfMeasurement

public enum SSLevelOfMeasurement : String, Codable

Defines the level of measurement. In future versions this setting will be used to determine the available statistics.

  • nominal data (allowed operators: == and !=)

    Declaration

    Swift

    case nominal = "nominal"
  • ordinal data (allowed operators: ==, !=, <, >)

    Declaration

    Swift

    case ordinal = "ordinal"
  • interval data (allowed operators: ==, !=, <, >, +, -)

    Declaration

    Swift

    case interval = "interval"
  • ratio data (allowed operators: ==, !=, <, >, +, -, *, /)

    Declaration

    Swift

    case ratio = "ratio"