Package net.sourceforge.processdash.util

Examples of net.sourceforge.processdash.util.LinearRegression


                }
            } catch (NullPointerException e) {}
            if (minX == maxX) {
                if (maxX > 0) minX = 0; else maxX = 0;
            }
            resetLine(new LinearRegression(data), minX, maxX);
        }
View Full Code Here


    }

    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

Related Classes of net.sourceforge.processdash.util.LinearRegression

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.