java.lang.Object
eu.dzhw.fdz.metadatamanagement.variablemanagement.domain.Statistics
All Implemented Interfaces:
Serializable

public class Statistics
extends Object
implements Serializable
Descriptive metrics of this Variable.
See Also:
Serialized Form
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
      Constant Field Values
    • meanValue

      private Double meanValue
      The arithmetic mean of the values (ValidResponses) of this Variable.
    • minimum

      @Size(max=32, message="variable-management.error.statistics.minimum.size") private @Size(max=32,message="variable-management.error.statistics.minimum.size") String minimum
      The minimum of the values (ValidResponses) of this Variable. Must not contain more than 32 characters.
    • maximum

      @Size(max=32, message="variable-management.error.statistics.maximum.size") private @Size(max=32,message="variable-management.error.statistics.maximum.size") String maximum
      The maximum of the values (ValidResponses) of this Variable. Must not contain more than 32 characters.
    • skewness

      private Double skewness
    • kurtosis

      private Double kurtosis
    • median

      @Size(max=32, message="variable-management.error.statistics.median.size") private @Size(max=32,message="variable-management.error.statistics.median.size") String median
      The median is the value separating the higher half from the lower half of the values (ValidResponses) of this Variable. Must not contain more than 32 characters.
    • standardDeviation

      private Double standardDeviation
      Measure that is used to quantify the amount of variation of the values (ValidResponses) of this Variable.
    • firstQuartile

      @Size(max=32, message="variable-management.error.statistics.first-quartile.size") private @Size(max=32,message="variable-management.error.statistics.first-quartile.size") String firstQuartile
      Splits off the lowest 25% of the values (ValidResponses) of this Variable from the highest 75%. Must not contain more than 32 characters.
    • thirdQuartile

      @Size(max=32, message="variable-management.error.statistics.third-quartile.size") private @Size(max=32,message="variable-management.error.statistics.third-quartile.size") String thirdQuartile
      Splits off the highest 25% of the values (ValidResponses) of this Variable from the lowest 75%. Must not contain more than 32 characters.
    • mode

      private String mode
      The mode is the value (ValidResponse) that appears most often.
    • deviance

      private Double deviance
    • meanDeviation

      private Double meanDeviation
  • Constructor Details

    • Statistics

      public Statistics()