coefComp {TSrepr} | R Documentation |
The functions computes regression coefficients from a linear model.
lmCoef(X, Y)
rlmCoef(X, Y)
l1Coef(X, Y)
X |
the model (design) matrix of independent variables |
Y |
the vector of dependent variable (time series) |
The numeric vector of regression coefficients
Peter Laurinec, <tsreprpackage@gmail.com>
design_matrix <- matrix(rnorm(10), ncol = 2)
lmCoef(design_matrix, rnorm(5))
rlmCoef(design_matrix, rnorm(5))
l1Coef(design_matrix, rnorm(5))