Interface ValueAtQuantile


@Immutable public interface ValueAtQuantile
A quantile value within a SummaryPointData.
Since:
1.14.0
  • Method Summary

    Modifier and Type
    Method
    Description
    create(double quantile, double value)
    Create a record.
    double
    Returns the quantile of a distribution.
    double
    Returns the value at the given quantile of a distribution.
  • Method Details

    • create

      static ValueAtQuantile create(double quantile, double value)
      Create a record.
      Since:
      1.50.0
    • getQuantile

      double getQuantile()
      Returns the quantile of a distribution. Must be in the interval [0.0, 1.0].
    • getValue

      double getValue()
      Returns the value at the given quantile of a distribution.