Interface NumericCrossStatisticsOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    NumericCrossStatistics, NumericCrossStatistics.Builder

    public interface NumericCrossStatisticsOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      float getCorrelation()
      Pearson product-moment correlation coefficient.
      float getCovariance()
      Standard covariance.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getCorrelation

        float getCorrelation()
         Pearson product-moment correlation coefficient.
         
        float correlation = 1;
        Returns:
        The correlation.
      • getCovariance

        float getCovariance()
         Standard covariance. E[(X-E[X])*(Y-E[Y])]
         
        float covariance = 2;
        Returns:
        The covariance.