Class NumericalColumnAnalysis
- java.lang.Object
-
- org.datavec.api.transform.analysis.columns.NumericalColumnAnalysis
-
- All Implemented Interfaces:
Serializable,ColumnAnalysis
- Direct Known Subclasses:
DoubleAnalysis,IntegerAnalysis,LongAnalysis,TimeAnalysis
public abstract class NumericalColumnAnalysis extends Object implements ColumnAnalysis
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classNumericalColumnAnalysis.Builder<T extends NumericalColumnAnalysis.Builder<T>>
-
Field Summary
Fields Modifier and Type Field Description protected longcountMaxValueprotected longcountMinValueprotected longcountNegativeprotected longcountPositiveprotected longcountTotalprotected longcountZeroprotected com.tdunning.math.stats.TDigestdigestprotected long[]histogramBucketCountsprotected double[]histogramBucketsprotected doublemeanprotected doublesampleStdevprotected doublesampleVariance
-
Constructor Summary
Constructors Modifier Constructor Description protectedNumericalColumnAnalysis()protectedNumericalColumnAnalysis(NumericalColumnAnalysis.Builder builder)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract doublegetMaxDouble()abstract doublegetMinDouble()StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.datavec.api.transform.analysis.columns.ColumnAnalysis
getColumnType, getCountTotal
-
-
-
-
Field Detail
-
mean
protected double mean
-
sampleStdev
protected double sampleStdev
-
sampleVariance
protected double sampleVariance
-
countZero
protected long countZero
-
countNegative
protected long countNegative
-
countPositive
protected long countPositive
-
countMinValue
protected long countMinValue
-
countMaxValue
protected long countMaxValue
-
countTotal
protected long countTotal
-
histogramBuckets
protected double[] histogramBuckets
-
histogramBucketCounts
protected long[] histogramBucketCounts
-
digest
protected com.tdunning.math.stats.TDigest digest
-
-
Constructor Detail
-
NumericalColumnAnalysis
protected NumericalColumnAnalysis(NumericalColumnAnalysis.Builder builder)
-
NumericalColumnAnalysis
protected NumericalColumnAnalysis()
-
-