BlockStatsType Enumeration

Specifies the types of Block Statistics to calculate.

Syntax Constants
Enum BlockStatsType
    scMeans = 0
    scMedians = 1
    scStdDev = 2
    scValidN = 3
    scSums = 4
    scMin = 5
    scMax = 6
    sc25perc = 7
    sc75perc = 8
    scAll = 9
End Enum
  • scMeans: The means (average value) of the data.
  • scMedians: The median (midpoint value) of the data.
  • scStdDev: The standard deviation (average distance from the mean) of the data.
  • scValidN: The valid number of cases within the data.
  • scSums: The cumulative sum of the data.
  • scMin: The lowest value in the data.
  • scMax: The highest value in the data.
  • sc25perc: The 25th percentile of the data.
  • sc75perc: The 75th percentile of the data.
  • scAll: Display all of the statistics.