Package net.sourceforge.processdash.util

Examples of net.sourceforge.processdash.util.LinearRegression.project()


    public void calc() {
        Vector dataPoints = histData.getXYDataPoints(xColumn, yColumn);

        LinearRegression l = new LinearRegression(dataPoints);
        this.rangePercent = RANGE_PERCENT;
        l.project(this.inputValue, this.rangePercent);

        this.beta0 = l.beta0;
        this.beta1 = l.beta1;
        this.outputValue = l.projection;
        this.outputRange = l.range;
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.