Uses of Class
com.pervasive.datarush.analytics.stats.Interval
-
Packages that use Interval Package Description com.pervasive.datarush.analytics.stats Provides various statistics, Data Summarizer, and Data Quality Analyzer. -
-
Uses of Interval in com.pervasive.datarush.analytics.stats
Fields in com.pervasive.datarush.analytics.stats with type parameters of type Interval Modifier and Type Field Description protected SortedMap<Interval<T>,AbstractContinuousStatistics.IntervalCounts<T>>
AbstractContinuousStatistics. intervalCounts
Methods in com.pervasive.datarush.analytics.stats that return Interval Modifier and Type Method Description static <T extends Number & Comparable<? super T>>
Interval<T>Interval. closedClosed(T left, T right)
Creates an interval [left,right]static <T extends Number & Comparable<? super T>>
Interval<T>Interval. closedOpen(T left, T right)
Creates an interval [left,right)static <T extends Number & Comparable<? super T>>
Interval<T>Interval. openClosed(T left, T right)
Creates an interval (left,right]static <T extends Number & Comparable<? super T>>
Interval<T>Interval. openOpen(T left, T right)
Creates an interval (left,right)Methods in com.pervasive.datarush.analytics.stats that return types with arguments of type Interval Modifier and Type Method Description SortedMap<Interval<T>,AbstractContinuousStatistics.IntervalCounts<T>>
AbstractContinuousStatistics. getIntervalCounts()
Returns a mapping from interval to the counts for the given interval.Methods in com.pervasive.datarush.analytics.stats with parameters of type Interval Modifier and Type Method Description int
Interval. compareTo(Interval<T> o)
First compares the left margins, then the right margins.Method parameters in com.pervasive.datarush.analytics.stats with type arguments of type Interval Modifier and Type Method Description void
AbstractContinuousStatistics. setIntervalCounts(Map<Interval<T>,AbstractContinuousStatistics.IntervalCounts<T>> intMap)
Sets a mapping from interval to the counts for the given interval.
-