Package edu.brown.statistics

Examples of edu.brown.statistics.ObjectHistogram.save()


        buffer.append("Warehouse Histograms:\n");
        for (Integer w_id : histograms.keySet()) {
            ObjectHistogram hist = histograms.get(w_id);
            buffer.append("Partition: " + w_id + " [" + distributions.get(w_id).getMin() + "]\n");
            buffer.append(hist).append("\n");
            hist.save(new File("histograms/" + w_id + ".hist"));
        } // FOR
        LOG.info(buffer.toString());
       
        return;
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.