ee.Reducer.linearRegression

Creates a reducer that computes a linear least squares regression with numX independent variables and numY dependent variables.

Each input tuple will have values for the independent variables followed by the dependent variables.

The first output is a coefficients array with dimensions (numX, numY); each column contains the coefficients for the corresponding dependent variable. The second output is a vector of the root mean square of the residuals of each dependent variable. Both outputs are null if the system is underdetermined, e.g. the number of inputs is less than or equal to numX.

UsageReturns
ee.Reducer.linearRegression(numX, numY)Reducer
ArgumentTypeDetails
numXIntegerThe number of input dimensions.
numYInteger, default: 1The number of output dimensions.