powered by
Fits a least square linear model.
lfit(x, y, eps=1e-8)
a result of ModelMatrix
a column vector of response, dependent variable
Less than this value is considered as zero.
beta coefficients
g2 inverse
rank of the model matrix
degree of freedom for the residual
sum of squares error
sum of squares total
R-squared
count of observations
Adjusted R-squared
Minimum version of least square fit of a linear model
ModelMatrix
# NOT RUN { f1 = uptake ~ Type*Treatment + conc x = ModelMatrix(f1, CO2) y = model.frame(f1, CO2)[,1] lfit(x, y) # }
Run the code above in your browser using DataLab