All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.sketches.pig.quantiles.Util Maven / Gradle / Ivy

package com.yahoo.sketches.pig.quantiles;

import org.apache.pig.backend.executionengine.ExecException;
import org.apache.pig.data.Tuple;
import org.apache.pig.data.TupleFactory;

public class Util {

  static Tuple doubleArrayToTuple(double[] array) throws ExecException {
    Tuple tuple = TupleFactory.getInstance().newTuple(array.length);
    for (int i = 0; i < array.length; i++) {
      tuple.set(i, array[i]);
    }
    return tuple;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy