Package com.facebook.presto.util.array

Examples of com.facebook.presto.util.array.DoubleBigArray


        public ApproximateSumGroupedAccumulator(int valueChannel, Optional<Integer> maskChannel, Optional<Integer> sampleWeightChannel, double confidence)
        {
            super(valueChannel, SINGLE_VARBINARY, SINGLE_VARBINARY, maskChannel, sampleWeightChannel);
            this.counts = new LongBigArray();
            this.samples = new LongBigArray();
            this.sums = new DoubleBigArray();
            this.m2s = new DoubleBigArray();
            this.means = new DoubleBigArray();
            this.confidence = confidence;
        }
View Full Code Here

TOP

Related Classes of com.facebook.presto.util.array.DoubleBigArray

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.