Uses of Class
com.compomics.util.math.statistics.linear_regression.RegressionStatistics
Package | Description |
---|---|
com.compomics.util.math.statistics.linear_regression |
Classes to perform linear regressions.
|
com.compomics.util.math.statistics.linear_regression.regressions |
Filters to apply prior to a linear regression.
|
-
Uses of RegressionStatistics in com.compomics.util.math.statistics.linear_regression
Methods in com.compomics.util.math.statistics.linear_regression that return RegressionStatistics Modifier and Type Method Description static RegressionStatistics
LinearRegression. getRobustLinearRegression(ArrayList<Double> x, ArrayList<Double> y)
Returns a robust linear regression based on the median.static RegressionStatistics
LinearRegression. getSimpleLinearRegression(ArrayList<Double> x, ArrayList<Double> y)
Returns a simple linear regression.static RegressionStatistics
LinearRegression. getSimpleLinearRegressionOutlierRemoval(ArrayList<Double> x, ArrayList<Double> y, Double p)
Returns a simple linear regression performed after outlier removal. -
Uses of RegressionStatistics in com.compomics.util.math.statistics.linear_regression.regressions
Methods in com.compomics.util.math.statistics.linear_regression.regressions that return RegressionStatistics Modifier and Type Method Description static RegressionStatistics
MedianRegression. getLinearRegression(ArrayList<Double> x, ArrayList<Double> y)
Returns a robust linear regression based on the median of statistics.static RegressionStatistics
SimpleLinearRegression. getLinearRegression(ArrayList<Double> x, ArrayList<Double> y)
Returns a simple linear regression.